Authentication B2C
Authentication
Authorize Online Booking User
When a user of an online account changes their password, their API key will change and a new authorization will be required
| Attribute | Type | Description |
|---|---|---|
| login | string | The visitor's phone number in the format +13155550175, or their email address. |
| password | string | Visitor password |
post/booking/auth
Headers
Acceptstring required
e.g. application/vnd.api.v2+json
Content-Typestring required
application/json
Authorizationstring required
Bearer partner_token
Request body
Example request
{
"login": "testuser@alteg.io",
"password": "testpass"
}Response
Created
Example response
{
"id": 123456,
"user_token": "wec23fh8cDfFV4432fc352456",
"name": "James Smith",
"phone": "+13155550175",
"login": "j.smith",
"email": "j.smith@example.com",
"avatar": "https://assets.alteg.io/general/0/01/123456789098765_12345678909876.png"
}