Skip to main content
POST
/
v1
/
auth
/
device
/
finish
Finish Device Login
curl --request POST \
  --url https://almanac-backend-83vc.onrender.com/v1/auth/device/finish \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "device_code": "<string>"
}
'
{
  "access_token": "<string>",
  "refresh_token": "<string>",
  "organization_id": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
device_code
string
required

Response

Successful Response

access_token
string
required
refresh_token
string
required
organization_id
string | null