Teams

List teams

get

List the teams inside an organization.

Authorizations
HTTPRequired

Uses the Authorization header: 'AccessKey ' followed by your access key token (e.g., 'Authorization: AccessKey AbCdEfGhIjKlMnOpQrStUvWxYzAbCdEfGhIj')

Path parameters
organizationIdstringRequired

The organization ID

Query parameters
limitinteger · min: 1 · max: 100Optional

Limits the number of results to return

Default: 10
reversebooleanOptional

Order in which to retrieve the results

Default: false
pageTokenstringOptional

Pagination token that keeps of track of the current position in the list

Responses
200

OK

application/json
get
/organizations/{organizationId}/teams

Create team

post

Create a new team inside the organization.

Authorizations
HTTPRequired

Uses the Authorization header: 'AccessKey ' followed by your access key token (e.g., 'Authorization: AccessKey AbCdEfGhIjKlMnOpQrStUvWxYzAbCdEfGhIj')

Path parameters
organizationIdstringRequired

The organization ID

Body
namestring · min: 1 · max: 256Required
descriptionstring · max: 256Required
Responses
post
/organizations/{organizationId}/teams

Get team

get

Retrieve a single team.

Authorizations
HTTPRequired

Uses the Authorization header: 'AccessKey ' followed by your access key token (e.g., 'Authorization: AccessKey AbCdEfGhIjKlMnOpQrStUvWxYzAbCdEfGhIj')

Path parameters
organizationIdstringRequired

The organization ID

teamIdstringRequired

ID for a team

Responses
200

OK

application/json
get
/organizations/{organizationId}/teams/{teamId}

Delete team

delete

Delete a team from an organization.

Authorizations
HTTPRequired

Uses the Authorization header: 'AccessKey ' followed by your access key token (e.g., 'Authorization: AccessKey AbCdEfGhIjKlMnOpQrStUvWxYzAbCdEfGhIj')

Path parameters
organizationIdstringRequired

The organization ID

teamIdstringRequired

ID for a team

Responses
delete
/organizations/{organizationId}/teams/{teamId}

No content

Update team

patch

Update a team's details.

Authorizations
HTTPRequired

Uses the Authorization header: 'AccessKey ' followed by your access key token (e.g., 'Authorization: AccessKey AbCdEfGhIjKlMnOpQrStUvWxYzAbCdEfGhIj')

Path parameters
organizationIdstringRequired

The organization ID

teamIdstringRequired

ID for a team

Body
namestring · min: 1 · max: 256Optional
descriptionstring · max: 256Optional
Responses
200

OK

application/json
patch
/organizations/{organizationId}/teams/{teamId}

Last updated

Was this helpful?