OAuth2 Authenticate
Released in 20.13. Authenticates the API caller on the Symphony servers (pod) using a Session token, and returns a valid OAuth2 access token.
Used to interact with the File Management endpoints. Required Role: Your Service Account must have the Content Export Reader role.
Optional field used to get access with specific entitlements, use space separated list to define more than one. Use scope 'sym-files' in order get access to the Content Export Files endpoints.
User session authentication token
OK.
Type of token, string "Bearer"
BearerDuration of time the access token is granted for in seconds
3600A JWT containing the caller's username or application, an expiration date and a set of entitlements related to the specified scope.
Client is unauthorized to access this resource
Forbidden to access this endpoint.
Server error, see response body for further details.
POST /login/idm/tokens HTTP/1.1
Host: yourpodURL.symphony.com
sessionToken: text
Accept: */*
{
"token_type": "Bearer",
"expires_in": 3600,
"access_token": "text"
}Last updated
Was this helpful?