Printago API
POST
/v1/orders/customers
Create a new customer
Request Body
Customer information (requires at least name, email, or phone)
CreateCustomerDto
emailoptional
string
nameoptional
string
phoneoptional
string
Example Request
application/json
{}
Response Schema
Customer
countryCodeoptional
string
createdAtrequired
string
format: date-time
emailoptional
string
externalIdoptional
string
idrequired
string
pattern: ^[a-z0-9]{24}$
nameoptional
string
phoneoptional
string
provinceCodeoptional
string
sourceoptional
any
storeIdrequired
string
pattern: ^[a-z0-9]{24}$
updatedAtrequired
string
format: date-time
zipCodeoptional
string
Example Response
201 OK — application/json
{
"id": "string",
"storeId": "string",
"createdAt": "2026-08-24T03:58:55.683Z",
"updatedAt": "2026-08-24T03:58:55.683Z"
}