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
OAuth2clientCredentialsRequired
Token URL:
OAuth2clientCredentialsRequired
Token URL:
Body
grant_typestringRequiredExample:
client_credentialsResponses
200
Success
application/json
400
Bad Request - Missing or invalid parameters
401
Unauthorized - Invalid client credentials
post
/oauth/tokenPOST /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
}Last updated
Was this helpful?

