Skip to main content
POST
https://api.dintero.com/v1
/
accounts
/
{aid}
/
compliance-search
/
match
/
terminate
accounts_aid_search_match_terminate_merchant_post
curl --request POST \
  --url https://api.dintero.com/v1/accounts/{aid}/compliance-search/match/terminate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "merchant": {
    "business_name": "<string>",
    "address": {
      "address_line": "<string>",
      "city": "<string>",
      "postal_code": "<string>",
      "country": "<string>",
      "address_line_2": "<string>"
    },
    "principals": [
      {
        "first_name": "<string>",
        "last_name": "<string>",
        "email": "abc@xxx.com",
        "phone_number": "3165557625",
        "date_of_birth": "1980-01-01",
        "address": {
          "address_line": "<string>",
          "city": "<string>",
          "country": "<string>",
          "address_line_2": "<string>",
          "postal_code": "<string>"
        }
      }
    ],
    "phone_number": "<string>",
    "merchant_category": "1234",
    "merchant_id": "1234567890",
    "is_proprietorship": "N",
    "is_transaction_laundering": "N",
    "trade_name": "<string>",
    "website_url": "<string>"
  },
  "termination": {
    "termination_reason": "13",
    "agreement_start_date": "2013-12-31",
    "agreement_termination_date": "2013-12-31",
    "comment": "Added due to fraud"
  }
}
'
{
  "merchant_reference_number": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.dintero.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication (token authentication) should be used for accessing the API.

Use Get Token to get an access token for client credentials. Pass the token in the request header:

Authorization: Bearer {access_token}

where the access_token is JSON Web Tokens (JWT).

Path Parameters

aid
string<^[PT]{1}\d{8}$>
required

An id that uniquely identifies the account.

Required string length: 9

Body

application/json
merchant
object
required
termination
object
required

Response

MATCH merchant ID

merchant_reference_number
integer

Unique ID to identify the added merchant in MATCH

Last modified on May 29, 2026