Skip to content

List mobile customer-team memberships

GET
/v1/mobile/team
curl --request GET \
--url https://api.vocapable.com/v1/mobile/team \
--header 'Authorization: Bearer <token>'

Successful Response

Media typeapplication/json
Response List Mobile Team V1 Mobile Team Get
Array<object>
MobileTeamMemberSummary

The capability-gated mobile team directory projection.

A manager needs a recognizable staff label plus operational role, membership state, the server-owned rep link used by handoff routing, and a safe selector fact for emergency forwarding. Account/tenant ids and session invalidation timestamps are intentionally absent: they are not team-management inputs and would expose identity/security internals to every directory reader.

object
id
required
Id
string
display_name
Any of:
string
role
required
TenantMembershipRole

The only roles a customer can hold in one workspace.

string
Allowed values: admin manager rep
human_rep_id
Any of:
string
status
required
Status
string
Allowed values: active suspended revoked
forward_eligible
Forward Eligible
boolean
Example
[
{
"role": "admin",
"status": "active",
"forward_eligible": false
}
]