cURL
curl --request POST \ --url http://localhost/api/wallets/holds/{hold_id}/confirm \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "amount": 100, "final": true } '
{ "errorCode": "VALIDATION", "errorMessage": "<string>" }
The access token received from the authorization server in the OAuth 2.0 flow.
Use an idempotency key
Define the amount to transfer.
100
Define a final confirmation. Remaining funds will be returned to the wallet.
true
Hold successfully confirmed, funds moved back to initial destination