Skip to content

Create team

Request

Create a team.

Security
ApiKeyAuth
Bodyapplication/jsonrequired

The team name

namestringrequired
POST
/v1/teams
curl -i -X POST \
  https://dev.dixa.io/v1/teams \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
    "name": "Team A"
  }'

Responses

The created team

Bodyapplication/json
dataobject(Team)required
Response
{ "data": { "id": "005e7108-c85c-41d1-a945-4a8dc58c4399", "name": "Team A" } }