API · Edit subscriber

API v1
POST /api/v1/editSuscriptorRepeat

What it does#

Changes the status or the expiration date of a subscriber.

Authentication#

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

Parameters#

keystringrequerido#

Tilopay integration key.

idstringrequerido#

Subscriber id.

statusstring#

Status of the subscriber.

CodeValue
1Active
3Paused
4Deleted
expirestring#

Plan expiration date, yy-m-d format.

Request example#

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

{
  "key": "<api_key>",
  "id": "2",
  "status": "2",
  "expire": "2023-10-25"
}

Response#

{
  "type": "200",
  "status": 1,
  "message": "Success"
}

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