Create Customer
This API offering to Create Customer.
POST
{{Base_url}}/rest/V1/customers
This endpoint is used to create a new customer account in a Magento store. It allows administrators or third-party integrations to programmatically add customers. They can gain access to several features and benefits that enhance their shopping experience.
Body
Root-Level Attributes
customer
Contains all the details about the customer being created. It is an object encapsulating customer-specific fields.
password
The password for the customer's account, used for login purposes.
Attributes within customer
customer
group_id
The ID of the customer group to which the customer belongs (e.g., General, Wholesale, or Retail).
created_in
The name of the store view where the account was created.
email
The customer's email address, used as the login username.
firstname
The first name of the customer.
lastname
The last name of the customer.
store_id
The ID of the store view associated with the customer.
website_id
The ID of the website where the customer account is being created.
custom_attributes
An array of custom attributes specific to the customer. Each custom attribute is represented as an object.
Attributes within custom_attributes
custom_attributes
attribute_code
The code of the custom attribute being set (e.g.,
mobile_number
).
value
The value assigned to the corresponding custom attribute (e.g.,
1234567890
formobile_number
).
Responses
id
The unique identifier of the customer in Magento (primary key for the customer record).
group_id
The ID of the customer group. This determines the customer's pricing and tax rules (e.g., General, Wholesale).
created_at
The timestamp when the customer account was created (
YYYY-MM-DD HH:MM:SS
format).
updated_at
The timestamp of the last update made to the customer account (
YYYY-MM-DD HH:MM:SS
format).
created_in
The name of the store view where the customer account was created (e.g., "Default Store View").
email
The email address associated with the customer account, used as their login username.
firstname
The first name of the customer.
lastname
The last name of the customer.
store_id
The ID of the store view to which the customer is associated.
website_id
The ID of the website where the customer account is registered.
addresses
An empty array because the customer currently has no saved addresses.
disable_auto_group_change
A flag that indicates whether the customer can be automatically moved to another group.
Value
0
: Auto-group change is allowed.Value
1
: Auto-group change is disabled.
Extension Attributes
is_subscribed
A boolean flag indicating whether the customer is subscribed to the newsletter.
false
: The customer is not subscribed.
Custom Attributes
The custom_attributes
array contains custom fields for the customer.
attribute_code
The code of the custom attribute (e.g.,
mobile_number
).
value
The value of the custom attribute (e.g.,
1234567890
).
Last updated