curl --request GET \
--url https://developer.synq.io/api/iam/v1 \
--header 'Authorization: Bearer <token>'
{
"workspace": "<string>",
"scopes": [
"SCOPE_UNSPECIFIED"
],
"scopeNames": [
"<string>"
],
"integrationId": "<string>",
"subject": "<string>"
}
Iam returns information about caller authentication
curl --request GET \
--url https://developer.synq.io/api/iam/v1 \
--header 'Authorization: Bearer <token>'
{
"workspace": "<string>",
"scopes": [
"SCOPE_UNSPECIFIED"
],
"scopeNames": [
"<string>"
],
"integrationId": "<string>",
"subject": "<string>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Success
The response is of type object
.