Skip to main content
POST
/
auth
/
token
Request access token
curl --request POST \
  --url https://api.jonahanderson.me/auth/token \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "recruiter@example.com"
}
'
{
  "access_token": "YOUR_TOKEN",
  "token_type": "Bearer"
}

Body

application/json

Payload used to request a signed bearer token.

email
string<email>
required

Email address used for the auth request notification and token issuance.

Example:

"recruiter@example.com"

Response

Signed bearer token issued.

Signed bearer token returned after a successful auth request.

access_token
string
required

Signed bearer token to send on protected endpoints.

Example:

"YOUR_TOKEN"

token_type
enum<string>
required

Authorization scheme for the returned token.

Available options:
Bearer
Example:

"Bearer"