Update details of an existing pricebook entry.
PUT
/pricebook/{pricebookID}
curl \
-X PUT http://api.example.com/pricebook/{pricebookID} \
-H "Content-Type: application/json" \
-d '{"pricebookID":42,"BookName":"string","description":"string","industry":"string","status":"string","companyID":42,"createdBy":42,"updatedBy":42}'
Request example
{
"pricebookID": 42,
"BookName": "string",
"description": "string",
"industry": "string",
"status": "string",
"companyID": 42,
"createdBy": 42,
"updatedBy": 42
}