GET
/
v1
/
platform
/
team
/
tokens
cURL
curl --request GET \
  --url https://api.comm.com/api/v1/platform/team/tokens \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "access_token": "<string>",
      "scopes": {
        "data": [
          {
            "method": "get",
            "endpoint": "<string>",
            "reason": "<string>"
          }
        ]
      },
      "team_id": "<string>",
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json

The collection of TeamAccessTokenData

The response is of type object.