post https://example.com/simulate/authorizations//reversals
For simulating authorization reversal invoke the subsequent endpoint with the authorization ID
:
Response
204Card authorization reversal submitted successfully.
For simulating authorization reversal invoke the subsequent endpoint with the authorization ID
:
204Card authorization reversal submitted successfully.
xxxxxxxxxx
const options = {method: 'POST', headers: {'content-type': 'application/json'}};
fetch('https://example.com/simulate/authorizations/id/reversals', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));