Users and Jurisdictions
Endpoints for retrieving users within your organization and the list of supported jurisdictions.
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Responses
200
Success
application/json
401
Not authenticated
application/json
get
/v1/usersGET /v1/users HTTP/1.1
Host: demo-api.vivox.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"id": "00a68114-e5e4-48bc-af16-bed68f2f1550",
"name": "Jane Doe",
"email": "[email protected]"
},
{
"id": "954d25a4-0ec5-454e-8899-577dec5815c6",
"name": "John Smith",
"email": "[email protected]"
}
]Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Responses
200
Success
application/json
401
Not authenticated
application/json
get
/v1/jurisdictionsGET /v1/jurisdictions HTTP/1.1
Host: demo-api.vivox.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"code_iso": "CN",
"name": "China",
"supports_autosearch": false
},
{
"code_iso": "US",
"name": "United States",
"supports_autosearch": false
}
]Last updated