Update a Rate Card Template

patch

/rest/v19/pricingSetup/rateCardTemplates/{templateVariableName}

Use this endpoint to update the specified rate card template.

Request

Supported Media Types
Path Parameters
Body ()
Root Schema : PricingMatrixTemplate
Type: object
Show Source
Back to Top

Response

204 Response

Success
Back to Top

Examples

The following examples show how to update the specified Rate Card Template by submitting a PATCH request to the REST resource using cURL. For more information about cURL, see Use cURL.

curl - X PATCH -H "Authorization: Bearer <token>" - H "Content-type: application/json"
https://sitename.oracle.com/rest/v19/pricingSetup/rateCardTemplates/newRateCardTemplate_c

Request Body Sample

{
  "name": "...",
  "active": false,
  "description": "..."
}
Back to Top