POST
/
api
/
v2
/
teams
curl --request POST \
  --url https://cloud.volttime.com/api/v2/teams \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "b",
  "email": "zbailey@example.net",
  "type": "architecto"
}'
{
  "data": {
    "id": 206,
    "is_personal_team": false,
    "name": "Ms. Elisabeth Okuneva",
    "type": "Other",
    "email": "gulgowski.asia@example.com",
    "created_at": "2025-03-12T13:49:24.000000Z",
    "updated_at": "2025-03-12T13:49:24.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.

Example:

"zbailey@example.net"

type
string
required
Example:

"architecto"

Response

200 - application/json
data
object

Was this page helpful?