Create QR Customer
Developing
Request
Body Params application/json
{
"customerName": "string",
"customerEmail": "string",
"customerMobile": "string"
}
Request samples
curl --location --request POST '/api/v0/qr-code/customer' \
--header 'Content-Type: application/json' \
--data-raw '{
"customerName": "string",
"customerEmail": "string",
"customerMobile": "string"
}'
Responses
application/json {
"response_code": 0,
"response_message": "string",
"payload": {
"customerId": "string",
"customerName": "string",
"customerEmail": "string",
"customerMobile": "string"
}
}
Modified at 2024-07-30 10:44:09