Authentication
How to obtain and use the Access Token (JWT)
1. Get your ClientID and Secret
2. Requesting the Access Token
Issues a JSON Web Token (JWT) to be used in subsequent to API calls.
The received JWT (see access_token property in the Responses section)
needs to be passed in the header of every upcoming service call as a
Bearer token.
Note that this is a short lived token, it needs to be renewed periodically. Typically expires in one hour.
Successful operation
The answer received as a result of successful authorization.
JSON Web Token, that grants access to the targeted Instructure services. Note that this is a short lived token, it needs to be renewed periodically. Typically expires in one hour.
The expiration time of the access_token in seconds.
3599Specifies the scope, the institute (principal), the partner and the
region for which the access_token was issued. These values are
separated with a white space in the form of SERVICE_ID principal:PRINCIPAL_ID partner:PARTNER_ID region:REGION_ID.
SERVICE_ID principal:PRINCIPAL_ID partner:PARTNER_ID region:REGION_IDThe type of the access token.
bearerThe request could not be understood due to malformed syntax
Request forbidden due to missing/invalid authentication information
3. Using the Access Token
Last updated
Was this helpful?