v1
latestOpenAPI 3.1.02026-08-04164270844.7 KBAuthentication
Create an access token
Creates an OAuth access token using the client_id and client_secret credentials. Once generated, the token authorizes access to the 360Learning API v2 resources for 1 hour. It must be included in the Authorization header of each request as Bearer.
post/api/v2/oauth2/token
Request body
Example request
{
"client_id": "00918d22e6cd4dd0bf751241853ec641",
"client_secret": "de831d67bd4245bc950867ca49b5ebc2",
"user_id": "624c5526204fc7207e603123"
}Response
Returns an access token that must be used in all your calls to public API endpoints.
Example response
{
"access_token": "eyJhbGciOiJSUzI1NiIsInR5cCIgOiAiSldUIiwia2lkIiA6ICJBaU1qdVNjLW9pelVYWHBZVnZWbDZrSklsb2FNWDNWYzZSdWp4QnlPX05FIn0"
}