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. Follow-ups API

List follow-ups

GET https://rcur.app/api/v2/follow-ups

Query Parameters

Name
Type
Description

page

Integer

Used for pagination. Default: 1

{
    "data": [
        {
            "id": "aWG6AjRqyE",
            "description": "Monthly Subscription",
            "type": "",
            "status": "",
            "amount": "5.00",
            "currency": "EUR",
            "mollie_profile_id": "pfl_dcC93D3jf",
            "mollie_payment_id": "tr_fdfx2Fnf",
            "reason": null,
            "reason_code": "MD03",
            "retries_done": 1,
            "mails_sent": 2,
            "next_retry_at": "2025-03-07",
            "created_at": "2025-03-05 20:57:50",
            "customer": {
                "id": "YJRQAMRQ6y",
                "number": "RC1234",
                "first_name": "John",
                "last_name": "Doe",
                "email": "jdoe@doeco.org",
                "phone": "+31612345678",
                "organization_name": "Doe Co.",
                "address": "Street name 123",
                "postal_code": "1234AB",
                "city": "City name",
                "country": "NL",
                "vat_number": "NL123456789B01",
                "locale": "nl",
                "mollie_customer_id": "cst_xDjnf3Kdx",
                "created_at": "2022-02-24 12:34:56"
            },
            "subscription": null,
            "order": null
        }
    ],
    "links": {
        "first": "https://rcur.app/api/v2/follow-ups?page=1",
        "last": "https://rcur.app/api/v2/follow-ups?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "« Previous",
                "active": false
            },
            {
                "url": "https://rcur.app/api/v2/follow-ups?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next »",
                "active": false
            }
        ],
        "path": "https://rcur.app/api/v2/follow-ups",
        "per_page": 15,
        "to": 1,
        "total": 1
    }
}

Last updated 3 months ago

Was this helpful?