Will create a guest user to use the API and return the token
POST
/auth/guest
curl \
--request POST 'https://domain.tld/api/v2/auth/guest' \
--header "X-Popsell-Domain: example.com"
Response examples (200)
{
"token": "string"
}
Response examples (401)
Unauthorized
{
"message": "Unauthorized."
}
{
"message": "Invalid email or password"
}