POST api/Store/UpdateStoreDetail
Request Information
URI Parameters
None.
Body Parameters
StoreEntity| Name | Description | Type | Additional information |
|---|---|---|---|
| PK_Store_Id | integer |
None. |
|
| FK_Org_Id | integer |
None. |
|
| Store_Name | string |
Required |
|
| Status | integer |
None. |
|
| Created_By | string |
None. |
|
| Created_Date | date |
None. |
|
| Modified_By | string |
None. |
|
| Modified_Date | date |
None. |
|
| Logo | string |
None. |
|
| Website_URL | string |
None. |
|
| Store_Address | string |
Required |
|
| fu_doc | HttpPostedFileBase |
None. |
Request Formats
application/json, text/json
Sample:
{
"pK_Store_Id": 1,
"fK_Org_Id": 2,
"store_Name": "sample string 3",
"status": 4,
"created_By": "sample string 5",
"created_Date": "2025-12-24T09:49:14.0331118+05:30",
"modified_By": "sample string 6",
"modified_Date": "2025-12-24T09:49:14.0331118+05:30",
"logo": "sample string 7",
"website_URL": "sample string 8",
"store_Address": "sample string 9",
"fu_doc": null
}
text/xml
Sample:
<StoreEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities"> <Created_By>sample string 5</Created_By> <Created_Date>2025-12-24T09:49:14.0331118+05:30</Created_Date> <FK_Org_Id>2</FK_Org_Id> <Logo>sample string 7</Logo> <Modified_By>sample string 6</Modified_By> <Modified_Date>2025-12-24T09:49:14.0331118+05:30</Modified_Date> <PK_Store_Id>1</PK_Store_Id> <Status>4</Status> <Store_Address>sample string 9</Store_Address> <Store_Name>sample string 3</Store_Name> <Website_URL>sample string 8</Website_URL> <fu_doc xmlns:d2p1="http://schemas.datacontract.org/2004/07/System.Web" i:nil="true" /> </StoreEntity>
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. |