List payment sources for a customer

List payment sources for a customer

Query Parameters
  • customer_no
    Type: integer
    required

    The customer number.

Responses
  • application/json
  • 204

    Customer has no mandates

  • 400

    Missing or invalid query parameters

  • application/json
  • application/json
Request Example for get/payment_source
curl 'https://sandbox.billogram.com/api/v2/payment_source?customer_no=1' \
  --header 'Authorization: Basic username:password'
{
  "status": "string",
  "data": [
    {
      "id": "string",
      "status": "PENDING",
      "scheme": "SEPA_DIRECT_DEBIT",
      "details": {
        "reference": "string",
        "iban": "string",
        "signed_at": "2023-02-01T00:00:00"
      }
    }
  ]
}