Skip to main content
POST
/
api
/
accounts
/
authenticate-guest
cURL
curl --request POST \
  --url https://api.pricenow.dev/api/accounts/authenticate-guest \
  --header 'Content-Type: application/json' \
  --header 'accept-language: <accept-language>' \
  --header 'pratiq-channel-uuid: <pratiq-channel-uuid>' \
  --data '
{
  "email": "<string>",
  "language": "en"
}
'
{
  "data": {
    "id": "<string>",
    "email": "<string>",
    "access_token": "<string>"
  }
}

Headers

accept-language
enum<string>
required

Language of the response

Available options:
en,
de,
fr,
it
pratiq-channel-uuid
string
required

UUID of the sales channel

Body

application/json
email
string
required
language
enum<string>
required
Available options:
en,
de,
fr,
it

Response

200 - application/json

Successful response

data
object
required