API · processTokenize

API v1
POST /api/v1/processTokenize

What it does#

Tokenizes a card: returns the URL of the tokenization form.

Authentication#

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

Parameters#

redirectstring#

Site where you wait for the transaction response.

keystring#

Key associated with the merchant.

emailstring#

Cardholder email.

languagestring#

Language [es, en].

firstNamestring#

Cardholder first name.

lastNamestring#

Cardholder last name.

token_versionstring#

Send as value "v2".

Request example#

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

{
  "redirect": "https://urlToRedirect.com",
  "key": "<api_key>",
  "email": "email@user.com",
  "language": "es",
  "firstName": "name",
  "lastName": "lastname",
  "token_version": "v2"
}

Response#

{
  "type": "100",
  "url": "https://secure.tilopay.com/htmls/TOK-5063-740506121440_1648145457file.html"
}

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