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>"
}
]
}
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>"
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The collection of TeamAccessTokenData
The response is of type object
.