POST
/
v1
/
contract-pricing
/
rate-cards
/
get
Get a rate card
curl --request POST \
  --url https://api.metronome.com/v1/contract-pricing/rate-cards/get \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "f3d51ae8-f283-44e1-9933-a3cf9ad7a6fe"
}'
{
  "data": {
    "id": "d7abd0cd-4ae9-4db7-8676-e986a4ebd8dc",
    "name": "Test rate card",
    "description": "Test rate card description",
    "fiat_credit_type": {
      "id": "2714e483-4ff1-48e4-9e25-ac732e8f24f2",
      "name": "USD (cents)"
    },
    "created_at": "2019-12-30T04:24:55.123Z",
    "created_by": "Bob",
    "aliases": [
      {
        "name": "test-rate-card"
      }
    ],
    "custom_fields": {
      "x_account_id": "KyVnHhSBWl7eY2bl"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json

The ID of the rate card to get

The body is of type object.

Response

Success

The response is of type object.