Skip to main content
POST
/
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": "<string>",
  "email": "<string>"
}
'
{
  "uuid": "<string>",
  "id": 123,
  "name": "<string>",
  "slug": "<string>",
  "email": "<string>",
  "created_at": "<string>",
  "updated_at": "<string>"
}
Creates a new team for the authenticated user.
name
string
required
The name of the team. Maximum 255 characters.
email
string
required
The contact email address for the team. Must be a valid email. Maximum 255 characters.

Response

uuid
string
The unique UUID of the team.
id
integer
The numeric ID of the team.
name
string
The team name.
slug
string
The URL-friendly slug of the team.
email
string
The team’s contact email address.
created_at
string
ISO 8601 timestamp of when the team was created.
updated_at
string
ISO 8601 timestamp of when the team was last updated.