Skip to main content
POST
/
organizations
/
{organizationId}
/
token
Request a scoped token for an organization
curl --request POST \
  --url https://api.recruitifi.com/v1/organizations/{organizationId}/token \
  --header 'Authorization: Bearer <token>'
{
  "access_token": "eyJhbGciOiJIUzI...",
  "token_type": "Bearer",
  "expires_in": 86400,
  "scope": "<organizationId>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the Partner OAuth 2.0 Client Credentials grant flow.

Path Parameters

organizationId
string
required

Response

Scoped token generated

access_token
string
Example:

"eyJhbGciOiJIUzI..."

token_type
enum<string>
Available options:
Bearer
expires_in
enum<integer>
Available options:
86400
scope
string
Example:

"<organizationId>"