Organizations
The companies and groups your deals are sold to — corporate accounts, agencies and event planners.
GET/api/v1/organizations20 TOKENS
List organizations
Returns organizations, newest first. Supports pagination and the filters below.
Request
curl -X GET "https://app.averocrm.com/api/v1/organizations" \ -H "x-api-token: $AVERO_API_TOKEN"
Response
{
"success": true,
"data": [
{
"id": "9b2f7e34-1c5d-4a8e-b7f0-3d2a6c9e8f10",
"name": "Northwind Software",
"location": "Zagreb, Croatia",
"keys": null,
"website": "https://northwind.io",
"current_ota": null,
"direct_booking_site": null,
"address": "Ilica 45, 10000 Zagreb",
"created_at": "2026-07-14T09:30:00.000Z",
"updated_at": "2026-07-14T09:30:00.000Z"
}
],
"additional_data": {
"pagination": {
"start": 0,
"limit": 100,
"more_items_in_collection": false
}
}
}GET/api/v1/organizations/{id}2 TOKENS
Get a organization
Returns one organization by id.
Request
curl -X GET "https://app.averocrm.com/api/v1/organizations/9b2f7e34-1c5d-4a8e-b7f0-3d2a6c9e8f10" \ -H "x-api-token: $AVERO_API_TOKEN"
Response
{
"success": true,
"data": {
"id": "9b2f7e34-1c5d-4a8e-b7f0-3d2a6c9e8f10",
"name": "Northwind Software",
"location": "Zagreb, Croatia",
"keys": null,
"website": "https://northwind.io",
"current_ota": null,
"direct_booking_site": null,
"address": "Ilica 45, 10000 Zagreb",
"created_at": "2026-07-14T09:30:00.000Z",
"updated_at": "2026-07-14T09:30:00.000Z"
},
"additional_data": null
}POST/api/v1/organizations10 TOKENS
Create a organization
Creates a organization. Unknown fields are rejected.
Request
curl -X POST "https://app.averocrm.com/api/v1/organizations" \
-H "x-api-token: $AVERO_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"name":"Northwind Software","location":"Zagreb, Croatia"}'Response
{
"success": true,
"data": {
"id": "9b2f7e34-1c5d-4a8e-b7f0-3d2a6c9e8f10",
"name": "Northwind Software",
"location": "Zagreb, Croatia",
"keys": null,
"website": "https://northwind.io",
"current_ota": null,
"direct_booking_site": null,
"address": "Ilica 45, 10000 Zagreb",
"created_at": "2026-07-14T09:30:00.000Z",
"updated_at": "2026-07-14T09:30:00.000Z"
},
"additional_data": null
}PATCH/api/v1/organizations/{id}10 TOKENS
Update a organization
Updates the given fields of a organization. PUT is accepted as an alias.
Request
curl -X PATCH "https://app.averocrm.com/api/v1/organizations/9b2f7e34-1c5d-4a8e-b7f0-3d2a6c9e8f10" \
-H "x-api-token: $AVERO_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"name":"Northwind Software"}'Response
{
"success": true,
"data": {
"id": "9b2f7e34-1c5d-4a8e-b7f0-3d2a6c9e8f10",
"name": "Northwind Software",
"location": "Zagreb, Croatia",
"keys": null,
"website": "https://northwind.io",
"current_ota": null,
"direct_booking_site": null,
"address": "Ilica 45, 10000 Zagreb",
"created_at": "2026-07-14T09:30:00.000Z",
"updated_at": "2026-07-14T09:30:00.000Z"
},
"additional_data": null
}DELETE/api/v1/organizations/{id}6 TOKENS
Delete a organization
Deletes a organization permanently.
Request
curl -X DELETE "https://app.averocrm.com/api/v1/organizations/9b2f7e34-1c5d-4a8e-b7f0-3d2a6c9e8f10" \ -H "x-api-token: $AVERO_API_TOKEN"
Response
{
"success": true,
"data": {
"id": "9b2f7e34-1c5d-4a8e-b7f0-3d2a6c9e8f10"
},
"additional_data": null
}