cURL
curl --request GET \ --url http://sandbox.mintlify.com/v1/teams \ --header 'Authorization: Bearer <token>'
{ "success": true, "data": [ { "id": 1, "name": "Acme Corporation", "username": "acme-corp", "about": "Leading provider of innovative solutions", "logo": "https://example.com/logos/acme.png" } ] }
Returns all teams that the user is a member of
true
Show Team properties
null
{ "success": false, "error": { "code": "VALIDATION_ERROR", "message": "The given data was invalid." } }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Teams response
Indicates whether the request was successful
The response data. Can be an object, array, or null
Show child attributes