Lists all teams in an organization.
Dixa API (beta)
Download OpenAPI description
Languages
Servers
Mock server
https://docs.dixa.io/_mock/openapi/dixa-api/beta
https://dev.dixa.io
- Mock serverhttps://docs.dixa.io/_mock/openapi/dixa-api/beta/beta/teams
- https://dev.dixa.io/beta/teams
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://docs.dixa.io/_mock/openapi/dixa-api/beta/beta/teams \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
{ "data": [ { … }, { … } ] }
- Mock serverhttps://docs.dixa.io/_mock/openapi/dixa-api/beta/beta/teams
- https://dev.dixa.io/beta/teams
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.dixa.io/_mock/openapi/dixa-api/beta/beta/teams \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"name": "Team A"
}'Response
application/json
{ "data": { "id": "005e7108-c85c-41d1-a945-4a8dc58c4399", "name": "Team A" } }
- Mock serverhttps://docs.dixa.io/_mock/openapi/dixa-api/beta/beta/teams/{teamId}/agents
- https://dev.dixa.io/beta/teams/{teamId}/agents
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.dixa.io/_mock/openapi/dixa-api/beta/beta/teams/{teamId}/agents' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
{ "data": [ { … }, { … } ] }
- Mock serverhttps://docs.dixa.io/_mock/openapi/dixa-api/beta/beta/teams/{teamId}/agents
- https://dev.dixa.io/beta/teams/{teamId}/agents
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://docs.dixa.io/_mock/openapi/dixa-api/beta/beta/teams/{teamId}/agents' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"agentIds": [
"a8080cf3-9d55-41dd-a8ef-b02414399e7a",
"d53dbec1-e79c-4736-b9a1-15f6dce71ed4"
]
}'- Mock serverhttps://docs.dixa.io/_mock/openapi/dixa-api/beta/beta/teams/{teamId}/agents
- https://dev.dixa.io/beta/teams/{teamId}/agents
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PATCH \
'https://docs.dixa.io/_mock/openapi/dixa-api/beta/beta/teams/{teamId}/agents' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"agentIds": [
"912d5148-6918-4420-b23a-8584b896c8ae",
"a8080cf3-9d55-41dd-a8ef-b02414399e7a"
]
}'- Mock serverhttps://docs.dixa.io/_mock/openapi/dixa-api/beta/beta/teams/{teamId}/presence
- https://dev.dixa.io/beta/teams/{teamId}/presence
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.dixa.io/_mock/openapi/dixa-api/beta/beta/teams/{teamId}/presence?pageLimit=0&pageKey=string' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
{ "data": [ { … }, { … } ] }
- Mock serverhttps://docs.dixa.io/_mock/openapi/dixa-api/beta/beta/teams/{teamId}
- https://dev.dixa.io/beta/teams/{teamId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.dixa.io/_mock/openapi/dixa-api/beta/beta/teams/{teamId}' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
{ "data": { "id": "005e7108-c85c-41d1-a945-4a8dc58c4399", "name": "Team A" } }
- Mock serverhttps://docs.dixa.io/_mock/openapi/dixa-api/beta/beta/teams/{teamId}
- https://dev.dixa.io/beta/teams/{teamId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://docs.dixa.io/_mock/openapi/dixa-api/beta/beta/teams/{teamId}' \
-H 'Authorization: YOUR_API_KEY_HERE'