Magento 2 API: Create New Customer
In this article, we will be looking into how we can create a new customer in Magento 2 using its API. We will be passing the admin bearer token to authenticate the APIs. Create New Customer API Doc: https://adobe-commerce.redoc.ly/2.4.5-admin/tag/customers Endpoint: GET <host>/rest/V1/customers Authentication Bearer Token: <admin-token> Payload: { "customer": { "firstname": "Test", "lastname": "Example", "email": … Read more