Teams
List the teams inside an organization.
Uses the Authorization header: 'AccessKey ' followed by your access key token (e.g., 'Authorization: AccessKey AbCdEfGhIjKlMnOpQrStUvWxYzAbCdEfGhIj')
The organization ID
Limits the number of results to return
10Order in which to retrieve the results
falsePagination token that keeps of track of the current position in the list
OK
Resource not found
GET /organizations/{organizationId}/teams HTTP/1.1
Host: api.bird.com
Authorization: AccessKey YOUR_SECRET_TOKEN
Accept: */*
{
"results": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"description": "text",
"visibility": "public",
"accessibility": "open",
"activeMemberCount": 1,
"pendingMemberCount": 1,
"featuredMembers": [
{
"type": "user",
"id": "123e4567-e89b-12d3-a456-426614174000"
}
],
"roleRefs": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"type": "organization",
"workspaces": [
"123e4567-e89b-12d3-a456-426614174000"
]
}
],
"createdAt": "2025-11-27T03:50:53.094Z",
"updatedAt": "2025-11-27T03:50:53.094Z"
}
],
"nextPageToken": "text"
}Create a new team inside the organization.
Uses the Authorization header: 'AccessKey ' followed by your access key token (e.g., 'Authorization: AccessKey AbCdEfGhIjKlMnOpQrStUvWxYzAbCdEfGhIj')
The organization ID
OK
Resource not found
Request validation failed
POST /organizations/{organizationId}/teams HTTP/1.1
Host: api.bird.com
Authorization: AccessKey YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 171
{
"name": "text",
"description": "text",
"roleRefs": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"type": "organization",
"workspaces": [
"123e4567-e89b-12d3-a456-426614174000"
]
}
]
}{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"description": "text",
"visibility": "public",
"accessibility": "open",
"activeMemberCount": 1,
"pendingMemberCount": 1,
"featuredMembers": [
{
"type": "user",
"id": "123e4567-e89b-12d3-a456-426614174000"
}
],
"roleRefs": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"type": "organization",
"workspaces": [
"123e4567-e89b-12d3-a456-426614174000"
]
}
],
"createdAt": "2025-11-27T03:50:53.094Z",
"updatedAt": "2025-11-27T03:50:53.094Z"
}Retrieve a single team.
Uses the Authorization header: 'AccessKey ' followed by your access key token (e.g., 'Authorization: AccessKey AbCdEfGhIjKlMnOpQrStUvWxYzAbCdEfGhIj')
The organization ID
ID for a team
OK
Resource not found
GET /organizations/{organizationId}/teams/{teamId} HTTP/1.1
Host: api.bird.com
Authorization: AccessKey YOUR_SECRET_TOKEN
Accept: */*
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"description": "text",
"visibility": "public",
"accessibility": "open",
"activeMemberCount": 1,
"pendingMemberCount": 1,
"featuredMembers": [
{
"type": "user",
"id": "123e4567-e89b-12d3-a456-426614174000"
}
],
"roleRefs": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"type": "organization",
"workspaces": [
"123e4567-e89b-12d3-a456-426614174000"
]
}
],
"createdAt": "2025-11-27T03:50:53.094Z",
"updatedAt": "2025-11-27T03:50:53.094Z"
}Delete a team from an organization.
Uses the Authorization header: 'AccessKey ' followed by your access key token (e.g., 'Authorization: AccessKey AbCdEfGhIjKlMnOpQrStUvWxYzAbCdEfGhIj')
The organization ID
ID for a team
OK
Resource not found
DELETE /organizations/{organizationId}/teams/{teamId} HTTP/1.1
Host: api.bird.com
Authorization: AccessKey YOUR_SECRET_TOKEN
Accept: */*
No content
Update a team's details.
Uses the Authorization header: 'AccessKey ' followed by your access key token (e.g., 'Authorization: AccessKey AbCdEfGhIjKlMnOpQrStUvWxYzAbCdEfGhIj')
The organization ID
ID for a team
OK
Resource not found
Request validation failed
PATCH /organizations/{organizationId}/teams/{teamId} HTTP/1.1
Host: api.bird.com
Authorization: AccessKey YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 171
{
"name": "text",
"description": "text",
"roleRefs": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"type": "organization",
"workspaces": [
"123e4567-e89b-12d3-a456-426614174000"
]
}
]
}{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"description": "text",
"visibility": "public",
"accessibility": "open",
"activeMemberCount": 1,
"pendingMemberCount": 1,
"featuredMembers": [
{
"type": "user",
"id": "123e4567-e89b-12d3-a456-426614174000"
}
],
"roleRefs": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"type": "organization",
"workspaces": [
"123e4567-e89b-12d3-a456-426614174000"
]
}
],
"createdAt": "2025-11-27T03:50:53.094Z",
"updatedAt": "2025-11-27T03:50:53.094Z"
}Last updated
Was this helpful?

