Ramp · Example Payload

Ramp List Cards Example

FinanceSpend ManagementCorporate CardsExpense ManagementAccounts PayableBill PayAccountingReimbursements

Ramp List Cards Example is an example object payload from Ramp, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://api.ramp.com/developer/v1/cards",
    "headers": {
      "Authorization": "Bearer {access_token}",
      "Content-Type": "application/json"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "data": [
        {
          "id": "card_01HZ5T8KQ9NVXG3PBYA7C2F6A",
          "cardholder_id": "usr_01HZ5T8KQ9NVXG3PBYA7C2F6B",
          "display_name": "Engineering Team - AWS",
          "last_four": "4242",
          "state": "ACTIVE",
          "is_physical": false,
          "spending_restrictions": {
            "amount": 5000.00,
            "interval": "MONTHLY"
          }
        },
        {
          "id": "card_01HZ5T8KQ9NVXG3PBYA7C2F6C",
          "cardholder_id": "usr_01HZ5T8KQ9NVXG3PBYA7C2F6D",
          "display_name": "Marketing - Software",
          "last_four": "8888",
          "state": "ACTIVE",
          "is_physical": false,
          "spending_restrictions": {
            "amount": 2000.00,
            "interval": "MONTHLY"
          }
        }
      ],
      "page": {
        "next": null,
        "previous": null
      }
    }
  }
}