POST api/Customer/customerSave
Request Information
URI Parameters
None.
Body Parameters
CustomerClass| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerIDP | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| PhoneCountryCode | string |
None. |
|
| PhoneNumber | string |
None. |
|
| string |
None. |
||
| Address | string |
None. |
|
| DateOfBirth | date |
None. |
|
| UserIDF | globally unique identifier |
None. |
|
| RestaurantIDF | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerIDP": "504023e7-34e9-4c41-bfff-b77e4943daa3",
"Name": "sample string 2",
"PhoneCountryCode": "sample string 3",
"PhoneNumber": "sample string 4",
"Email": "sample string 5",
"Address": "sample string 6",
"DateOfBirth": "2026-01-27T16:45:01.7186282+05:30",
"UserIDF": "7bbfab35-4ad5-461c-8f47-8d0ddf9687b4",
"RestaurantIDF": "4b4dbb8c-32bd-4f74-a307-2237a8edcbe5"
}
application/xml, text/xml
Sample:
<CustomerClass xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SQLClass"> <Address>sample string 6</Address> <CustomerIDP>504023e7-34e9-4c41-bfff-b77e4943daa3</CustomerIDP> <DateOfBirth>2026-01-27T16:45:01.7186282+05:30</DateOfBirth> <Email>sample string 5</Email> <Name>sample string 2</Name> <PhoneCountryCode>sample string 3</PhoneCountryCode> <PhoneNumber>sample string 4</PhoneNumber> <RestaurantIDF>4b4dbb8c-32bd-4f74-a307-2237a8edcbe5</RestaurantIDF> <UserIDF>7bbfab35-4ad5-461c-8f47-8d0ddf9687b4</UserIDF> </CustomerClass>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |