Operations related to addresses. Addresses provide standardized address data.
- Mock serverhttps://docs.aryeo.com/_mock/api/aryeo/billing/setup-intents
- Productionhttps://api.aryeo.com/v1/billing/setup-intents
- JS
- PHP
- Go
- Python
- Java
- C#
- cURL
const resp = await fetch(
`https://docs.aryeo.com/_mock/api/aryeo/billing/setup-intents`,
{
method: 'POST',
headers: {
Authorization: 'Bearer <YOUR_TOKEN_HERE>'
}
}
);
const data = await resp.text();
console.log(data);{ "client_secret": "abc-123" }
- Mock serverhttps://docs.aryeo.com/_mock/api/aryeo/order-items/{order_item_id}/pay-run-item-defaults
- Productionhttps://api.aryeo.com/v1/order-items/{order_item_id}/pay-run-item-defaults
- JS
- PHP
- Go
- Python
- Java
- C#
- cURL
const orderItemId = '00000000-0000-4000-8000-000000000000';
const resp = await fetch(
`https://docs.aryeo.com/_mock/api/aryeo/order-items/${orderItemId}/pay-run-item-defaults`,
{
method: 'GET',
headers: {
Authorization: 'Bearer <YOUR_TOKEN_HERE>'
}
}
);
const data = await resp.text();
console.log(data);OrderItemPayRunItemDefaults
The ID of the order item. UUID Version 4.
The title of the pay run item.
A team member of a company.
A canonical value representing a resource.
ID of the entity. UUID Version 4.
Color code for calendar display, if assigned
List of permissions granted to the team member
A canonical value representing a resource.
The name of the permission
List of restrictions applied to the team member
A key-value pair of restriction data.
Indicates if the team member is a service provider
External identifier for the team member, if any
Indicates if the team member has the owner role
Indicates if the team member is the owner
The date and time (ISO 8601 format) when the company team member invitation was accepted
The role of the team member
The status of the team member
Indicates if the team member is invited
Indicates if the team member is revoked
The scheduling priority of the team member
The date and time (ISO 8601 format) when the company team member was created
{ "order_item_id": "00000000-0000-4000-8000-000000000000", "title": "Complete Photography", "company_team_member": { "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 }, "amount": 100 }
- Mock serverhttps://docs.aryeo.com/_mock/api/aryeo/payroll/pay-run-items
- Productionhttps://api.aryeo.com/v1/payroll/pay-run-items
- JS
- PHP
- Go
- Python
- Java
- C#
- cURL
const resp = await fetch(
`https://docs.aryeo.com/_mock/api/aryeo/payroll/pay-run-items`,
{
method: 'GET',
headers: {
Authorization: 'Bearer <YOUR_TOKEN_HERE>'
}
}
);
const data = await resp.text();
console.log(data);- Mock serverhttps://docs.aryeo.com/_mock/api/aryeo/payroll/pay-run-items
- Productionhttps://api.aryeo.com/v1/payroll/pay-run-items
- JS
- PHP
- Go
- Python
- Java
- C#
- cURL
const resp = await fetch(
`https://docs.aryeo.com/_mock/api/aryeo/payroll/pay-run-items`,
{
method: 'POST',
headers: {
Authorization: 'Bearer <YOUR_TOKEN_HERE>'
}
}
);
const data = await resp.text();
console.log(data);- Mock serverhttps://docs.aryeo.com/_mock/api/aryeo/payroll/pay-run-items/{pay_run_item}
- Productionhttps://api.aryeo.com/v1/payroll/pay-run-items/{pay_run_item}
- JS
- PHP
- Go
- Python
- Java
- C#
- cURL
const payRunItem = '00000000-0000-4000-8000-000000000000';
const resp = await fetch(
`https://docs.aryeo.com/_mock/api/aryeo/payroll/pay-run-items/${payRunItem}`,
{
method: 'DELETE',
headers: {
Authorization: 'Bearer <YOUR_TOKEN_HERE>'
}
}
);
const data = await resp.text();
console.log(data);- Mock serverhttps://docs.aryeo.com/_mock/api/aryeo/payroll/pay-run-items/{pay_run_item}
- Productionhttps://api.aryeo.com/v1/payroll/pay-run-items/{pay_run_item}
- JS
- PHP
- Go
- Python
- Java
- C#
- cURL
const payRunItem = '00000000-0000-4000-8000-000000000000';
const resp = await fetch(
`https://docs.aryeo.com/_mock/api/aryeo/payroll/pay-run-items/${payRunItem}`,
{
method: 'PUT',
headers: {
Authorization: 'Bearer <YOUR_TOKEN_HERE>'
}
}
);
const data = await resp.text();
console.log(data);- Mock serverhttps://docs.aryeo.com/_mock/api/aryeo/payroll/pay-runs/{pay_run}/items/add
- Productionhttps://api.aryeo.com/v1/payroll/pay-runs/{pay_run}/items/add
- JS
- PHP
- Go
- Python
- Java
- C#
- cURL
const payRun = '00000000-0000-4000-8000-000000000000';
const resp = await fetch(
`https://docs.aryeo.com/_mock/api/aryeo/payroll/pay-runs/${payRun}/items/add`,
{
method: 'POST',
headers: {
Authorization: 'Bearer <YOUR_TOKEN_HERE>'
}
}
);
const data = await resp.text();
console.log(data);- Mock serverhttps://docs.aryeo.com/_mock/api/aryeo/payroll/pay-runs/{pay_run}/items/remove
- Productionhttps://api.aryeo.com/v1/payroll/pay-runs/{pay_run}/items/remove
- JS
- PHP
- Go
- Python
- Java
- C#
- cURL
const payRun = '00000000-0000-4000-8000-000000000000';
const resp = await fetch(
`https://docs.aryeo.com/_mock/api/aryeo/payroll/pay-runs/${payRun}/items/remove`,
{
method: 'POST',
headers: {
Authorization: 'Bearer <YOUR_TOKEN_HERE>'
}
}
);
const data = await resp.text();
console.log(data);