PUT pricebook/{id}
Sets a category.
Request Information
URI
https://ofd-api.blueprintcpq.net/pricebook/{id}
    URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| id | The identifier. | globally unique identifier | Required | 
Body Parameters
Price Book options.
UpdateProductCategory| Name | Description | Type | Additional information | 
|---|---|---|---|
| Name | string | None. | |
| Code | string | None. | |
| Colour | string | None. | |
| Graphic | globally unique identifier | None. | |
| Note | globally unique identifier | None. | |
| Parent | globally unique identifier | None. | 
Request Formats
application/json, text/json
            Sample:
        
{
  "Name": "sample string 1",
  "Code": "sample string 2",
  "Colour": "sample string 3",
  "Graphic": "cb77ee7e-22be-4ed6-8f44-b3a3ecc1676f",
  "Note": "cb139fb5-04e5-4cb4-84fe-dde51b788a52",
  "Parent": "fd81760a-3f2f-46b3-b024-08cdc6a0766e"
}
        text/html
            Sample:
        
{"Name":"sample string 1","Code":"sample string 2","Colour":"sample string 3","Graphic":"cb77ee7e-22be-4ed6-8f44-b3a3ecc1676f","Note":"cb139fb5-04e5-4cb4-84fe-dde51b788a52","Parent":"fd81760a-3f2f-46b3-b024-08cdc6a0766e"}
        application/xml, text/xml
            Sample:
        <UpdateProductCategory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Shared.Models.ConfigurationModels"> <Code>sample string 2</Code> <Colour>sample string 3</Colour> <Graphic>cb77ee7e-22be-4ed6-8f44-b3a3ecc1676f</Graphic> <Name>sample string 1</Name> <Note>cb139fb5-04e5-4cb4-84fe-dde51b788a52</Note> <Parent>fd81760a-3f2f-46b3-b024-08cdc6a0766e</Parent> </UpdateProductCategory>
application/x-www-form-urlencoded
            Sample:
    
Sample not available.
Response Information
Resource Description
True if it succeeds, false if it fails.
booleanResponse Formats
application/json, text/json, text/html
            Sample:
        true
application/xml, text/xml
            Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>