Skip to content

Create Customer

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/customers

Body:

{
"email": {{ customerEmail }},
"givenName": {{ customerGivenName }},
"familyName": {{ customerFamilyName }},
"imin:is13OrOver": {{ customerIs13OrOver }}
}

Response

An example 201 response looks like:

{
"type": "Person",
"id": "https://book.imin.co/api/v2/customers/{{ customerIdentifier }}",
"identifier":{{ customerIdentifier }},
"givenName":{{ customerGivenName }},
"familyName":{{ customerFamilyName }},
"email": {{ customerEmail }},
"imin:is13OrOver": {{ customerIs13OrOver }}
}

The returned identifier can be used for other Booking API operations such as GET OrderItems By Customer ID.