Skip to main content
POST
/
v1
/
three-ds
/
cancel
Cancel 3DS authentication
curl --request POST \
  --url https://api-global.fastpaybrasil.com/v1/three-ds/cancel \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "authenticationId": "tdsa_1QmCRMJM0r9zBvr4OVmMRa6X"
}
'
{
  "authenticationId": "tdsa_1QmCRMJM0r9zBvr4OVmMRa6X",
  "status": "canceled"
}

Authorizations

Authorization
string
header
required

HTTP Basic authentication. Use your secret key as the username and an empty string as password. The API key should be base64 encoded in the format 'username:' when sending the Authorization header.

Body

application/json
authenticationId
string
required

3DS Authentication ID to cancel

Example:

"tdsa_1QmCRMJM0r9zBvr4OVmMRa6X"

Response

Authentication cancelled successfully

authenticationId
string
Example:

"tdsa_1QmCRMJM0r9zBvr4OVmMRa6X"

status
string
Example:

"canceled"