POST api/SellerAccount/SaveSellerDetails
Request Information
URI Parameters
None.
Body Parameters
ReqSignUpSeller| Name | Description | Type | Additional information |
|---|---|---|---|
| Logo | string |
None. |
|
| BusinessName | string |
Required Matching regular expression pattern: ^[a-zA-Z ]*$ String length: inclusive between 3 and 250 |
|
| Address | string |
Required String length: inclusive between 3 and 500 |
|
| Latitude | decimal number |
None. |
|
| Longitude | decimal number |
None. |
|
| AddressDetail | AddressDetail |
None. |
Request Formats
application/json, text/json
Sample:
{
"Logo": "sample string 1",
"BusinessName": "sample string 2",
"Address": "sample string 3",
"Latitude": 4.0,
"Longitude": 5.0,
"AddressDetail": {
"LocalityName": "sample string 1",
"City": "sample string 2",
"District": "sample string 3",
"State": "sample string 4",
"PinCode": "sample string 5"
}
}
application/xml, text/xml
Sample:
<ReqSignUpSeller xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NEOWAY.Models.Request.Account">
<Address>sample string 3</Address>
<AddressDetail>
<City>sample string 2</City>
<District>sample string 3</District>
<LocalityName>sample string 1</LocalityName>
<PinCode>sample string 5</PinCode>
<State>sample string 4</State>
</AddressDetail>
<BusinessName>sample string 2</BusinessName>
<Latitude>4</Latitude>
<Logo>sample string 1</Logo>
<Longitude>5</Longitude>
</ReqSignUpSeller>
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. |