List teams
GET/companies/:companyID/teams
List teams
Request
Query Parameters
offset number
Default value: 0
limit number
Possible values: >= 1
Default value: 10
Responses
- 200
Retrieve the list of teams
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
name stringrequired
The name of the team
description stringnullablerequired
The description of the team
companyId uuidrequired
The ID of the company the team belongs to
created stringrequired
The creation date of the team
updated stringrequired
The last update date of the team
[
{
"name": "dev-team",
"description": "A team for development",
"companyId": "550e8400-e29b-41d4-a716-446655440000",
"created": "2023-01-01T00:00:00Z",
"updated": "2023-01-02T00:00:00Z"
}
]
Loading...