Teams

Get teams.

get
Authorizations
AuthorizationstringRequired

The Bearer API key of your user more info.

Query parameters
start-indexinteger · int32Optional

an integer specifying the starting point (beginning with 0) when paging through a list of entities

Default: 0
max-resultsinteger · int32 · max: 100Optional

the maximum number of results when paging through a list of entities.

Default: 50
membersnumberOptional

optional, filter teams for specific members (currently only a single occurrence of this param is allowed)

Responses
200

The teams

application/json
get
/teams
200

The teams

Create a new team.

post
Authorizations
AuthorizationstringRequired

The Bearer API key of your user more info.

Body
idinteger · int64Optional
namestringOptional
visibilitystring · enumOptionalPossible values:
createdAtstring · date-timeOptional

Date in ISO-8601

updatedAtstring · date-timeOptional

Date in ISO-8601

Responses
200

The newly created team

application/json
post
/teams
200

The newly created team

Get a specific team.

get
Authorizations
AuthorizationstringRequired

The Bearer API key of your user more info.

Path parameters
idnumberRequired

entity ID

Responses
200

The requested team

application/json
get
/teams/{id}
200

The requested team

Update the specific team

put
Authorizations
AuthorizationstringRequired

The Bearer API key of your user more info.

Path parameters
idnumberRequired

entity ID

Body
idinteger · int64Optional
namestringOptional
visibilitystring · enumOptionalPossible values:
createdAtstring · date-timeOptional

Date in ISO-8601

updatedAtstring · date-timeOptional

Date in ISO-8601

Responses
200

The updated team

application/json
put
/teams/{id}
200

The updated team

Remove a specific team.

delete
Authorizations
AuthorizationstringRequired

The Bearer API key of your user more info.

Path parameters
idnumberRequired

entity ID

Responses
delete
/teams/{id}
204

Empty body delete response

No content

Add a new team member to specific team

post
Authorizations
AuthorizationstringRequired

The Bearer API key of your user more info.

Path parameters
idnumberRequired

entity ID

Body
rolestring · enumOptionalPossible values:
Responses
200

The added team member

application/json
post
/teams/{id}/members
200

The added team member

Remove a specific member of a specific team.

delete
Authorizations
AuthorizationstringRequired

The Bearer API key of your user more info.

Path parameters
idnumberRequired

entity ID

Responses
delete
/teams/{id}/members/{id}
204

Empty body delete response

No content

Last updated

Was this helpful?