Recurring billing

Destructive

What 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 only

tilopay_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 only

tilopay_recurring_get_plan

Returns the detail of a recurring billing plan by its ID.

API operation: POST /api/v1/getPlanRepeat

Parameters

ParameterTypeRequiredDescription
idstringyesPlan ID

Returns

{ result }

Raw Tilopay API response under the `result` key.

Subscriber detail

Read only

tilopay_recurring_get_subscriber

Returns the detail of a subscriber of a recurring plan by its ID.

API operation: POST /api/v1/getSuscriptorRepeat

Parameters

ParameterTypeRequiredDescription
idstringyesSubscriber ID

Returns

{ result }

Raw Tilopay API response under the `result` key.

Subscriber payments

Read only

tilopay_recurring_subscriber_payments

Lists the payments made by a recurring subscriber.

API operation: POST /api/v1/getSuscriptorPayments

Parameters

ParameterTypeRequiredDescription
idstringyesSubscriber ID

Returns

{ result }

Raw Tilopay API response under the `result` key.

Pause, reactivate or delete a subscriber

Sensitive

tilopay_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

ParameterTypeRequiredDescription
idSubscriberstringyesSubscriber ID
actionstring (pause | reactivate | delete)yesAction to perform

Returns

{ result }

Raw response of the endpoint matching the action: pause, reactivate or delete.

Last verified: 2026-09-02 · Owner: equipo-integraciones

View as raw Markdown