POST
/
v1
/
contract-pricing
/
rate-cards
/
update
Update a rate card
curl --request POST \
  --url https://api.metronome.com/v1/contract-pricing/rate-cards/update \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "rate_card_id": "d7abd0cd-4ae9-4db7-8676-e986a4ebd8dc",
  "name": "My Updated Rate Card",
  "description": "My Updated Rate Card Description"
}'
{
  "data": {
    "id": "d7abd0cd-4ae9-4db7-8676-e986a4ebd8dc"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Update a rate card. Must provide at least one of name or description.

The body is of type object.

Response

Success

The response is of type object.