curl --request POST \
  --url https://sigmaprod.sabipay.com/api/v1/transaction-monitoring/blacklist-device \
  --header 'Content-Type: application/json' \
  --header 'apiKey: <api-key>' \
  --header 'apiSecret: <api-key>' \
  --data '{
  "transactionId": "<string>"
}'
{
  "message": "Device blacklisted"
}

To unblock or unblacklist a device, use the endpoint below. The request type is DELETE

  DELETE api/v1/transaction-monitoring/blacklist-device/{transactionId}

Authorizations

apiKey
string
header
required
apiSecret
string
header
required

Body

application/json
Blacklist device payload
transactionId
string
required

The transactionId of the device you want to blacklist.

Response

200
application/json
Blacklist device result
message
string

Message after device is blacklisted

Example:

"Device blacklisted"