Managers
List Managers
GET /v1/managers
curl 'https://{workspace}.kitchen.co/api/v1/managers' \
 -H 'Accept: application/json' \
 -H 'Authorization: Bearer {AUTH_TOKEN}'
1
2
3
2
3
Response
{
  "data": [
    {
      "id": "3",
      "added_on": "2021-10-26T12:02:44+00:00",
      "name": "John Doe",
      "email": "[email protected]",
      "username": "johndoe",
      "phone": "012345678",
      "timezone": null,
      "group": "manager",
      "role": "admin",
      "avatar_type": null,
      "avatar_url": null,
      "avatar_gravatar_url": null,
      "avatar_file": null,
      "color": "#32abfe",
      "default_color": "#32abfe",
      "is_active": true,
      "last_seen": null,
    },
    …
  ],
  "meta": {
    …
  }
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Retrieve a Manager
GET /v1/managers/{manager_id}
curl 'https://{workspace}.kitchen.co/api/v1/managers/{manager_id}' \
 -H 'Accept: application/json' \
 -H 'Authorization: Bearer {AUTH_TOKEN}'
1
2
3
2
3
Parameters
manager_id string required
The id of the Manager.
Response
{
  "id": "3",
  "added_on": "2021-10-26T12:02:44+00:00",
  "name": "John Doe",
  "email": "[email protected]",
  "username": "johndoe",
  "phone": "012345678",
  "timezone": null,
  "group": "manager",
  "role": "admin",
  "avatar_type": null,
  "avatar_url": null,
  "avatar_gravatar_url": null,
  "avatar_file": null,
  "color": "#32abfe",
  "default_color": "#32abfe",
  "is_active": true,
  "last_seen": null,
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
List Managers from a Project
GET /v1/projects/{project_id}/managers
curl 'https://{workspace}.kitchen.co/api/v1/projects/{project_id}/managers' \
 -H 'Accept: application/json' \
 -H 'Authorization: Bearer {AUTH_TOKEN}'
1
2
3
2
3
Parameters
project_id string Required
The id of the Project.
Response
{
  "data": [
    {
      "id": "3",
      "added_on": "2021-10-26T12:02:44+00:00",
      "name": "John Doe",
      "email": "[email protected]",
      "username": "johndoe",
      "phone": "012345678",
      "timezone": null,
      "group": "manager",
      "role": "admin",
      "avatar_type": null,
      "avatar_url": null,
      "avatar_gravatar_url": null,
      "avatar_file": null,
      "color": "#32abfe",
      "default_color": "#32abfe",
      "is_active": true,
      "last_seen": null,
    },
    …
  ]
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24