PUT branch/product?field={field}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| field | string |
Required |
Body Parameters
None.
Response Information
Resource Description
BranchProduct| Name | Description | Type | Additional information |
|---|---|---|---|
| branchId | globally unique identifier |
None. |
|
| branchName | string |
None. |
|
| matched | boolean |
None. |
|
| productId | globally unique identifier |
None. |
|
| isActive | boolean |
None. |
|
| price | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"branchId": "01670d7a-6a6f-4021-90bc-3b37fb213fdd",
"branchName": "sample string 1",
"matched": true,
"productId": "cf515163-85a4-45f5-b87e-7d1d055710a9",
"isActive": true,
"price": 3.1
}
application/xml, text/xml
Sample:
<BranchProduct xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Careby.Api.Models"> <branchId>01670d7a-6a6f-4021-90bc-3b37fb213fdd</branchId> <branchName>sample string 1</branchName> <isActive>true</isActive> <price>3.1</price> <productId>cf515163-85a4-45f5-b87e-7d1d055710a9</productId> </BranchProduct>