Operations related to addresses. Addresses provide standardized address data.
- Mock serverhttps://docs.aryeo.com/_mock/api/aryeo/customer-team-members/{customer_team_member_id}
- Productionhttps://api.aryeo.com/v1/customer-team-members/{customer_team_member_id}
- JS
- PHP
- Go
- Python
- Java
- C#
- cURL
const customerTeamMemberId = '00000000-0000-4000-8000-000000000000';
const resp = await fetch(
`https://docs.aryeo.com/_mock/api/aryeo/customer-team-members/${customerTeamMemberId}`,
{
method: 'GET',
headers: {
Authorization: 'Bearer <YOUR_TOKEN_HERE>'
}
}
);
const data = await resp.text();
console.log(data);- Mock serverhttps://docs.aryeo.com/_mock/api/aryeo/customer-teams/{customer_team_id}/memberships
- Productionhttps://api.aryeo.com/v1/customer-teams/{customer_team_id}/memberships
- JS
- PHP
- Go
- Python
- Java
- C#
- cURL
const customerTeamId = '00000000-0000-4000-8000-000000000000';
const resp = await fetch(
`https://docs.aryeo.com/_mock/api/aryeo/customer-teams/${customerTeamId}/memberships`,
{
method: 'GET',
headers: {
Authorization: 'Bearer <YOUR_TOKEN_HERE>'
}
}
);
const data = await resp.text();
console.log(data);- Mock serverhttps://docs.aryeo.com/_mock/api/aryeo/customer-teams/affiliate-memberships
- Productionhttps://api.aryeo.com/v1/customer-teams/affiliate-memberships
- JS
- PHP
- Go
- Python
- Java
- C#
- cURL
const resp = await fetch(
`https://docs.aryeo.com/_mock/api/aryeo/customer-teams/affiliate-memberships`,
{
method: 'POST',
headers: {
Authorization: 'Bearer <YOUR_TOKEN_HERE>'
}
}
);
const data = await resp.text();
console.log(data);Comma separated list of optional data to include in the response.
Filter customers by customer team ID.
Filter customers by pricing plan ID.
Filter customers that do not have an individual pricing plan.
Filter customers that do not have a team pricing plan.
Comma separated list of customer team IDs.
Filter customers that have active team memberships.
- Mock serverhttps://docs.aryeo.com/_mock/api/aryeo/customer-users
- Productionhttps://api.aryeo.com/v1/customer-users
- JS
- PHP
- Go
- Python
- Java
- C#
- cURL
const resp = await fetch(
`https://docs.aryeo.com/_mock/api/aryeo/customer-users`,
{
method: 'GET',
headers: {
Authorization: 'Bearer <YOUR_TOKEN_HERE>'
}
}
);
const data = await resp.text();
console.log(data);CustomerUserCollection
A collection of objects.
A canonical value representing a resource.
ID of the entity. UUID Version 4.
Email address of the user.
The avatar image URL of a user.
A phone number represented in whichever standards specified by the user, typically ###-###-#### (separated by hyphens).
The logo URL of a user.
The default timezone for the customer.
The license number of a real estate agent. Only returned if group's type is AGENT.
The date and time (ISO 8601 format) when the customer record was created.
The verification status of the customer.
The credit balance amount of the customer.
The phone number of the customer.
The profile link of the customer.
The internal notes of the customer.
The agent company name of the customer.
The agent license number of the customer.
Whether the customer is blocked from ordering.
Whether the customer is restricted from booking appointments with certain photographers.
Whether the customer has locked media downloads before payment as the default download setting.
Whether the customer has access to the marketing material builder.
The Avalara customer code of the customer.
{ "data": [ { "object": "USER", "id": "00000000-0000-4000-8000-000000000000", "name": "John", "email": "john.doe@gmail.com", "avatar_url": "https://picsum.photos/300", "phone": "123456789", "logo_url": "https://picsum.photos/300", "timezone": "America/New_York", "license_number": "12345678", "customer_team_memberships": [ { "object": "CUSTOMER_TEAM_MEMBERSHIP", "id": "00000000-0000-4000-8000-000000000000", "role": "admin", "invitation_accepted_at": "2025-04-01T05:59:59.999999Z", "status": "active", "customer_team": { … }, "is_active": true, "is_archived": true, "is_deleted": true, "is_invited": true, "is_default": true, "created_at": "2025-04-01T05:59:59.999999Z", "customer_user": {}, "listing_delivery_notification_enabled": true, "is_showingtimeplus_workspace_membership": true, "is_visible": true, "order_index": 1 } ], "created_at": "2021-06-30T20:30:00Z", "is_visible": true, "order_index": 1, "verification_status": "verified", "credit_balance_amount": 100, "total_balance_amount": 100, "is_showingtimeplus_user": true, "full_name": "John Doe", "first_name": "John", "last_name": "Doe", "phone_number": "1234567890", "profile_link": "https://picsum.photos/300", "internal_notes": "John Doe is a customer.", "agent_company_name": "John Doe Real Estate", "agent_license_number": "1234567890", "is_blocked_from_ordering": true, "has_restricted_photographers": true, "default_lock_downloads_before_payment": true, "default_allows_access_to_marketing_material": true, "avalara_customer_code": "1234567890", "quickbooks_customer_id": "1234567890" } ], "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" }
CustomerUserPostPayload
A phone number represented in whichever standards specified by the user, typically ###-###-#### (separated by hyphens).
The license number of a real estate agent.
The avatar image URL of a user.
The ID of the customer team to add the user to. Required if add_to_customer_team is true.
The role of the user in the customer team. Required if add_to_customer_team is true.
Whether to define a new team for the user. Required if add_to_customer_team is false.
The name of the new team. Required if defines_new_team is true.
The description of the new team. Used if defines_new_team is true.
The name of the brokerage. Used if defines_new_team is true.
- Mock serverhttps://docs.aryeo.com/_mock/api/aryeo/customer-users
- Productionhttps://api.aryeo.com/v1/customer-users
- JS
- PHP
- Go
- Python
- Java
- C#
- cURL
const resp = await fetch(
`https://docs.aryeo.com/_mock/api/aryeo/customer-users`,
{
method: 'POST',
headers: {
'Content-Type': 'application/json',
Authorization: 'Bearer <YOUR_TOKEN_HERE>'
},
body: JSON.stringify({
first_name: 'John',
last_name: 'Doe',
email: 'john.doe@gmail.com',
phone: '(123) 456-7890',
license_number: '12345678',
avatar_url: 'https://picsum.photos/300',
add_to_customer_team: true,
customer_team_id: '123e4567-e89b-12d3-a456-426614174000',
role: 'admin',
defines_new_team: true,
name: 'John Doe Reality',
description: 'Internal notes about the team.',
brokerage_name: 'John Doe Realty',
timezone: 'America/New_York'
})
}
);
const data = await resp.json();
console.log(data);GroupCustomer
String representing the object's type. Objects of the same type share the same schema.
ID of the entity. UUID Version 4.
The type of the group. Can be CREATOR, AGENT, or BROKERAGE, and may dictate the attributes of the group returned.
The email address of a group.
A phone number represented in whichever standards specified by the group, typically ###-###-#### (separated by hyphens).
The website URL of a group.
The logo URL of a group.
The name of the brokerage or team of a real estate agent. Only returned if group's type is AGENT.
The license number of a real estate agent. Only returned if group's type is AGENT.
The default timezone for the group.
The default currency for the group.
The order page URL for the group.
An array of feature flags for the group.
The background color for the order page (has a hex value) for the group.
Indicates if the order form by default uses territories to filter available users and products.
The scheduling style the order form should use for timeslot selection by default.
How frequently slotted available times are on the order form by default.
Indicates if the order form uses auto-assignment of users to appointments.
The default assignment strategy the order form should use to assign users to appointments, if applicable.
Indicates if the order form by default should display user's names after they have been assigned to an appointment.
Indicates if the order form by default instantly schedules appointments as soon as the order is placed.
An array of order forms a vendor group provides for placing orders. Only returned if group's type is CREATOR.
Indicates if the group is a brokerage or brokerage agent.
The avatar image URL of a user.
Internal notes about the group.
NOTE: Users do not have customer groups and they are deprecated.
Whether the group is restricted from booking appointments with certain photographers.
The billing address of the group.
The date and time the group was created.
The list of customer team memberships associated with this group.
The verification status of the customer.
The phone number of the customer.
The profile link of the customer.
The agent company name of the customer.
The agent license number of the customer.
Whether the customer has locked media downloads before payment as the default download setting.
Whether the customer has access to the marketing material builder.
The Avalara customer code of the customer.
{ "object": "GROUP", "id": "00000000-0000-4000-8000-000000000000", "type": "AGENT", "name": "John Doe Reality", "email": "john.doe@gmail.com", "phone": "6175550173", "website_url": "https://www.aryeo.com", "logo_url": "https://picsum.photos/300", "office_name": "John Doe Brokerage", "license_number": "12345678", "timezone": "America/New_York", "currency": "USD", "slug": "example-photography", "order_page_url": "https://example-photography.aryeo.com/order", "feature_flags": [ "require_photographer_confirmations" ], "order_page_background_color": "#FF0000", "default_order_form": { "object": "ORDER_FORM", "id": "00000000-0000-4000-8000-000000000000", "title": "BQ's Photography Order Form", "type": "ARYEO", "url": "https://www.aryeo.com/order-forms/00000000-0000-4000-8000-000000000000", "is_public": true, "thumbnail_url": "https://picsum.photos/300", "use_territory_awareness": true, "availability_style": "TIME", "slot_interval_minutes": 60, "use_automated_user_assignment": true, "automated_user_assignment_strategy": "RECOMMENDED", "show_user_names": true, "require_upfront_payment": true, "upfront_payment_percentage": 50, "use_instant_appointment_scheduling": true, "form_settings": {}, "owner": { "object": "GROUP", "id": "00000000-0000-4000-8000-000000000000", "type": "AGENT", "name": "John Doe Reality", "email": "john.doe@gmail.com", "phone": "6175550173", "website_url": "https://www.aryeo.com", "logo_url": "https://picsum.photos/300", "office_name": "John Doe Brokerage", "license_number": "12345678", "timezone": "America/New_York", "currency": "USD", "slug": "example-photography", "order_page_url": "https://example-photography.aryeo.com/order", "feature_flags": [ "require_photographer_confirmations" ], "order_page_background_color": "#FF0000", "social_profiles": { "facebook_profile_url": "https://www.facebook.com/johndoe", "instagram_profile_url": "https://www.instagram.com/johndoe", "twitter_profile_url": "https://twitter.com/johndoe", "linkedin_profile_url": "https://www.linkedin.com/in/johndoe/", "zillow_profile_url": "https://www.zillow.com/profile/johndoe" }, "default_order_form": {}, "use_territory_awareness": true, "availability_style": "TIME", "slot_interval_minutes": 60, "use_automated_user_assignment": true, "automated_user_assignment_strategy": "RECOMMENDED", "show_user_names": true, "use_instant_appointment_scheduling": true, "allow_order_cancellation": true, "order_forms": [ {} ], "owner": { "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 }, "users": [ { "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 } ], "is_brokerage_or_brokerage_agent": true, "avatar_url": "https://picsum.photos/300", "internal_notes": "Internal notes about the group.", "team_members": [ { "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 } ], "customer_group": "null", "custom_field_entries": [ {} ], "created_at": "2021-06-30T20:30:00Z", "has_restricted_photographers": true, "is_payroll_enabled": true, "is_visible": true, "order_index": 1 }, "company": { "object": "GROUP", "id": "00000000-0000-4000-8000-000000000000", "type": "AGENT", "name": "John Doe Reality", "email": "john.doe@gmail.com", "phone": "6175550173", "website_url": "https://www.aryeo.com", "logo_url": "https://picsum.photos/300", "office_name": "John Doe Brokerage", "license_number": "12345678", "timezone": "America/New_York", "currency": "USD", "slug": "example-photography", "order_page_url": "https://example-photography.aryeo.com/order", "feature_flags": [ "require_photographer_confirmations" ], "order_page_background_color": "#FF0000", "social_profiles": { "facebook_profile_url": "https://www.facebook.com/johndoe", "instagram_profile_url": "https://www.instagram.com/johndoe", "twitter_profile_url": "https://twitter.com/johndoe", "linkedin_profile_url": "https://www.linkedin.com/in/johndoe/", "zillow_profile_url": "https://www.zillow.com/profile/johndoe" }, "default_order_form": {}, "use_territory_awareness": true, "availability_style": "TIME", "slot_interval_minutes": 60, "use_automated_user_assignment": true, "automated_user_assignment_strategy": "RECOMMENDED", "show_user_names": true, "use_instant_appointment_scheduling": true, "allow_order_cancellation": true, "order_forms": [ {} ], "owner": { "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 }, "users": [ { "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 } ], "is_brokerage_or_brokerage_agent": true, "avatar_url": "https://picsum.photos/300", "internal_notes": "Internal notes about the group.", "team_members": [ { "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 } ], "customer_group": "null", "custom_field_entries": [ {} ], "created_at": "2021-06-30T20:30:00Z", "has_restricted_photographers": true, "is_payroll_enabled": true, "is_visible": true, "order_index": 1 } }, "use_territory_awareness": true, "availability_style": "TIME", "slot_interval_minutes": 60, "use_automated_user_assignment": true, "automated_user_assignment_strategy": "RECOMMENDED", "show_user_names": true, "use_instant_appointment_scheduling": true, "order_forms": [ { "object": "ORDER_FORM", "id": "00000000-0000-4000-8000-000000000000", "title": "BQ's Photography Order Form", "type": "ARYEO", "url": "https://www.aryeo.com/order-forms/00000000-0000-4000-8000-000000000000", "is_public": true, "thumbnail_url": "https://picsum.photos/300", "use_territory_awareness": true, "availability_style": "TIME", "slot_interval_minutes": 60, "use_automated_user_assignment": true, "automated_user_assignment_strategy": "RECOMMENDED", "show_user_names": true, "require_upfront_payment": true, "upfront_payment_percentage": 50, "use_instant_appointment_scheduling": true, "form_settings": {}, "owner": { "object": "GROUP", "id": "00000000-0000-4000-8000-000000000000", "type": "AGENT", "name": "John Doe Reality", "email": "john.doe@gmail.com", "phone": "6175550173", "website_url": "https://www.aryeo.com", "logo_url": "https://picsum.photos/300", "office_name": "John Doe Brokerage", "license_number": "12345678", "timezone": "America/New_York", "currency": "USD", "slug": "example-photography", "order_page_url": "https://example-photography.aryeo.com/order", "feature_flags": [ "require_photographer_confirmations" ], "order_page_background_color": "#FF0000", "social_profiles": { "facebook_profile_url": "https://www.facebook.com/johndoe", "instagram_profile_url": "https://www.instagram.com/johndoe", "twitter_profile_url": "https://twitter.com/johndoe", "linkedin_profile_url": "https://www.linkedin.com/in/johndoe/", "zillow_profile_url": "https://www.zillow.com/profile/johndoe" }, "default_order_form": {}, "use_territory_awareness": true, "availability_style": "TIME", "slot_interval_minutes": 60, "use_automated_user_assignment": true, "automated_user_assignment_strategy": "RECOMMENDED", "show_user_names": true, "use_instant_appointment_scheduling": true, "allow_order_cancellation": true, "order_forms": [ {} ], "owner": { "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 }, "users": [ { … } ], "is_brokerage_or_brokerage_agent": true, "avatar_url": "https://picsum.photos/300", "internal_notes": "Internal notes about the group.", "team_members": [ { … } ], "customer_group": "null", "custom_field_entries": [ {} ], "created_at": "2021-06-30T20:30:00Z", "has_restricted_photographers": true, "is_payroll_enabled": true, "is_visible": true, "order_index": 1 }, "company": { "object": "GROUP", "id": "00000000-0000-4000-8000-000000000000", "type": "AGENT", "name": "John Doe Reality", "email": "john.doe@gmail.com", "phone": "6175550173", "website_url": "https://www.aryeo.com", "logo_url": "https://picsum.photos/300", "office_name": "John Doe Brokerage", "license_number": "12345678", "timezone": "America/New_York", "currency": "USD", "slug": "example-photography", "order_page_url": "https://example-photography.aryeo.com/order", "feature_flags": [ "require_photographer_confirmations" ], "order_page_background_color": "#FF0000", "social_profiles": { "facebook_profile_url": "https://www.facebook.com/johndoe", "instagram_profile_url": "https://www.instagram.com/johndoe", "twitter_profile_url": "https://twitter.com/johndoe", "linkedin_profile_url": "https://www.linkedin.com/in/johndoe/", "zillow_profile_url": "https://www.zillow.com/profile/johndoe" }, "default_order_form": {}, "use_territory_awareness": true, "availability_style": "TIME", "slot_interval_minutes": 60, "use_automated_user_assignment": true, "automated_user_assignment_strategy": "RECOMMENDED", "show_user_names": true, "use_instant_appointment_scheduling": true, "allow_order_cancellation": true, "order_forms": [ {} ], "owner": { "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 }, "users": [ { … } ], "is_brokerage_or_brokerage_agent": true, "avatar_url": "https://picsum.photos/300", "internal_notes": "Internal notes about the group.", "team_members": [ { … } ], "customer_group": "null", "custom_field_entries": [ {} ], "created_at": "2021-06-30T20:30:00Z", "has_restricted_photographers": true, "is_payroll_enabled": true, "is_visible": true, "order_index": 1 } } ], "users": [ { "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 } ], "is_brokerage_or_brokerage_agent": true, "avatar_url": "https://picsum.photos/300", "internal_notes": "Internal notes about the group.", "team_members": [ { "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 } ], "owner": { "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": { "name": "Some Company", "provider": "Auth0" } } ], "is_super": true }, "social_profiles": { "facebook_profile_url": "https://www.facebook.com/johndoe", "instagram_profile_url": "https://www.instagram.com/johndoe", "twitter_profile_url": "https://twitter.com/johndoe", "linkedin_profile_url": "https://www.linkedin.com/in/johndoe/", "zillow_profile_url": "https://www.zillow.com/profile/johndoe" }, "customer_group": "null", "has_restricted_photographers": true, "custom_field_entries": [ {} ], "billing_address": "123 Main St, Anytown, USA 12345", "created_at": "2021-06-30T20:30:00Z", "restricted_photographers": [ {} ], "customer_team_memberships": [ { "object": "CUSTOMER_TEAM_MEMBERSHIP", "id": "00000000-0000-4000-8000-000000000000", "role": "admin", "invitation_accepted_at": "2025-04-01T05:59:59.999999Z", "status": "active", "customer_team": { "object": "CUSTOMER_TEAM", "id": "00000000-0000-4000-8000-000000000000", "name": "John Doe Customer Group", "description": "John Doe Customer Team is a customer team for John Doe.", "internal_notes": "John Doe's customer team normally doesn't work on Fridays.", "logo_url": "https://picsum.photos/640/480", "brokerage_name": "Grimes-Mante", "brokerage_website": "http://www.tillman.info/aut-odio-qui-voluptatibus", "affiliate_id": "JOHN_DOE", "should_display_original_price": true, "should_disable_automated_payment_reminder_email": true, "should_lock_downloads_before_payment": true, "order_form_id": "00000000-0000-4000-8000-000000000000", "created_at": "2025-03-07T13:59:03.000000Z", "is_showingtimeplus_team": true, "billing_customer": { "object": "GROUP", "id": "00000000-0000-4000-8000-000000000000", "type": "AGENT", "name": "John Doe Reality", "email": "john.doe@gmail.com", "phone": "6175550173", "website_url": "https://www.aryeo.com", "logo_url": "https://picsum.photos/300", "office_name": "John Doe Brokerage", "license_number": "12345678", "timezone": "America/New_York", "currency": "USD", "slug": "example-photography", "order_page_url": "https://example-photography.aryeo.com/order", "feature_flags": [ … ], "order_page_background_color": "#FF0000", "social_profiles": { … }, "default_order_form": { … }, "use_territory_awareness": true, "availability_style": "TIME", "slot_interval_minutes": 60, "use_automated_user_assignment": true, "automated_user_assignment_strategy": "RECOMMENDED", "show_user_names": true, "use_instant_appointment_scheduling": true, "allow_order_cancellation": true, "order_forms": [ … ], "owner": { … }, "users": [ … ], "is_brokerage_or_brokerage_agent": true, "avatar_url": "https://picsum.photos/300", "internal_notes": "Internal notes about the group.", "team_members": [ … ], "customer_group": "null", "custom_field_entries": [ … ], "created_at": "2021-06-30T20:30:00Z", "has_restricted_photographers": true, "is_payroll_enabled": true, "is_visible": true, "order_index": 1 }, "billing_customer_pays_externally": true, "status": "active", "is_archived": true, "website": "https://www.aryeo.com", "is_default": true }, "is_active": true, "is_archived": true, "is_deleted": true, "is_invited": true, "is_default": true, "created_at": "2025-04-01T05:59:59.999999Z", "customer_user": { "object": "USER", "id": "00000000-0000-4000-8000-000000000000", "name": "John", "email": "john.doe@gmail.com", "avatar_url": "https://picsum.photos/300", "phone": "123456789", "logo_url": "https://picsum.photos/300", "timezone": "America/New_York", "license_number": "12345678", "customer_team_memberships": [ {} ], "created_at": "2021-06-30T20:30:00Z", "is_visible": true, "order_index": 1, "verification_status": "verified", "credit_balance_amount": 100, "total_balance_amount": 100, "is_showingtimeplus_user": true, "full_name": "John Doe", "first_name": "John", "last_name": "Doe", "phone_number": "1234567890", "profile_link": "https://picsum.photos/300", "internal_notes": "John Doe is a customer.", "agent_company_name": "John Doe Real Estate", "agent_license_number": "1234567890", "is_blocked_from_ordering": true, "has_restricted_photographers": true, "default_lock_downloads_before_payment": true, "default_allows_access_to_marketing_material": true, "avalara_customer_code": "1234567890", "quickbooks_customer_id": "1234567890" }, "listing_delivery_notification_enabled": true, "is_showingtimeplus_workspace_membership": true, "is_visible": true, "order_index": 1 } ], "is_visible": true, "order_index": 1, "verification_status": "verified", "credit_balance_amount": 100, "total_balance_amount": 100, "is_showingtimeplus_user": true, "full_name": "John Doe", "first_name": "John", "last_name": "Doe", "phone_number": "1234567890", "profile_link": "https://picsum.photos/300", "agent_company_name": "John Doe Real Estate", "agent_license_number": "1234567890", "is_blocked_from_ordering": true, "default_lock_downloads_before_payment": true, "default_allows_access_to_marketing_material": true, "avalara_customer_code": "1234567890", "quickbooks_customer_id": "1234567890" }
The type of transaction
Optional description of the transaction
- Mock serverhttps://docs.aryeo.com/_mock/api/aryeo/customer-users/{user}/credit-transactions
- Productionhttps://api.aryeo.com/v1/customer-users/{user}/credit-transactions
- JS
- PHP
- Go
- Python
- Java
- C#
- cURL
const user = '00000000-0000-4000-8000-000000000000';
const resp = await fetch(
`https://docs.aryeo.com/_mock/api/aryeo/customer-users/${user}/credit-transactions`,
{
method: 'POST',
headers: {
'Content-Type': 'application/json',
Authorization: 'Bearer <YOUR_TOKEN_HERE>'
},
body: JSON.stringify({
type: 'credit',
amount: 100,
description: 'Description of transaction',
date: '2025-01-01'
})
}
);
const data = await resp.json();
console.log(data);Credit transaction created successfully
The type of credit transaction
Optional description of the transaction
ID of the user associated with the transaction. UUID Version 4.
The date the transaction was posted (YYYY-MM-DD)
The date and time the transaction was created
{ "type": "credit", "amount": 1, "description": "Transaction description", "user_id": "00000000-0000-4000-8000-000000000000", "posting_date": "2025-01-01", "created_at": "2025-01-01T20:30:00Z", "updated_at": "2025-01-01T20:30:00Z" }
Comma separated list of optional data to include in the response.
Comma separated list of customer user IDs to exclude from the response.
Filter customers by email domain.
Filter customers by email.
Filter customers by phone.
Filter customers by customer team IDs.
- Mock serverhttps://docs.aryeo.com/_mock/api/aryeo/customers
- Productionhttps://api.aryeo.com/v1/customers
- JS
- PHP
- Go
- Python
- Java
- C#
- cURL
const resp = await fetch(
`https://docs.aryeo.com/_mock/api/aryeo/customers`,
{
method: 'GET',
headers: {
Authorization: 'Bearer <YOUR_TOKEN_HERE>'
}
}
);
const data = await resp.text();
console.log(data);{ "status": "success", "data": [ { "object": "GROUP", "id": "00000000-0000-4000-8000-000000000000", "type": "AGENT", "name": "John Doe Reality", "email": "john.doe@gmail.com", "phone": "6175550173", "website_url": "https://www.aryeo.com", "logo_url": "https://picsum.photos/300", "office_name": "John Doe Brokerage", "license_number": "12345678", "timezone": "America/New_York", "currency": "USD", "slug": "example-photography", "order_page_url": "https://example-photography.aryeo.com/order", "feature_flags": [ "require_photographer_confirmations" ], "order_page_background_color": "#FF0000", "default_order_form": { "object": "ORDER_FORM", "id": "00000000-0000-4000-8000-000000000000", "title": "BQ's Photography Order Form", "type": "ARYEO", "url": "https://www.aryeo.com/order-forms/00000000-0000-4000-8000-000000000000", "is_public": true, "thumbnail_url": "https://picsum.photos/300", "use_territory_awareness": true, "availability_style": "TIME", "slot_interval_minutes": 60, "use_automated_user_assignment": true, "automated_user_assignment_strategy": "RECOMMENDED", "show_user_names": true, "require_upfront_payment": true, "upfront_payment_percentage": 50, "use_instant_appointment_scheduling": true, "form_settings": {}, "owner": { "object": "GROUP", "id": "00000000-0000-4000-8000-000000000000", "type": "AGENT", "name": "John Doe Reality", "email": "john.doe@gmail.com", "phone": "6175550173", "website_url": "https://www.aryeo.com", "logo_url": "https://picsum.photos/300", "office_name": "John Doe Brokerage", "license_number": "12345678", "timezone": "America/New_York", "currency": "USD", "slug": "example-photography", "order_page_url": "https://example-photography.aryeo.com/order", "feature_flags": [ … ], "order_page_background_color": "#FF0000", "social_profiles": { … }, "default_order_form": {}, "use_territory_awareness": true, "availability_style": "TIME", "slot_interval_minutes": 60, "use_automated_user_assignment": true, "automated_user_assignment_strategy": "RECOMMENDED", "show_user_names": true, "use_instant_appointment_scheduling": true, "allow_order_cancellation": true, "order_forms": [ … ], "owner": { … }, "users": [ … ], "is_brokerage_or_brokerage_agent": true, "avatar_url": "https://picsum.photos/300", "internal_notes": "Internal notes about the group.", "team_members": [ … ], "customer_group": "null", "custom_field_entries": [ … ], "created_at": "2021-06-30T20:30:00Z", "has_restricted_photographers": true, "is_payroll_enabled": true, "is_visible": true, "order_index": 1 }, "company": { "object": "GROUP", "id": "00000000-0000-4000-8000-000000000000", "type": "AGENT", "name": "John Doe Reality", "email": "john.doe@gmail.com", "phone": "6175550173", "website_url": "https://www.aryeo.com", "logo_url": "https://picsum.photos/300", "office_name": "John Doe Brokerage", "license_number": "12345678", "timezone": "America/New_York", "currency": "USD", "slug": "example-photography", "order_page_url": "https://example-photography.aryeo.com/order", "feature_flags": [ … ], "order_page_background_color": "#FF0000", "social_profiles": { … }, "default_order_form": {}, "use_territory_awareness": true, "availability_style": "TIME", "slot_interval_minutes": 60, "use_automated_user_assignment": true, "automated_user_assignment_strategy": "RECOMMENDED", "show_user_names": true, "use_instant_appointment_scheduling": true, "allow_order_cancellation": true, "order_forms": [ … ], "owner": { … }, "users": [ … ], "is_brokerage_or_brokerage_agent": true, "avatar_url": "https://picsum.photos/300", "internal_notes": "Internal notes about the group.", "team_members": [ … ], "customer_group": "null", "custom_field_entries": [ … ], "created_at": "2021-06-30T20:30:00Z", "has_restricted_photographers": true, "is_payroll_enabled": true, "is_visible": true, "order_index": 1 } }, "use_territory_awareness": true, "availability_style": "TIME", "slot_interval_minutes": 60, "use_automated_user_assignment": true, "automated_user_assignment_strategy": "RECOMMENDED", "show_user_names": true, "use_instant_appointment_scheduling": true, "order_forms": [ { "object": "ORDER_FORM", "id": "00000000-0000-4000-8000-000000000000", "title": "BQ's Photography Order Form", "type": "ARYEO", "url": "https://www.aryeo.com/order-forms/00000000-0000-4000-8000-000000000000", "is_public": true, "thumbnail_url": "https://picsum.photos/300", "use_territory_awareness": true, "availability_style": "TIME", "slot_interval_minutes": 60, "use_automated_user_assignment": true, "automated_user_assignment_strategy": "RECOMMENDED", "show_user_names": true, "require_upfront_payment": true, "upfront_payment_percentage": 50, "use_instant_appointment_scheduling": true, "form_settings": {}, "owner": { … }, "company": { … } } ], "users": [ { "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 } ], "is_brokerage_or_brokerage_agent": true, "avatar_url": "https://picsum.photos/300", "internal_notes": "Internal notes about the group.", "team_members": [ { "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 } ], "owner": { "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 }, "social_profiles": { "facebook_profile_url": "https://www.facebook.com/johndoe", "instagram_profile_url": "https://www.instagram.com/johndoe", "twitter_profile_url": "https://twitter.com/johndoe", "linkedin_profile_url": "https://www.linkedin.com/in/johndoe/", "zillow_profile_url": "https://www.zillow.com/profile/johndoe" }, "customer_group": "null", "has_restricted_photographers": true, "custom_field_entries": [ {} ], "billing_address": "123 Main St, Anytown, USA 12345", "created_at": "2021-06-30T20:30:00Z", "restricted_photographers": [ {} ], "customer_team_memberships": [ { "object": "CUSTOMER_TEAM_MEMBERSHIP", "id": "00000000-0000-4000-8000-000000000000", "role": "admin", "invitation_accepted_at": "2025-04-01T05:59:59.999999Z", "status": "active", "customer_team": { … }, "is_active": true, "is_archived": true, "is_deleted": true, "is_invited": true, "is_default": true, "created_at": "2025-04-01T05:59:59.999999Z", "customer_user": { … }, "listing_delivery_notification_enabled": true, "is_showingtimeplus_workspace_membership": true, "is_visible": true, "order_index": 1 } ], "is_visible": true, "order_index": 1, "verification_status": "verified", "credit_balance_amount": 100, "total_balance_amount": 100, "is_showingtimeplus_user": true, "full_name": "John Doe", "first_name": "John", "last_name": "Doe", "phone_number": "1234567890", "profile_link": "https://picsum.photos/300", "agent_company_name": "John Doe Real Estate", "agent_license_number": "1234567890", "is_blocked_from_ordering": true, "default_lock_downloads_before_payment": true, "default_allows_access_to_marketing_material": true, "avalara_customer_code": "1234567890", "quickbooks_customer_id": "1234567890" } ], "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" }
CustomerPostPayload
First name of the customer owner.
Email address of the customer owner.
A phone number represented in whichever standards specified by the user, typically ###-###-#### (separated by hyphens).
The avatar image URL of the customer.
The logo image URL of the customer.
The website URL of the customer.
The name of the customer team.
The description of the customer.
The ID of the customer team.
The license number of a real estate agent.
- Mock serverhttps://docs.aryeo.com/_mock/api/aryeo/customers
- Productionhttps://api.aryeo.com/v1/customers
- JS
- PHP
- Go
- Python
- Java
- C#
- cURL
const resp = await fetch(
`https://docs.aryeo.com/_mock/api/aryeo/customers`,
{
method: 'POST',
headers: {
'Content-Type': 'application/json',
Authorization: 'Bearer <YOUR_TOKEN_HERE>'
},
body: JSON.stringify({
owner_first_name: 'John',
owner_last_name: 'Doe',
email: 'john.doe@gmail.com',
phone: '(123) 456-7890',
avatar_url: 'https://picsum.photos/300',
logo_url: 'https://picsum.photos/300',
website_url: 'https://www.john-doe-realty.com',
team_name: 'John Doe Realty',
description: 'John Doe Realty is a real estate company that specializes in selling homes in Space City.',
office_name: 'John Doe Realty',
customer_team_id: '123e4567-e89b-12d3-a456-426614174000',
license_number: '12345678',
timezone: 'America/New_York'
})
}
);
const data = await resp.json();
console.log(data);{ "status": "success", "data": { "object": "GROUP", "id": "00000000-0000-4000-8000-000000000000", "type": "AGENT", "name": "John Doe Reality", "email": "john.doe@gmail.com", "phone": "6175550173", "website_url": "https://www.aryeo.com", "logo_url": "https://picsum.photos/300", "office_name": "John Doe Brokerage", "license_number": "12345678", "timezone": "America/New_York", "currency": "USD", "slug": "example-photography", "order_page_url": "https://example-photography.aryeo.com/order", "feature_flags": [ "require_photographer_confirmations" ], "order_page_background_color": "#FF0000", "default_order_form": { "object": "ORDER_FORM", "id": "00000000-0000-4000-8000-000000000000", "title": "BQ's Photography Order Form", "type": "ARYEO", "url": "https://www.aryeo.com/order-forms/00000000-0000-4000-8000-000000000000", "is_public": true, "thumbnail_url": "https://picsum.photos/300", "use_territory_awareness": true, "availability_style": "TIME", "slot_interval_minutes": 60, "use_automated_user_assignment": true, "automated_user_assignment_strategy": "RECOMMENDED", "show_user_names": true, "require_upfront_payment": true, "upfront_payment_percentage": 50, "use_instant_appointment_scheduling": true, "form_settings": {}, "owner": { "object": "GROUP", "id": "00000000-0000-4000-8000-000000000000", "type": "AGENT", "name": "John Doe Reality", "email": "john.doe@gmail.com", "phone": "6175550173", "website_url": "https://www.aryeo.com", "logo_url": "https://picsum.photos/300", "office_name": "John Doe Brokerage", "license_number": "12345678", "timezone": "America/New_York", "currency": "USD", "slug": "example-photography", "order_page_url": "https://example-photography.aryeo.com/order", "feature_flags": [ "require_photographer_confirmations" ], "order_page_background_color": "#FF0000", "social_profiles": { "facebook_profile_url": "https://www.facebook.com/johndoe", "instagram_profile_url": "https://www.instagram.com/johndoe", "twitter_profile_url": "https://twitter.com/johndoe", "linkedin_profile_url": "https://www.linkedin.com/in/johndoe/", "zillow_profile_url": "https://www.zillow.com/profile/johndoe" }, "default_order_form": {}, "use_territory_awareness": true, "availability_style": "TIME", "slot_interval_minutes": 60, "use_automated_user_assignment": true, "automated_user_assignment_strategy": "RECOMMENDED", "show_user_names": true, "use_instant_appointment_scheduling": true, "allow_order_cancellation": true, "order_forms": [ {} ], "owner": { "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 }, "users": [ { … } ], "is_brokerage_or_brokerage_agent": true, "avatar_url": "https://picsum.photos/300", "internal_notes": "Internal notes about the group.", "team_members": [ { … } ], "customer_group": "null", "custom_field_entries": [ {} ], "created_at": "2021-06-30T20:30:00Z", "has_restricted_photographers": true, "is_payroll_enabled": true, "is_visible": true, "order_index": 1 }, "company": { "object": "GROUP", "id": "00000000-0000-4000-8000-000000000000", "type": "AGENT", "name": "John Doe Reality", "email": "john.doe@gmail.com", "phone": "6175550173", "website_url": "https://www.aryeo.com", "logo_url": "https://picsum.photos/300", "office_name": "John Doe Brokerage", "license_number": "12345678", "timezone": "America/New_York", "currency": "USD", "slug": "example-photography", "order_page_url": "https://example-photography.aryeo.com/order", "feature_flags": [ "require_photographer_confirmations" ], "order_page_background_color": "#FF0000", "social_profiles": { "facebook_profile_url": "https://www.facebook.com/johndoe", "instagram_profile_url": "https://www.instagram.com/johndoe", "twitter_profile_url": "https://twitter.com/johndoe", "linkedin_profile_url": "https://www.linkedin.com/in/johndoe/", "zillow_profile_url": "https://www.zillow.com/profile/johndoe" }, "default_order_form": {}, "use_territory_awareness": true, "availability_style": "TIME", "slot_interval_minutes": 60, "use_automated_user_assignment": true, "automated_user_assignment_strategy": "RECOMMENDED", "show_user_names": true, "use_instant_appointment_scheduling": true, "allow_order_cancellation": true, "order_forms": [ {} ], "owner": { "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 }, "users": [ { … } ], "is_brokerage_or_brokerage_agent": true, "avatar_url": "https://picsum.photos/300", "internal_notes": "Internal notes about the group.", "team_members": [ { … } ], "customer_group": "null", "custom_field_entries": [ {} ], "created_at": "2021-06-30T20:30:00Z", "has_restricted_photographers": true, "is_payroll_enabled": true, "is_visible": true, "order_index": 1 } }, "use_territory_awareness": true, "availability_style": "TIME", "slot_interval_minutes": 60, "use_automated_user_assignment": true, "automated_user_assignment_strategy": "RECOMMENDED", "show_user_names": true, "use_instant_appointment_scheduling": true, "order_forms": [ { "object": "ORDER_FORM", "id": "00000000-0000-4000-8000-000000000000", "title": "BQ's Photography Order Form", "type": "ARYEO", "url": "https://www.aryeo.com/order-forms/00000000-0000-4000-8000-000000000000", "is_public": true, "thumbnail_url": "https://picsum.photos/300", "use_territory_awareness": true, "availability_style": "TIME", "slot_interval_minutes": 60, "use_automated_user_assignment": true, "automated_user_assignment_strategy": "RECOMMENDED", "show_user_names": true, "require_upfront_payment": true, "upfront_payment_percentage": 50, "use_instant_appointment_scheduling": true, "form_settings": {}, "owner": { "object": "GROUP", "id": "00000000-0000-4000-8000-000000000000", "type": "AGENT", "name": "John Doe Reality", "email": "john.doe@gmail.com", "phone": "6175550173", "website_url": "https://www.aryeo.com", "logo_url": "https://picsum.photos/300", "office_name": "John Doe Brokerage", "license_number": "12345678", "timezone": "America/New_York", "currency": "USD", "slug": "example-photography", "order_page_url": "https://example-photography.aryeo.com/order", "feature_flags": [ … ], "order_page_background_color": "#FF0000", "social_profiles": { … }, "default_order_form": {}, "use_territory_awareness": true, "availability_style": "TIME", "slot_interval_minutes": 60, "use_automated_user_assignment": true, "automated_user_assignment_strategy": "RECOMMENDED", "show_user_names": true, "use_instant_appointment_scheduling": true, "allow_order_cancellation": true, "order_forms": [ … ], "owner": { … }, "users": [ … ], "is_brokerage_or_brokerage_agent": true, "avatar_url": "https://picsum.photos/300", "internal_notes": "Internal notes about the group.", "team_members": [ … ], "customer_group": "null", "custom_field_entries": [ … ], "created_at": "2021-06-30T20:30:00Z", "has_restricted_photographers": true, "is_payroll_enabled": true, "is_visible": true, "order_index": 1 }, "company": { "object": "GROUP", "id": "00000000-0000-4000-8000-000000000000", "type": "AGENT", "name": "John Doe Reality", "email": "john.doe@gmail.com", "phone": "6175550173", "website_url": "https://www.aryeo.com", "logo_url": "https://picsum.photos/300", "office_name": "John Doe Brokerage", "license_number": "12345678", "timezone": "America/New_York", "currency": "USD", "slug": "example-photography", "order_page_url": "https://example-photography.aryeo.com/order", "feature_flags": [ … ], "order_page_background_color": "#FF0000", "social_profiles": { … }, "default_order_form": {}, "use_territory_awareness": true, "availability_style": "TIME", "slot_interval_minutes": 60, "use_automated_user_assignment": true, "automated_user_assignment_strategy": "RECOMMENDED", "show_user_names": true, "use_instant_appointment_scheduling": true, "allow_order_cancellation": true, "order_forms": [ … ], "owner": { … }, "users": [ … ], "is_brokerage_or_brokerage_agent": true, "avatar_url": "https://picsum.photos/300", "internal_notes": "Internal notes about the group.", "team_members": [ … ], "customer_group": "null", "custom_field_entries": [ … ], "created_at": "2021-06-30T20:30:00Z", "has_restricted_photographers": true, "is_payroll_enabled": true, "is_visible": true, "order_index": 1 } } ], "users": [ { "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 } ], "is_brokerage_or_brokerage_agent": true, "avatar_url": "https://picsum.photos/300", "internal_notes": "Internal notes about the group.", "team_members": [ { "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 } ], "owner": { "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 }, "social_profiles": { "facebook_profile_url": "https://www.facebook.com/johndoe", "instagram_profile_url": "https://www.instagram.com/johndoe", "twitter_profile_url": "https://twitter.com/johndoe", "linkedin_profile_url": "https://www.linkedin.com/in/johndoe/", "zillow_profile_url": "https://www.zillow.com/profile/johndoe" }, "customer_group": "null", "has_restricted_photographers": true, "custom_field_entries": [ {} ], "billing_address": "123 Main St, Anytown, USA 12345", "created_at": "2021-06-30T20:30:00Z", "restricted_photographers": [ {} ], "customer_team_memberships": [ { "object": "CUSTOMER_TEAM_MEMBERSHIP", "id": "00000000-0000-4000-8000-000000000000", "role": "admin", "invitation_accepted_at": "2025-04-01T05:59:59.999999Z", "status": "active", "customer_team": { "object": "CUSTOMER_TEAM", "id": "00000000-0000-4000-8000-000000000000", "name": "John Doe Customer Group", "description": "John Doe Customer Team is a customer team for John Doe.", "internal_notes": "John Doe's customer team normally doesn't work on Fridays.", "logo_url": "https://picsum.photos/640/480", "brokerage_name": "Grimes-Mante", "brokerage_website": "http://www.tillman.info/aut-odio-qui-voluptatibus", "affiliate_id": "JOHN_DOE", "should_display_original_price": true, "should_disable_automated_payment_reminder_email": true, "should_lock_downloads_before_payment": true, "order_form_id": "00000000-0000-4000-8000-000000000000", "created_at": "2025-03-07T13:59:03.000000Z", "is_showingtimeplus_team": true, "billing_customer": { … }, "billing_customer_pays_externally": true, "status": "active", "is_archived": true, "website": "https://www.aryeo.com", "is_default": true }, "is_active": true, "is_archived": true, "is_deleted": true, "is_invited": true, "is_default": true, "created_at": "2025-04-01T05:59:59.999999Z", "customer_user": { "object": "USER", "id": "00000000-0000-4000-8000-000000000000", "name": "John", "email": "john.doe@gmail.com", "avatar_url": "https://picsum.photos/300", "phone": "123456789", "logo_url": "https://picsum.photos/300", "timezone": "America/New_York", "license_number": "12345678", "customer_team_memberships": [ … ], "created_at": "2021-06-30T20:30:00Z", "is_visible": true, "order_index": 1, "verification_status": "verified", "credit_balance_amount": 100, "total_balance_amount": 100, "is_showingtimeplus_user": true, "full_name": "John Doe", "first_name": "John", "last_name": "Doe", "phone_number": "1234567890", "profile_link": "https://picsum.photos/300", "internal_notes": "John Doe is a customer.", "agent_company_name": "John Doe Real Estate", "agent_license_number": "1234567890", "is_blocked_from_ordering": true, "has_restricted_photographers": true, "default_lock_downloads_before_payment": true, "default_allows_access_to_marketing_material": true, "avalara_customer_code": "1234567890", "quickbooks_customer_id": "1234567890" }, "listing_delivery_notification_enabled": true, "is_showingtimeplus_workspace_membership": true, "is_visible": true, "order_index": 1 } ], "is_visible": true, "order_index": 1, "verification_status": "verified", "credit_balance_amount": 100, "total_balance_amount": 100, "is_showingtimeplus_user": true, "full_name": "John Doe", "first_name": "John", "last_name": "Doe", "phone_number": "1234567890", "profile_link": "https://picsum.photos/300", "agent_company_name": "John Doe Real Estate", "agent_license_number": "1234567890", "is_blocked_from_ordering": true, "default_lock_downloads_before_payment": true, "default_allows_access_to_marketing_material": true, "avalara_customer_code": "1234567890", "quickbooks_customer_id": "1234567890" }, "timestamp": "2021-06-30T20:30:00Z" }