v1

latestSwagger 2.0MIT2026-07-17233380637.0 KB
Payments

Get payment request details

get/payments/requests/{id}

Path parameters

idstring required

Id of the payment Request

Response

Payment request details

referencestring required

Reference of the payment request, it will appear on the payment page.

status'created' | 'sent' | 'reminderSent - paid' required

Status of the payment request.

contactIdinteger

Brevo ID of the contact requested to pay.

numberOfRemindersSentinteger

number of reminders sent.

Example response

{
  "reference": "Invoice #INV0001\n",
  "notification": {
    "channel": "email",
    "text": "Please pay for your yoga class."
  },
  "configuration": {
    "customSuccessUrl": "https://my-company.com/payment-success"
  },
  "contactId": 43,
  "cart": {
    "specificAmount": 1200,
    "currency": "EUR"
  },
  "status": "paid",
  "numberOfRemindersSent": 5
}