curl --request GET \
--url https://api.embedreach.com/partner/tenants
{
"success": true,
"message": "<string>",
"data": {
"results": [
{
"id": "<string>",
"name": "<string>",
"website": "<string>",
"externalId": "<string>",
"locations": [
{
"addressLine1": "<string>",
"addressLine2": "<string>",
"addressLine3": "<string>",
"locality": "<string>",
"district": "<string>",
"postalCode": "<string>",
"countryCode": "<string>"
}
],
"dataIntegrationCompletedAt": "<string>",
"websiteTrackingCompletedAt": "<string>"
}
],
"pagination": {
"total": 123,
"hasNextPage": true,
"cursor": "<string>"
}
}
}
List all tenants
curl --request GET \
--url https://api.embedreach.com/partner/tenants
{
"success": true,
"message": "<string>",
"data": {
"results": [
{
"id": "<string>",
"name": "<string>",
"website": "<string>",
"externalId": "<string>",
"locations": [
{
"addressLine1": "<string>",
"addressLine2": "<string>",
"addressLine3": "<string>",
"locality": "<string>",
"district": "<string>",
"postalCode": "<string>",
"countryCode": "<string>"
}
],
"dataIntegrationCompletedAt": "<string>",
"websiteTrackingCompletedAt": "<string>"
}
],
"pagination": {
"total": 123,
"hasNextPage": true,
"cursor": "<string>"
}
}
}
The cursor to start from
The limit of items to return, default is 100
Status 200 response
The response is of type object
.