Members
List the members of the team.
Uses the Authorization header: 'AccessKey ' followed by your access key token (e.g., 'Authorization: AccessKey AbCdEfGhIjKlMnOpQrStUvWxYzAbCdEfGhIj')
The organization ID
ID for a team
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/{teamId}/members HTTP/1.1
Host: api.bird.com
Authorization: AccessKey YOUR_SECRET_TOKEN
Accept: */*
{
"results": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"type": "user",
"status": "active",
"createdAt": "2025-11-27T04:42:37.544Z",
"updatedAt": "2025-11-27T04:42:37.544Z"
}
],
"nextPageToken": "text"
}Add a member to the 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
The resource already exists
Request validation failed
POST /organizations/{organizationId}/teams/{teamId}/members HTTP/1.1
Host: api.bird.com
Authorization: AccessKey YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 59
{
"type": "user",
"id": "123e4567-e89b-12d3-a456-426614174000"
}{
"results": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"type": "user",
"status": "active",
"createdAt": "2025-11-27T04:42:37.544Z",
"updatedAt": "2025-11-27T04:42:37.544Z"
}
]
}Retrieve a single team member.
Uses the Authorization header: 'AccessKey ' followed by your access key token (e.g., 'Authorization: AccessKey AbCdEfGhIjKlMnOpQrStUvWxYzAbCdEfGhIj')
The organization ID
ID for a team
ID for a team member
OK
Resource not found
GET /organizations/{organizationId}/teams/{teamId}/members/{teamMemberId} HTTP/1.1
Host: api.bird.com
Authorization: AccessKey YOUR_SECRET_TOKEN
Accept: */*
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"type": "user",
"status": "active",
"createdAt": "2025-11-27T04:42:37.544Z",
"updatedAt": "2025-11-27T04:42:37.544Z"
}Remove a member from a team.
Uses the Authorization header: 'AccessKey ' followed by your access key token (e.g., 'Authorization: AccessKey AbCdEfGhIjKlMnOpQrStUvWxYzAbCdEfGhIj')
The organization ID
ID for a team
ID for a team member
OK
Resource not found
DELETE /organizations/{organizationId}/teams/{teamId}/members/{teamMemberId} HTTP/1.1
Host: api.bird.com
Authorization: AccessKey YOUR_SECRET_TOKEN
Accept: */*
No content
Last updated
Was this helpful?

