API · Registration and renewal URL

API v1
POST /api/v1/recurrentUrl

What it does#

Returns the registration URL of a recurring plan for a new user, or the renewal URL when the email is already registered.

Authentication#

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

Parameters#

keystringrequerido#

Tilopay integration key.

idstringrequerido#

Recurring plan id.

emailstring#

Email of the user the registration link is created for.

Request example#

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

{
  "key": "<api_key>",
  "id": "1",
  "email": "email@user.com"
}

Response#

{
  "type": "200",
  "message": "",
  "url_register": "https://app.tilopay.com/admin/recurrent/register/MjMy?email=email@user.com",
  "url_renew": ""
}

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