API · Subscribers of a plan

API v1
POST /api/v1/getSuscriptorRepeat

What it does#

Returns the subscribers associated with a recurring plan.

Authentication#

Requires the API bearer token in the Authorization header — see authentication.

Parameters#

keystringrequerido#

Tilopay integration key.

idstringrequerido#

Recurring plan id.

Request example#

The <...> values are placeholders: replace them with your own credentials and data.

{
  "key": "<api_key>",
  "id": "2"
}

Response#

{
  "type": "200",
  "message": "Success",
  "suscriptor": [
    {
      "id": 360,
      "name": "Jhon 1",
      "lastname": "D",
      "email": "customer1@example.com",
      "modality": "Pago mensual prueba repeat modalidad",
      "amount": "10.00",
      "expire": "2023-03-26",
      "coupon": "",
      "status": "Delete",
      "create": "2022-10-19 12:48:59"
    },
    {
      "id": 33364,
      "name": "Jhon 2",
      "lastname": "D",
      "email": "customer2@example.com",
      "modality": "Pago mensual prueba repeat modalidad",
      "amount": "10.00",
      "expire": "2023-08-05",
      "coupon": "",
      "status": "Active",
      "create": "2023-06-05 14:24:18"
    }
  ]
}

To interpret a response that is not a success, see how to read an error response.

Last verified: 2026-08-29 · Owner: equipo-integraciones

View as raw Markdown