API · Get SDK token

API v1
POST /api/v1/loginSdk

What it does#

Returns the security token needed to consume the SDK. All three credentials come from Admin · Tilopay Checkout.

Authentication#

It does not require a token: this is the operation that issues it. See authentication.

Parameters#

apiuserstring#

Merchant API user.

passwordstring#

Merchant API password.

keystring#

Merchant api key.

Request example#

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

{
  "apiuser": "<api_user>",
  "password": "<api_password>",
  "key": "<api_key>"
}

Response#

{
  "access_token": "351d477adaaa51cdbb33ae4b4b8c843aa759f131c1c38415180b5035543d59d2f23f4e049706f5fa71c5f0d9ff763960a3cd035b4c1cefa428c90bedb672f780",
  "token_type": "bearer",
  "expires_in": "2023-06-05 13:32:06"
}

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