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

Get product

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

Path Parameters

Name
Type
Description

{id}*

String

The ID of the product

{
    "id": "ybWEyDp4oe",
    "name": "Test abbo",
    "type": "subscription",
    "amount": "5.00",
    "currency": "EUR",
    "interval": "1 months",
    "times": ,
    "wc_product_id": 1434
}
{
    "status": 404,
    "error": "Product not found"
}

Last updated 3 months ago

Was this helpful?