GET
/
partner
/
tenants
List 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>"
    }
  }
}

Query Parameters

cursor
string

The cursor to start from

limit
number | null

The limit of items to return, default is 100

Response

200
application/json

Status 200 response

The response is of type object.