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

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

  DELETE api/v1/transaction-monitoring/blacklist-vas-receiver/{receiver}

Authorizations

apiKey
string
header
required
apiSecret
string
header
required

Body

application/json
Blacklist vas receiver payload
receiver
string
required

The vas receiver of the account you want to blacklist.

Response

200
application/json
Blacklist vas result
message
string

Message after VAS receiver blacklisted

Example:

"VAS receiver blacklisted"