POST /auth/token

Will genereate an api token from the api key

Headers

  • X-Popsell-Domain string Required

    The domain of the user

application/json

Body

  • api_key string Required

Responses

POST /auth/token
curl \
 --request POST 'https://domain.tld/api/v2/auth/token' \
 --header "Content-Type: application/json" \
 --header "X-Popsell-Domain: example.com" \
 --data '{"api_key":"string"}'
Request examples
# Headers
X-Popsell-Domain: example.com

# Payload
{
  "api_key": "string"
}
Response examples (200)
{
  "token": "string"
}
Response examples (401)
{
  "message": "Unauthorized."
}
{
  "message": "Invalid email or password"
}