RCUR API docs
Back to RCURSupport
  • Getting Started
    • Authentication
    • Rate limits
  • Customers API
    • List customers
    • Get customer
    • Create customer
    • Update customer
    • Delete customer
  • Customer Mandates API
    • List mandates
    • Get mandate
    • Create mandate
    • Revoke mandate
  • Subscriptions API
    • List subscriptions
    • Get subscription
    • Create subscription
    • Cancel subscription
  • Links API
    • List links
    • Get link
    • Delete link
  • Follow-ups API
    • List follow-ups
    • Get follow-up
    • Update follow-up
  • Orders API
    • List orders
    • Get order
  • Products API
    • List products
    • Get product
    • Create product
    • Update product
    • Delete product
  • Payments API
    • List payments
    • Get payment
  • Organizations API
    • Me
Powered by GitBook
On this page

Was this helpful?

Edit on GitHub
  1. Customer Mandates API

List mandates

GET https://rcur.app/api/v2/customers/{customerId}/mandates

Path Parameters

Name
Type
Description

{customerId}*

String

The ID of the customer

{
    "data": [
        {
            "id": "mdt_f8D2mMkVk",
            "method": "directdebit",
            "status": "valid",
            "custom_mandate_reference": null,
            "signature_date": "2024-03-27",
            "details": {
                "consumer_name": "John Doe",
                "consumer_account": "NL18RABO0123459876",
                "consumer_bic": "RABONL2U",
                "card_holder": null,
                "card_number": null,
                "card_expiry_date": null,
                "card_label": null,
                "card_fingerprint": null
            }
        }
    ]
}

Last updated 3 months ago

Was this helpful?