On This Page
Verify Status for Online Bank Transfers (Tink Pay By Bank)
When the status of your payment request is
PENDING
, you can verify the
status by using the URL method and the payload that is included in the
transactionStatus.url
field in the webhook
response:"payload": { "transactionResult": { "submitTimeUtc": "2025-07-22T08:16:24Z", "reconciliationId": "KPUJHD4X2G31", "processorInformation": { "responseCode": "00004" }, "id": "7531173918516064204807", "message": "Request was processed successfully.", "status": "SETTLED" }, "transactionStatus": { "url": "https://apitest.cybersource.com/pts/v2/refresh-payment-status/7531173918516064204807", "method": "POST", "payload": { "clientReferenceInformation": { "applicationName": "unifiedCheckout" }, "processingInformation": "processingInformation", "paymentInformation": { "paymentType": { "method": { "name": "tinkPayByBank" }, "name": "bankTransfer" } } } } }
You can also send a request to this endpoint to verify the
status:
Production:
POST
https://api.cybersource.com
/pts/v2/refresh-payment-status/{id}
Test:
POST
https://apitest.cybersource.com
/pts/v2/refresh-payment-status/{id}
The
is the ID that is returned in the webhook response. For more information, see Webhooks Support.
{id}