List company users (roles, locations, accounts)
Overview
List every non-deleted user in the authenticated caller's company with their role, assigned locations and assigned accounts. Only partner (bundle_id=1) and account (bundle_id=3) companies may call it.
Prerequisites
- A bearer token in the
Authorizationheader.
Base URL
| Environment | URL |
|---|---|
| Production | https://production-api.shoutaboutus.com |
| Development | https://development-api.shoutaboutus.com |
Endpoint
GET /api/v1/users/list
Authentication
-
Requires a bearer token in the
Authorization: Bearer <bearer-token>header. -
Partner / account company-admin — collection bearer token. In-controller gate: the caller's company
bundle_idmust be 1 or 3, else403 Only Partner and Account users are allowed.
Rate limit
- No rate limit.
Query parameters
| Field | Type | Required | Description |
|---|---|---|---|
sort_field | string | Optional | One of email, first_name, last_name, role. |
sort_by | string | Optional | ASC / DESC (case-insensitive). Only applied when sort_field is present. |
How it works
200returns adataarray of users (id, email, verification/active state, name, role,locations,accounts). Not paginated — returns the full company user list.403when the caller is not a partner/account company.
Response
200 OK · 200
200{
"data": [
{
"id": 5,
"email": "[email protected]",
"inactive_at": null,
"email_verified_at": "2026-06-12T06:28:19.000000Z",
"first_name": "Alex",
"last_name": "Smith",
"role": "Basic User",
"locations": [],
"accounts": []
},
{
"id": 3,
"email": "[email protected]",
"inactive_at": null,
"email_verified_at": "2026-06-11T10:34:52.000000Z",
"first_name": "John",
"last_name": "Doe",
"role": "Owner",
"locations": [],
"accounts": [
"Acme Brand"
]
}
]
}403 Forbidden · 403
403{
"message": "Forbidden",
"status": "error",
"errors": "Only Partner and Account users are allowed."
}Errors
| Status | Meaning |
|---|---|
401 | The bearer token is missing, expired or invalid |
403 | Forbidden |
422 | The request failed validation — the response names the fields |
500 | Unexpected server error |
Example request
curl --request GET \
--url "https://production-api.shoutaboutus.com/api/v1/users/list?sort_field=last_name&sort_by=ASC" \
--header 'Authorization: Bearer <bearer-token>' \
--header 'Accept: application/json'Updated 16 days ago
Did this page help you?
