List authorized users
Returns a paginated list of authorized team members for a company, with optional filtering by user, role, and creation date.
Required permissions:
- company:authorized_user:read
- member:email:read
Query parameters
Returns the elements in the list that come after the specified cursor.
Returns the elements in the list that come before the specified cursor.
Returns the first n elements from the list.
Returns the last n elements from the list.
Filter results to a specific user to check if they are an authorized team member.
Possible roles an authorized user can have
Only return authorized users created before this timestamp.
Only return authorized users created after this timestamp.
The unique identifier of the company to list authorized users for.
Response
A successful response
Example response
{
"data": [
{
"company": {
"id": "biz_xxxxxxxxxxxxxx",
"title": "Pickaxe"
},
"id": "ausr_xxxxxxxxxxxxx",
"user": {
"email": "john.doe@example.com",
"id": "user_xxxxxxxxxxxxx",
"name": "John Doe",
"username": "johndoe42"
}
}
]
}Changes
Changed in 4 of the 74 revisions of this API.1314
- ●
added the new
partnerenum value to the//response property for the response statusresponse-property-enum-value-added
- ○
added the new enum value
partnerto thequeryrequest parameterrolerequest-parameter-enum-value-added
This revision also has 1 change that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ●
- ●
deleted the
queryrequest parametercompany_idrequest-parameter-removed
- ○
added the new optional
queryrequest parameteraccount_idnew-optional-request-parameter
This revision also has 9 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ●
- ▲
the
queryrequest parameterrolewas restricted to a list of enum valuesrequest-parameter-became-enum
- ○
added the new enum value
adminto thequeryrequest parameterrolerequest-parameter-enum-value-added
- ○
added the new enum value
advertiserto thequeryrequest parameterrolerequest-parameter-enum-value-added
- ○
added the new enum value
app_managerto thequeryrequest parameterrolerequest-parameter-enum-value-added
- ○
added the new enum value
customto thequeryrequest parameterrolerequest-parameter-enum-value-added
- ○
added the new enum value
managerto thequeryrequest parameterrolerequest-parameter-enum-value-added
- ○
added the new enum value
moderatorto thequeryrequest parameterrolerequest-parameter-enum-value-added
- ○
added the new enum value
ownerto thequeryrequest parameterrolerequest-parameter-enum-value-added
- ○
added the new enum value
sales_managerto thequeryrequest parameterrolerequest-parameter-enum-value-added
- ○
added the new enum value
supportto thequeryrequest parameterrolerequest-parameter-enum-value-added
- ○
added the new enum value
workforceto thequeryrequest parameterrolerequest-parameter-enum-value-added
- ○
for the
queryrequest parameterrole, the type was generalized from no type tostringrequest-parameter-type-generalized
- ▲
- ●
added the new
workforceenum value to the//response property for the response statusresponse-property-enum-value-added
- ○
added the enum value
workforceto the propertyoneOf[AuthorizedUserRoles]/of thequeryrequest parameterrolerequest-parameter-property-enum-value-added
- ●
Of the 74 revisions, 1 has no diff computed.