POST api/Branch/UpdateBranchDetail

Request Information

URI Parameters

None.

Body Parameters

BranchEntity
NameDescriptionTypeAdditional information
PK_Branch_Id

integer

None.

FK_Store_Id

integer

Required

Branch_Name

string

None.

Branch_Address

string

None.

Status

integer

None.

Created_By

string

None.

Created_Date

date

None.

Modified_By

string

None.

Modified_Date

date

None.

FK_Org_Id

integer

None.

Store_Name

string

None.

Request Formats

application/json, text/json

Sample:
{
  "pK_Branch_Id": 1,
  "fK_Store_Id": 2,
  "branch_Name": "sample string 3",
  "branch_Address": "sample string 4",
  "status": 5,
  "created_By": "sample string 6",
  "created_Date": "2024-09-20T09:10:05.9844798+05:30",
  "modified_By": "sample string 7",
  "modified_Date": "2024-09-20T09:10:05.9844798+05:30",
  "fK_Org_Id": 8,
  "store_Name": "sample string 9"
}

text/xml

Sample:
<BranchEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities">
  <Branch_Address>sample string 4</Branch_Address>
  <Branch_Name>sample string 3</Branch_Name>
  <Created_By>sample string 6</Created_By>
  <Created_Date>2024-09-20T09:10:05.9844798+05:30</Created_Date>
  <FK_Org_Id>8</FK_Org_Id>
  <FK_Store_Id>2</FK_Store_Id>
  <Modified_By>sample string 7</Modified_By>
  <Modified_Date>2024-09-20T09:10:05.9844798+05:30</Modified_Date>
  <PK_Branch_Id>1</PK_Branch_Id>
  <Status>5</Status>
  <Store_Name>sample string 9</Store_Name>
</BranchEntity>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.