POST
/
v1
/
contract-pricing
/
rate-cards
/
list
List rate cards
curl --request POST \
  --url https://api.metronome.com/v1/contract-pricing/rate-cards/list \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "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": [],
      "custom_fields": {
        "x_account_id": "KyVnHhSBWl7eY2bl"
      }
    }
  ],
  "next_page": null
}

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer

Max number of results that should be returned

Required range: 1 <= x <= 100
next_page
string

Cursor that indicates where the next page of results should start.

Body

application/json · object

Response

200 - application/json

Success

The response is of type object.