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
}Get a list of all look up requests.
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
}Your API key. Sent in the X-API-Key header.
The starting page of the request. Default value of 0.
How many objects to request per page. Default value of 10.
Show child attributes