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

Get link

GET https://rcur.app/api/v2/link/{id}

Path Parameters

Name
Type
Description

{id}*

String

The ID of the link

{
    "id": "nMvOMqXgxP",
    "status": "open",
    "active": true,
    "type": "payment",
    "description": "Test",
    "currency": "EUR",
    "amount": "5.00",
    "first_amount": null,
    "interval": null,
    "times": null,
    "trial_interval": null,
    "reminder_at": null,
    "redirect_url_paid": null,
    "redirect_url_failed": null,
    "expires_at": null,
    "created_at": "2020-04-20 20:30:11",
    "url": "https://rcur.app/pay/nMvOMqXgxP",
}
{
    "status": 404,
    "error": "Link not found"
}

Last updated 3 months ago

Was this helpful?