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. Payments API

List payments

GET https://rcur.app/api/v2/payments

{
    "data": [
        {
            "id": "OBNJ3NAV8a",
            "mollie_payment_id": "tr_craNyczyz6",
            "mollie_payment_status": "paid",
            "webhook_url": null
        },
        {
            "id": "gm9Aml4b5B",
            "mollie_payment_id": "tr_craNyczyz4",
            "mollie_payment_status": "cancelled",
            "webhook_url": null
        },
        {
            "id": "xQjJ1xAe2P",
            "mollie_payment_id": "tr_craNyczyz5",
            "mollie_payment_status": "expired",
            "webhook_url": null
        },
        {
            "id": "RxDA7mzeLE",
            "mollie_payment_id": "tr_craNyczyz3",
            "mollie_payment_status": "paid",
            "webhook_url": null
        },
        {
            "id": "EZb4Exzlje",
            "mollie_payment_id": "tr_craNyczyz2",
            "mollie_payment_status": "paid",
            "webhook_url": "https://yourwebsite.com/rcur/webhook"
        }
    ]
}

Last updated 1 year ago

Was this helpful?