Skip to main content
POST
/
daemon
/
redeem-install-token
Redeem Install Token
curl --request POST \
  --url https://api.hyperspell.com/daemon/redeem-install-token \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'X-As-User: <api-key>' \
  --data '
{
  "install_token": "<string>"
}
'
{
  "token": "<string>",
  "app_slug": "<string>",
  "api_url": "<string>",
  "user_key": "<string>",
  "email": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.hyperspell.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API Key or JWT User Token. If using an API Key, set the X-As-User header to act as a specific user. A JWT User Token is always scoped to a specific user.

X-As-User
string
header
required

Optionally set this header to act as a specific user when using an API Key, equivalent to first exchanging the API Key for a User Token

Body

application/json
install_token
string
required

Response

Successful Response

token
string
required
app_slug
string
required
api_url
string
required
user_key
string
required
email
string
required