POST
/
api
/
mitigation
/
search
curl --request POST \
  --url https://test.paysight.io/api/mitigation/search \
  --header 'Authorization: <api-key>' \
  --header 'ClientId: <clientid>' \
  --header 'Content-Type: application/json' \
  --header 'UserEmail: <useremail>' \
  --data '{
  "email": "user@example.com",
  "orderId": 123456,
  "bin": "411111",
  "last4": "4242",
  "firstName": "John",
  "lastName": "Doe",
  "authCode": "ABC123",
  "arn": "123456789012345",
  "amount": 49.99,
  "currencyCode": "USD",
  "dateFrom": "2024-01-01",
  "dateTo": "2024-01-31",
  "mid": "MID123456",
  "descriptorExactMatch": "mydescriptor.com 558111222",
  "descriptorContains": "mydescriptor"
}'
{
  "success": true,
  "message": "<string>",
  "count": 123,
  "transactions": [
    {}
  ]
}

Authorizations

Authorization
string
header
required

Your Paysight API key

Headers

ClientId
string
required

Your Paysight Tenant/Client Id. This is the id of the parent company listed in https://app.paysight.io/management/companies. Alternatively, this will be provided by Paysight

UserEmail
string
required

The email address of the party or group making the request

Body

application/json

Request payload for searching mitigation-related transactions

Response

200
application/json

Search results

The response is of type object.