Skip to main content
GET
/
billPaymentMethods
List bill payment methods
curl --request GET \
  --url https://rest.staging.nickel.com/billPaymentMethods \
  --header 'Authorization: Bearer <token>'
{
  "billPaymentMethods": [
    {
      "id": "<string>",
      "type": "ACH",
      "achDetails": {
        "bankName": "JP Morgan Chase",
        "routingNumber": "<string>",
        "accountNumberLastFour": "<string>"
      },
      "cardDetails": {
        "brand": "visa",
        "last4": "<string>",
        "holderName": "<string>",
        "expMonth": "2",
        "expYear": "2030"
      },
      "billingDetails": {
        "name": "<string>",
        "companyName": "<string>",
        "street": "<string>",
        "city": "<string>",
        "state": "<string>",
        "zip": "<string>",
        "email": "<string>"
      }
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://dev.nickel.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Response

Successful operation

billPaymentMethods
object[]