Operations related to addresses. Addresses provide standardized address data.
Overview
Languages
Servers
Mock server
https://docs.aryeo.com/_mock/api/aryeo/
Production
https://api.aryeo.com/v1/
Query
Return company team members with a match on the search term.
Example: filter[search]=Brendan
Return company team members with a match on the search term.
Example: filter[ids]=00000000-0000-4000-8000-000000000000,00000000-0000-4000-8000-000000000001
Comma separated list of optional data to include in the response.
Example: include=company
The number of items per page. Defaults to 25.
Example: per_page=25
- Mock serverhttps://docs.aryeo.com/_mock/api/aryeo/company-team-members
- Productionhttps://api.aryeo.com/v1/company-team-members
- JS
- PHP
- Go
- Python
- Java
- C#
- cURL
const resp = await fetch(
`https://docs.aryeo.com/_mock/api/aryeo/company-team-members`,
{
method: 'GET',
headers: {
Authorization: 'Bearer <YOUR_TOKEN_HERE>'
}
}
);
const data = await resp.text();
console.log(data);Response
application/json
{ "status": "success", "data": [ { "object": "COMPANY_TEAM_MEMBER", "id": "00000000-0000-4000-8000-000000000000", "calendar_color": "#FF0000", "permissions": [ { "object": "PERMISSION", "name": "ACTIVITY_LOG_VIEW" } ], "restrictions": [ {} ], "is_service_provider": true, "external_id": "1234567890", "company_user": { "object": "PERSONAL_ACCESS_TOKEN", "id": "00000000-0000-4000-8000-000000000000", "email": "john.doe@gmail.com", "first_name": "John", "last_name": "Doe", "full_name": "John Doe", "internal_notes": "Internal notes for the user.", "status": "active", "phone": "123456789", "avatar_url": "https://picsum.photos/300", "relationship": "owner", "sso_users": [ { … } ], "is_super": true, "verification_status": "verified", "password_expiration_days": 30, "timezone": "America/New_York", "created_at": "2021-06-30T20:30:00Z" }, "has_owner_role": true, "is_owner": true, "invitation_accepted_at": "2025-04-01T05:59:59.999999Z", "role": "ADMIN", "status": "active", "is_active": true, "is_invited": true, "is_revoked": true, "scheduling_priority": 1, "created_at": "2025-04-01T05:59:59.999999Z", "require_appointment_confirmation": true } ], "meta": { "total": 50, "per_page": 15, "current_page": 1, "last_page": 4, "from": 1, "to": 15, "path": "https://api.aryeo.com/v1/{path}", "links": [ { "url": "https://admin.aryeo.test/api/v1/companies?page=2", "label": "2", "active": true, "page": 2 } ] }, "links": { "first": "https://api.aryeo.com/v1/{path}?page=1", "last": "https://api.aryeo.com/v1/{path}?page=10", "prev": "https://api.aryeo.com/v1/{path}?page=2", "next": "https://api.aryeo.com/v1/{path}?page=3" }, "timestamp": "2021-06-30T20:30:00Z" }
- Mock serverhttps://docs.aryeo.com/_mock/api/aryeo/company-team-members/{company_team_member_id}
- Productionhttps://api.aryeo.com/v1/company-team-members/{company_team_member_id}
- JS
- PHP
- Go
- Python
- Java
- C#
- cURL
const companyTeamMemberId = '00000000-0000-4000-8000-000000000000';
const resp = await fetch(
`https://docs.aryeo.com/_mock/api/aryeo/company-team-members/${companyTeamMemberId}`,
{
method: 'GET',
headers: {
Authorization: 'Bearer <YOUR_TOKEN_HERE>'
}
}
);
const data = await resp.text();
console.log(data);Response
application/json
{ "status": "success", "data": { "object": "COMPANY_TEAM_MEMBER", "id": "00000000-0000-4000-8000-000000000000", "calendar_color": "#FF0000", "permissions": [ { "object": "PERMISSION", "name": "ACTIVITY_LOG_VIEW" } ], "restrictions": [ {} ], "is_service_provider": true, "external_id": "1234567890", "company_user": { "object": "PERSONAL_ACCESS_TOKEN", "id": "00000000-0000-4000-8000-000000000000", "email": "john.doe@gmail.com", "first_name": "John", "last_name": "Doe", "full_name": "John Doe", "internal_notes": "Internal notes for the user.", "status": "active", "phone": "123456789", "avatar_url": "https://picsum.photos/300", "relationship": "owner", "sso_users": [ { "sso_id": "1234", "sso_provider": { … } } ], "is_super": true, "verification_status": "verified", "password_expiration_days": 30, "timezone": "America/New_York", "created_at": "2021-06-30T20:30:00Z" }, "has_owner_role": true, "is_owner": true, "invitation_accepted_at": "2025-04-01T05:59:59.999999Z", "role": "ADMIN", "status": "active", "is_active": true, "is_invited": true, "is_revoked": true, "scheduling_priority": 1, "created_at": "2025-04-01T05:59:59.999999Z", "require_appointment_confirmation": true }, "timestamp": "2021-06-30T20:30:00Z" }
Query
The start date and time of the calendar events. ISO 8601 format.
Example: start=2020-12-29T00:00:00-00:00
The end date and time of the calendar events. ISO 8601 format.
Example: end=2020-12-31T00:00:00-00:00
The type of the calendar events.
Enum"APPOINTMENT""CALENDAR_BLOCK""EXTERNAL""BUFFER""DECLINED_APPOINTMENT""UNSCHEDULED_APPOINTMENT"
Example: type=APPOINTMENT
- Mock serverhttps://docs.aryeo.com/_mock/api/aryeo/company-team-members/{company_team_member_id}/events
- Productionhttps://api.aryeo.com/v1/company-team-members/{company_team_member_id}/events
- JS
- PHP
- Go
- Python
- Java
- C#
- cURL
const companyTeamMemberId = '00000000-0000-4000-8000-000000000000';
const resp = await fetch(
`https://docs.aryeo.com/_mock/api/aryeo/company-team-members/${companyTeamMemberId}/events`,
{
method: 'GET',
headers: {
Authorization: 'Bearer <YOUR_TOKEN_HERE>'
}
}
);
const data = await resp.text();
console.log(data);Response
application/json
{ "status": "success", "data": [ { "id": "123e4567-e89b-12d3-a456-426614174000", "type": "appointment", "title": "Other appointment", "description": "sdjsudsudsds", "start_at": "2020-10-04T12:15:00Z", "end_at": "2020-10-04T12:30:00Z", "is_all_day": true, "duration": 60, "is_busy": true, "requires_confirmation": true } ], "meta": { "total": 50, "per_page": 15, "current_page": 1, "last_page": 4, "from": 1, "to": 15, "path": "https://api.aryeo.com/v1/{path}", "links": [ { "url": "https://admin.aryeo.test/api/v1/companies?page=2", "label": "2", "active": true, "page": 2 } ] }, "links": { "first": "https://api.aryeo.com/v1/{path}?page=1", "last": "https://api.aryeo.com/v1/{path}?page=10", "prev": "https://api.aryeo.com/v1/{path}?page=2", "next": "https://api.aryeo.com/v1/{path}?page=3" }, "timestamp": "2021-06-30T20:30:00Z" }