cURL
curl --request GET \ --url http://sandbox.mintlify.com/v1/teams/{id} \ --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 a single team by ID
true
Show Team properties
null
{ "success": false, "error": { "code": "NOT_FOUND", "message": "Team not found." } }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
ID of team
Team response
Indicates whether the request was successful
The response data. Can be an object, array, or null
Show child attributes