Skip to main content
POST
/
api
/
v3
/
teams
Create team
curl --request POST \
  --url https://app.plugchoice.com/api/v3/teams \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "b",
  "email": "[email protected]"
}
'
{
  "data": {
    "uuid": "a1a0a47d-e8c3-3cf0-8e6e-c1ff9dca5d1f",
    "id": 1,
    "name": "Mrs. Justina Gaylord",
    "slug": "mrs-justina-gaylord",
    "email": "[email protected]",
    "created_at": "2026-01-10T01:14:33.000000Z",
    "updated_at": "2026-01-10T01:14:33.000000Z"
  }
}

Authorizations

Authorization
string
header
required

See the documentation for more information.

Body

application/json
name
string
required

Must not be greater than 255 characters.

Example:

"b"

email
string
required

Must be a valid email address. Must not be greater than 255 characters.

Response

200 - application/json
data
object