Create Customer Account
Create Customer in our Booking Platform when they have registered with you.
Headers
X-API-KEY
must be provided when making this request. This authorizes you to access the API.
Request
POST https://book.imin.co/api/v2/customer-accounts
This request must be made Server-side. Otherwise, it would be possible to view the secret API key with a browser.
Body:
Required fields:
@context
@type
customer.['@type']
customer.email
customer.givenName
customer.familyName
Response
An example 201 response looks like:
This mirrors the request but adds @id
and identifier
.
identifier
can be used for other Booking API operations such as GET OrderItems By Customer ID.
Last updated