Create a team
POST/v3/teams
Create a team
Request
- application/json
 
Body
name stringrequired
Possible values: <= 255 characters
Team name
type string
Possible values: [SURVEY, TICKET]
Default value: SURVEY
Team type, if not provided will be "SURVEY" by default
user_id number[]
Possible values: <= 100
Id of users who should be added to the team
Responses
- 200
 
Successful
- */*
 
- Schema
 - Example (from schema)
 
Schema
data
object
id number
Team id
name string
Team name
description string
Team description
type string
Type of team
account_id number
Account Id
business_hour_id number
created_at date
updated_at date
deleted_at date
{
  "data": {
    "id": 1,
    "name": "Avengers",
    "description": "Avengers team",
    "type": "SURVEY",
    "account_id": 2,
    "business_hour_id": 0,
    "created_at": "2022-03-10T12:34:00.860Z",
    "updated_at": "2022-03-10T12:34:00.860Z",
    "deleted_at": "2022-03-10T12:34:00.860Z"
  }
}
Loading...