This service will be responsible for notifying you about events related to the lifecycle of tokens and OTP authentication processes.
The digital signature is an HMAC-SHA256 code that is constructed using the api-secret and a series of bytes that contain the concatenation of the timestamp, endpoint, and request body encoded in UTF-8.
This webhook notification is sent when the system generates and sends an OTP (One-Time Password) during the card tokenization process.
The event is triggered when additional user authentication is required to complete the tokenization of their card on a device or digital wallet.
This webhook is sent in the following scenarios:
The webhook contains the following information:
Your system must:
api-secret you need to use in case multiple pairs of api-key and api-secret have been configured.Add this endpoint to your service so we can communicate updates about your tokens in real time.
We expect a response of type 2XX to ensure that you received the notification. Otherwise, we will resend it.
api-secret you need to use in case multiple pairs of api-key and api-secret have been configured.This endpoint allows obtaining the list of tokens associated with a card identified by its ID.
Supports bidirectional cursor pagination through the parameters limit, start_from (forward pagination) and end_before (backward pagination).
{{Tambien permite filtrar los resultados mediante los parámetros opcionales filter[merchant_name], filter[token_status] y filter[token_requestor_id]. Cada filtro soporta múltiples valores (por ejemplo: filter[merchant_name]=Amazon,Walmart). Los valores del mismo filtro se combinan con OR (ej: tokens de Amazon O Walmart), mientras que diferentes filtros se combinan con AND (ej: tokens de Amazon O Walmart Y con estado ACTIVATED)
{{Los filtros aplicados se guardan automáticamente en el cursor de paginación para mantener la consistencia entre las iteraciones de páginas, asegurando que los mismos filtros se apliquen en todas las páginas subsecuentes.}}
metadata.pagination.next_start_from field of the previous response. The cursor automatically includes the applied filters (merchant_name, token_status, token_requestor_id) to maintain consistency between pages. It cannot be used simultaneously with end_before.metadata.pagination.next_end_before field of the previous response. The cursor automatically includes the applied filters (merchant_name, token_status, token_requestor_id) to maintain consistency between pages. It cannot be used simultaneously with start_from.