Skip to main content

Get all Owners

Get all owners.

HTTP Request​

GET https://dev.calry.app/api/v1/vrs/owners

Headers​

HeaderValue
AuthorizationBearer YOUR_ACCESS_TOKEN
workspaceIdYOUR_WORKSPACE_ID
integrationAccountIdYOUR_INTEGRATION_ACCOUNT_ID

Query Parameters​

ParameterTypeDescription
realtimeboolIf true, the response will be streamed in real-time.

Example Request​

curl --location 'https://dev.calry.app/api/v1/vrs/owners' \
--header 'Authorization: Bearer eyJraWQiOiJzLWJhNjY5YzZhLTE0OTktNDQ1MS05MjFhLTExYzQyNDZhZTQ1NSIsInR5cCI6IkpXVCIsImFsZyI6IlJTMjU2In0.eyJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjMwMDAvYXV0aCIsInVzZXJJZCI6IjE2NjI0N2U3LTNiYjktNDExYy05ZDBjLTBjMDY3ZTg0ODhmNCIsIndvcmtzcGFjZUlkIjoiZjAzYzNjOTctNDJjZC00MzMwLTk5OWMtZmM5OTA2ZDgzMzY1IiwibmFtZSI6InNzZGZzIiwic291cmNlIjoibWljcm9zZXJ2aWNlIiwiaWF0IjoxNzA1NzQxNTcyLCJleHAiOjE5MDU3NDE1NzJ9.NKE3fakHTgYSeR3CiGt6HJ5GuUBrkyxHimUoZVmx3f1ul1iSp4CTcztb8mYv_RLJVZAo45ZFBgMbZQh5B9CtnUcKUFr4EzipzTNUi5yf8C8cFMmNigBGiCf0Viyinyfo0tuTWN_34bz8S8UvtqUr7jQZNEvt9eN7h2XBk_omYlPywm-ybXEF4w3cWYcutPgPEFoLUk0_veExLSDrS2QInhBDfMe9NKOuVp7nj9HML9lpQViP6S1ERaRwdiGcUELu_Ovgcwrs-x5lRLPqUDv_1U96iovuFihOb0Q2-V7uUEdLfbbwPGkq0dKEbciAeTPPaIXC9M53kZgP3D6CL8SqGg' \
--header 'workspaceId: f03c3c97-42cd-4330-999c-fc9906d83365' \
--header 'integrationAccountId: 78974f0b-59d5-4d70-ae48-549f4819faa2'

Example Response​

{
"data": [
{
"propertyId": "prop12345",
"propertyName": "Sunnydale Cottage",
"firstName": "John",
"lastName": "Doe",
"email": "johndoe@example.com",
"phone": "+1234567890",
"address": "123 Main St, Anytown, AT 12345",
"language": "English",
"country": "USA"
},
{
"propertyId": "prop67890",
"propertyName": "Lakeside Villa",
"firstName": "Alice",
"lastName": "Smith",
"email": ["alice.smith@example.com", "contact@lakesidevilla.com"],
"phone": ["+19876543210", "+10987654321"],
"address": "456 Lakeview Drive, Lake City, LC 67890",
"language": "French",
"country": "France"
}

],
"meta": {
"limit": 10,
"cursors": {
"previous": "",
"current": "1",
"next": ""
}
}
}