The tenant's user directory (read-only)
GET
/v1/users
const url = 'https://api.vocapable.com/v1/users?limit=50';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://api.vocapable.com/v1/users?limit=50' \ --header 'Authorization: Bearer <token>'Who work can be attributed or assigned to - never a management surface.
Invitations, role changes, and deactivation have no /v1 route on purpose; this
exists so the portal can render an assignee picker and resolve “assign to me”
(ADR-0037) without holding anything wider than a read.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”Responses
Section titled “Responses”Successful Response
Media typeapplication/json
CursorPage[TenantUserSummary]
object
data
required
Data
Array<object>
TenantUserSummaryOne row of the read-only tenant user directory (GET /v1/users).
Deliberately narrow: enough to render an assignee picker and attribute work, never a
management surface - there is no invitation, role, or status write on /v1.
object
id
required
Id
string
email
required
Email
string
role
required
Role
string
status
required
Status
string
created_at
required
Created At
string format: date-time
has_more
Has More
boolean
Example
{ "has_more": false}Validation Error
Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Examplegenerated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example", "input": "example", "ctx": {} } ]}