GET
/
teams
/
{team_id}
Get Team Members
curl --request GET \
  --url https://api.upstash.com/v2/teams/{team_id} \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "team_id": "3423cb72-e50d-43ec-a9c0-f0f359941223",
    "team_name": "test_team_name_2",
    "member_email": "example@upstash.com",
    "member_role": "dev",
    "copy_cc": true
  }
]

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

team_id
string
required

ID of the team

Response

200 - application/json

Team members retrieved successfully

The response is of type object[].