Recurring billing
DestructiveWhat it covers#
Four read-only tools over recurring billing plans and their subscribers, plus one sensitive tool that pauses, reactivates or deletes a subscriber. That last one affects future charges: ask for human confirmation before running it.
Tools#
List recurring plans
Read onlytilopay_recurring_list_plans
Lists the recurring billing plans configured in Tilopay.
API operation: POST /api/v1/getPlansRepeat
Parameters
No parameters.
Returns
{ result }
Raw Tilopay API response under the `result` key.
Recurring plan detail
Read onlytilopay_recurring_get_plan
Returns the detail of a recurring billing plan by its ID.
API operation: POST /api/v1/getPlanRepeat
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | yes | Plan ID |
Returns
{ result }
Raw Tilopay API response under the `result` key.
Subscriber detail
Read onlytilopay_recurring_get_subscriber
Returns the detail of a subscriber of a recurring plan by its ID.
API operation: POST /api/v1/getSuscriptorRepeat
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | yes | Subscriber ID |
Returns
{ result }
Raw Tilopay API response under the `result` key.
Subscriber payments
Read onlytilopay_recurring_subscriber_payments
Lists the payments made by a recurring subscriber.
API operation: POST /api/v1/getSuscriptorPayments
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | yes | Subscriber ID |
Returns
{ result }
Raw Tilopay API response under the `result` key.
Pause, reactivate or delete a subscriber
Sensitivetilopay_recurring_manage_subscriber
Pauses, reactivates or deletes a subscriber of a recurring plan in Tilopay. Sensitive operation: it affects future charges.
API operation: POST /api/v1/pauseSuscriptorRepeat, /reactiveSuscriptorRepeat o /deleteSuscriptorRepeat
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
idSubscriber | string | yes | Subscriber ID |
action | string (pause | reactivate | delete) | yes | Action to perform |
Returns
{ result }
Raw response of the endpoint matching the action: pause, reactivate or delete.
Last verified: 2026-09-02 · Owner: equipo-integraciones