- Acl
- Custom PG
- CSV Import
- Menu
- Notification
- Tax
- Themes
- Customer
- customer DeletionPOST
- Add CustomerPOST
- customer verifyOtpPOST
- customerForgotPasswordPOST
- View CustomerGET
- Customer DetailsPOST
- Edit CustomerPOST
- Add Customer Subscription PlanPOST
- Get Customer Subscriptions ListPOST
- Edit Customer Subscription PlanPOST
- googleLoginPOST
- Assign Customer Subscription PlanPOST
- Customer loginPOST
- getFavLocationPOST
- Forgot PasswordPOST
- Wallet
- Loyality Points
- City
- Promo
- Order
- Search
- Marketplace
- Task
- Merchant
- Catalogue
- Business Categories
- Send SMS
- Admin
- Billing
- Project
- Discount
- Store Reviews
- checkout template
- Payment
Add Customer
POST
/open/admin/customer/add
Add Customer#
This API will add the customer.#
Name | Type | Description |
---|---|---|
api_key | string(required) | Your API-key |
first_name | string | First name of customer |
last_name | string(optional) | Last name of customer |
string | Email id of customer | |
phone_no | string | Mobile number of customer |
password | string | Desired password of customer |
Request
Body Params application/json
object {0}
Example
{
"api_key" : {{apikey}},
"first_name" : "Ankit" ,
"last_name" : "Singh" ,
"email" : "test@email.com" ,
"phone_no" : "9898981122" ,
"password" : "asdf1234"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.yelo.red/open/admin/customer/add' \
--header 'Content-Type: application/json' \
--data-raw '{
"api_key" : {{apikey}},
"first_name" : "Ankit" ,
"last_name" : "Singh" ,
"email" : "test@email.com" ,
"phone_no" : "9898981122" ,
"password" : "asdf1234"
}'
Responses
🟢200Success
application/json
Body
object {0}
Example
{}
Modified at 2024-04-17 07:11:33