Skip to main content
GET
/
api
/
v3
/
deflections
/
logs
Fetch Deflection Logs
curl --request GET \
  --url https://api.chargeblast.com/api/v3/deflections/logs \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <x-api-key>' \
  --data '
{
  "filter": {
    "endDate": "<string>",
    "gateway": "<string>",
    "startDate": "<string>",
    "status": "<string>"
  }
}
'
{
  "logs": [
    {
      "request": {
        "arn": "<string>",
        "descriptor": "<string>",
        "transactionDate": "<string>",
        "amount": 123,
        "currency": "<string>",
        "bin": "<string>",
        "last4": "<string>",
        "type": "OI"
      },
      "response": {
        "status": "Matched",
        "hasDeflectElements": true,
        "deflectElementsMissing": "<string>",
        "chargeId": "<string>",
        "gateway": "<string>"
      }
    }
  ],
  "total": 123,
  "page": 123,
  "per": 123
}

Headers

X-API-Key
string
required

Your API key. Sent in the X-API-Key header.

Query Parameters

page
integer<int64> | null

The starting page of the request. Default value of 0.

per
integer<int64> | null

How many objects to request per page. Default value of 10.

Body

application/json
filter
object

Response

200 - application/json

OK

logs
object[]
required
total
integer<int64>
required
page
integer<int64>
required
per
integer<int64>
required