cURL
curl --request GET \ --url https://api.upstash.com/v2/teams \ --header 'Authorization: Basic <encoded-value>'
[ { "team_id": "95849b27-40d0-4532-8695-d2028847f823", "team_name": "test_team_name", "copy_cc": true } ]
This endpoint lists all teams of user.
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
Teams retrieved successfully
The response is of type object[].
object[]
Was this page helpful?