Authentication

The following endpoint provides the Oauth2 client credentials flow

Get Bearer Token

post

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
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?