Delete Merchant Payment Control
DELETE/v1/acquirer/merchants/:merchant_id/payment_controls/:type/:id
Delete a merchant-level payment control.
Required permission: payment_controls_delete.
Request
Path Parameters
merchant_id stringrequired
Acquirer-assigned merchant identifier (the merchant_id field of
the merchant, not its internal UUID).
type stringrequired
Possible values: [bin_range, bin_country, pan, fingerprint, ip, ip_country, eci, tds_status]
The identifier type of the rules to operate on.
id uuidrequired
Payment control UUID.
Responses
- 204
- 401
- 403
- 404
Deleted. No content.
Authentication failed.
- application/json
- Schema
- Example (from schema)
Schema
message stringrequired
{
"message": "Missing authentication information"
}
The API key lacks the required permission.
- application/json
- Schema
- Example (from schema)
Schema
message stringrequired
{
"message": "Unauthorized"
}
The referenced resource does not exist or belongs to another acquirer.
- application/json
- Schema
- Example (from schema)
Schema
message stringrequired
{
"message": "The Order you are looking for was not found."
}
Loading...