Skip to main content

Accounts synchronization

Preface

The Accounts endpoint enables partners to retrieve a list of accounts interested in publishing their listings on the partner's website. Partners can use this endpoint to identify potential accounts for onboarding, which may involve signing contracts and other necessary steps.

Get All Accounts

Retrieve a list of accounts that wish to publish their listings on a partner's website. Refer to the Swagger documentation for detailed specifications.

note

Pagination is not supported for this endpoint.

warning

If an account is no longer visible in the list, ensure to disable the corresponding account and rentals.

tip

We suggest to do synchronization of accounts every 12-24 hours.

Code examples

TOKEN="YOUR_TOKEN"
API_URL="API_URL"

curl -X GET \
"$API_URL/api/ota/v1/accounts" \
-H "User-Agent: API Client" \
-H "Accept: application/vnd.api+json" \
-H "Content-Type: application/vnd.api+json" \
-H "Authorization: Bearer $TOKEN"