Customers
Create Customer
POST/customers
This endpoint allows you to create Customers within your store at Salla by providing the required data in this endpoint.
:::tip[Note]
You may need t...
List Customers
GET/customers
This endpoint lets you list all customers associated with your store and filter them using a keyword. It retrieves customers whose "mobile number...
Customer Details
GET/customers/{customer}
This endpoint allows you to return a specific customer's details by passing the customer as a path parameter.
:::info[]The rate limit for the cus...
Update Customer
PUT/customers/{customer}
This endpoint allows you to update customer details by passing the customer as a path parameter.
:::tip[Note]The existing values of all skipped param...
Delete Customer
DELETE/customers/{customer}
This endpoint allows you to delete a customer from the store customers list by passing the customer as a path parameter.
`customers.read_write`- Cus...
Ban Customer
PUT/customers/blacklist/{customer}
This endpoint allows you to ban, aka Add to blacklist, one of your customers by passing the customer as a path parameter.
:::tip[Note]Even though ban...
Un-Ban customer
DELETE/customers/blacklist/{customer}
This endpoint allows you to ub-ban (remove from blacklist) one of banned customers by passing the customer as a path parameter.
`customers.read_writ...
Import Customers
POST/customers/import
This endpoint allows you to import customers from an Excel file.
:::info[Information]Check this Merchants Help Desk article for more.:::customers.rea...