The value of the access token. This value will be added to the Authorization header of all Conga Sign API calls.
expires_in
The expiration date of your access token. When your access token expires, your application will have to request a new access token.
scope
The resources you are requesting access to. This should be sign.
grant_type
The method of authentication that is used. Using Client Id and Client Secret, this grant type should be client_credentials .
The access token granted by JWT Grant expires at the given time, and no refresh token is provided. After the token expires, you must reauthenticate for a new access token.
Otherwise, the operation may return one of the following errors:
Response code and body
Description
400 {"error":"ERROR_AUTHENTICATION_HEADER"}
Invalid headers. Example header: Authorization: Basic <ENCODED_CREDENTIALS>
400 {"error":"ERROR_AUTHENTICATION_NOT_VALID"}
The request could not be authorized. Make sure you provided the correct credential.