Skip to main content
POST
/
api
/
v1
/
oauth
/
token
Token
curl --request POST \
  --url https://platform.unstructuredapp.io/api/v1/oauth/token \
  --header 'Content-Type: application/json' \
  --data '
{
  "device_code": "<string>",
  "grant_type": "urn:ietf:params:oauth:grant-type:device_code",
  "client_id": "concierge"
}
'
{
  "access_token": "<string>",
  "token_type": "api_key"
}

Body

application/json
device_code
string
required
grant_type
string
default:urn:ietf:params:oauth:grant-type:device_code
client_id
string
default:concierge

Response

Successful Response

access_token
string
required
token_type
string
default:api_key