POST
/
api
/
mitigation
/
transactions
curl --request POST \
  --url https://test.paysight.io/api/mitigation/transactions \
  --header 'Authorization: <api-key>' \
  --header 'ClientId: <clientid>' \
  --header 'Content-Type: application/json' \
  --header 'UserEmail: <useremail>' \
  --data '{
  "pageNumber": 123,
  "limit": 123,
  "emails": [
    "<string>"
  ],
  "orderIds": [
    123
  ],
  "transactionIds": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "gatewayTransactionIds": [
    "<string>"
  ],
  "bin": "<string>",
  "last4": "<string>",
  "firstName": "<string>",
  "lastName": "<string>",
  "authCodes": [
    "<string>"
  ],
  "currency": "<string>",
  "dateFrom": "2023-12-25",
  "dateTo": "2023-12-25",
  "descriptorContains": "<string>",
  "sandbox": true,
  "applicationIds": [
    123
  ],
  "productIds": [
    123
  ],
  "campaignIds": [
    123
  ],
  "merchantAccountIds": [
    123
  ],
  "companyIds": [
    123
  ],
  "amounts": [
    123
  ],
  "subscriptionIds": [
    123
  ],
  "includeUpdated": true
}'
{
  "success": true,
  "message": "<string>",
  "count": 123,
  "pageNumber": 123,
  "moreResults": true,
  "transactions": [
    {
      "gateway": "<string>",
      "transactionId": "<string>",
      "orderId": 123,
      "sent": "2023-11-07T05:31:56Z",
      "email": "<string>",
      "sandbox": true,
      "applicationId": 123,
      "status": "<string>",
      "statusId": 123,
      "success": true,
      "completed": "2023-11-07T05:31:56Z",
      "currency": "<string>",
      "amount": 123,
      "mid": "<string>",
      "descriptor": "<string>",
      "customerId": 123,
      "authCode": "<string>",
      "gatewayTransactionId": "<string>",
      "firstName": "<string>",
      "lastName": "<string>",
      "bin": "<string>",
      "last4": "<string>",
      "refunded": true,
      "refundable": true,
      "hasAlert": true,
      "chargedBack": true,
      "originalTransactionId": "<string>"
    }
  ]
}

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

Pagination filter. Set to 1 by default or omit on initial request.

Response

200 - application/json

List of matching transactions

The response payload for transaction search endpoint