post
https://www.pelcro.com/api/v1/sdk/payment//verify
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Overview
Confirm (verify) a payment through the gateway — the Tap 3D Secure confirmation step, companion to Tap authorize. The endpoint saves the submitted customer details, then confirms the charge through the gateway.
Tap-specific: the currency is forced to USD and the token field is tap_token. The customer is taken from the JWT.
Example:
curl --request POST --url 'https://www.pelcro.com/api/v1/sdk/payment/tap/verify?site_id=1232' --header 'Authorization: Bearer <JWT>' --header 'Content-Type: application/json' --data '{ "first_name": "Jane", "last_name": "Doe", "phone": "+15555550123", "currency": "USD", "funding": "CREDIT", "tap_token": "tok_xxxxxxxx" }'Notes
- Protected — requires the customer’s JWT.
first_name,last_name,phone,currency, andfunding(DEBITorCREDIT) are required;redirect_urlandtap_tokenare optional.
