Authentication
The following endpoint provides the Oauth2 client credentials flow
Exchange the credentials (client ID and client secret) for a bearer token. Find these details in OpenApply's API Manager
Authorizations
Body
grant_typestringRequiredExample:
client_credentials
Responses
200
Success
application/json
400
Bad Request - Missing or invalid parameters
401
Unauthorized - Invalid client credentials
post
POST /oauth/token HTTP/1.1
Host: api.openapply.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 35
"grant_type='client_credentials'"
{
"access_token": "your_access_token",
"token_type": "bearer",
"expires_in": 3600
}
Was this helpful?