API Documentation
Apps
- Overview
- Companies
- Experiences
- Members
- Memberships
- Products
- Payments
- Reviews
- Notifications
- Line Items
- App Connections
- Users
- Feed Content Items
- Inbound Webhooks
- Inbound Webhook Filters
- GETRetrieve the current app
- GETCheck Access
Company
- Overview
- Memberships
- Products
- Payments
- Reviews
- Users
- GETRetrieve the current company
Me
- Overview
- Memberships
- Products
- Payments
- Reviews
- Experiences
- Companies
- POSTCreate an OAuth Token
- GETRetrieve the current user
- GETList a User's social accounts
Chat
- Webhooks
List Companies
Returns a collection of companies
curl --request GET \
--url https://{defaultHost}/v5/app/companies \
--header 'Authorization: Bearer <token>'
{
"pagination": {
"current_page": 123,
"total_pages": 123,
"next_page": 123,
"prev_page": 123,
"total_count": 123
},
"data": [
{
"id": "<string>",
"created_at": 123,
"title": "<string>",
"image_url": "<string>",
"authorized_user": {
"id": "<string>",
"user_id": "<string>",
"role": "owner",
"company_id": "<string>",
"user": {
"id": "<string>",
"name": "<string>",
"username": "<string>",
"email": "<string>",
"profile_pic_url": "<string>",
"created_at": 123,
"profile_pic_url_32": "<string>",
"profile_pic_url_64": "<string>",
"profile_pic_url_128": "<string>"
}
},
"has_payment_method": true,
"route": "<string>",
"owner": {
"id": "<string>",
"name": "<string>",
"username": "<string>",
"email": "<string>",
"profile_pic_url": "<string>",
"created_at": 123,
"profile_pic_url_32": "<string>",
"profile_pic_url_64": "<string>",
"profile_pic_url_128": "<string>"
}
}
]
}
Authorizations
App API key for /v5/app and /v5/company endpoints
Query Parameters
The page number to retrieve
The number of resources to return per page. There is a limit of 50 results per page.
Response
The ID of the company object, which will look like biz_*************
The date the company was created.
The title of the company
The ID of the user, which will look like user_*************
The username of the user
The date the user was created.
The first and last name of the user.
The email of the user
The URL of the user's profile picture
The URL of the user's profile picture at 32x32 pixels
The URL of the user's profile picture at 64x64 pixels
The URL of the user's profile picture at 128x128 pixels
The URL of the company's image
The ID of the user, which will look like user_*************
The ID of the user, which will look like user_*************
The ID of the company, which will look like biz_*************
The ID of the user, which will look like user_*************
The username of the user
The date the user was created.
The first and last name of the user.
The email of the user
The URL of the user's profile picture
The URL of the user's profile picture at 32x32 pixels
The URL of the user's profile picture at 64x64 pixels
The URL of the user's profile picture at 128x128 pixels
The role of the user
owner
, admin
, sales_manager
, moderator
, app_manager
, support
, manager
Whether or not the company has a payment method on file to charge for metered billing usage.
The route to the company's first/default page
Was this page helpful?
curl --request GET \
--url https://{defaultHost}/v5/app/companies \
--header 'Authorization: Bearer <token>'
{
"pagination": {
"current_page": 123,
"total_pages": 123,
"next_page": 123,
"prev_page": 123,
"total_count": 123
},
"data": [
{
"id": "<string>",
"created_at": 123,
"title": "<string>",
"image_url": "<string>",
"authorized_user": {
"id": "<string>",
"user_id": "<string>",
"role": "owner",
"company_id": "<string>",
"user": {
"id": "<string>",
"name": "<string>",
"username": "<string>",
"email": "<string>",
"profile_pic_url": "<string>",
"created_at": 123,
"profile_pic_url_32": "<string>",
"profile_pic_url_64": "<string>",
"profile_pic_url_128": "<string>"
}
},
"has_payment_method": true,
"route": "<string>",
"owner": {
"id": "<string>",
"name": "<string>",
"username": "<string>",
"email": "<string>",
"profile_pic_url": "<string>",
"created_at": 123,
"profile_pic_url_32": "<string>",
"profile_pic_url_64": "<string>",
"profile_pic_url_128": "<string>"
}
}
]
}