Get all teams
GET/v3/teams
Get all teams
Request
Query Parameters
limit number
Possible values: >= 1 and <= 100
Default value: 50
Number of records you would like in a request
page number
Possible values: >= 1
Page of results
type string
Possible values: [SURVEY, TICKET]
Type of team
Responses
- 200
 
Successful
- */*
 
- Schema
 - Example (from schema)
 
Schema
Array [
]
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
has_next_page boolean
{
  "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"
    }
  ],
  "has_next_page": true
}
Loading...