ReDoc documentation

customers

customers

post/V1/customers

Create customer account. Perform necessary business operations like sending email.

Request
Request Body schema:
required
object (customer-data-customer-interface)

Customer entity interface for API handling.

password
string
redirectUrl
string
Responses
200

200 Success.

500

Internal Server error

default

Unexpected error

Request samples
{
  • "customer": {
    },
  • "password": "string",
  • "redirectUrl": "string"
}
Response samples
{
  • "id": 0,
  • "group_id": 0,
  • "default_billing": "string",
  • "default_shipping": "string",
  • "confirmation": "string",
  • "created_at": "string",
  • "updated_at": "string",
  • "created_in": "string",
  • "dob": "string",
  • "email": "string",
  • "firstname": "string",
  • "lastname": "string",
  • "middlename": "string",
  • "prefix": "string",
  • "suffix": "string",
  • "gender": 0,
  • "store_id": 0,
  • "taxvat": "string",
  • "website_id": 0,
  • "addresses": [
    ],
  • "disable_auto_group_change": 0,
  • "extension_attributes": {
    },
  • "custom_attributes": [
    ]
}