PATCH api/admin/stores/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
StoreAdminPatchBody| Name | Description | Type | Additional information |
|---|---|---|---|
| Name | string |
None. |
|
| Category | string |
None. |
|
| Address | string |
None. |
|
| Phone | string |
None. |
|
| Lat | decimal number |
None. |
|
| Lng | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"name": "sample string 1",
"category": "sample string 2",
"address": "sample string 3",
"phone": "sample string 4",
"lat": 1.0,
"lng": 1.0
}
application/xml, text/xml
Sample:
<StoreAdminPatchBody xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Del.Api.Models.Dtos"> <Address>sample string 3</Address> <Category>sample string 2</Category> <Lat>1</Lat> <Lng>1</Lng> <Name>sample string 1</Name> <Phone>sample string 4</Phone> </StoreAdminPatchBody>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.