v1
latestOpenAPI 3.0.22026-08-061303782.1 MBList Authorizations
Retrieve a list of Authorizations.
For details on how to query endpoints using the available parameters, see Query Parameters.
{% admonition type="info" %} If no query parameters are specified in the request the API automatically limits the response to records from the last 30 days. You can request older data by passing an explicit created_at.lte filter. {% /admonition %}
Query parameters
Return every resource created after the cursor value.
Filter by an amount greater than.
Filter by an amount greater than or equal.
Filter by an amount less than.
Filter by an amount less than or equal.
Filter by an amount equal to the given value.
Return every resource created before the cursor value.
Filter where created_at is after the given date.
Filter where created_at is before the given date.
Filter by the currency of the resource.
Filter by the device's ID.
Filter by Idempotency ID.
Filter Transactions by the last 4 digits of the bank account. The bank account last 4 are the last 4 digits of the masked account number.
Filter by Bank Identification Number (BIN). The BIN is the first 6 digits of the masked number.
Filter by card brand.
Filter by the payment card last 4 digits.
Filter Transactions by the name of the Payment Instrument.
Show only voided authorizations.
The numbers of items to return.
Filter by the Merchant ID.
Filter Transactions by name of the Identity.
Filter by Merchant Identification Number (MID).
Filter by Processor ID.
Filter by transaction state.
Filter by the tag's key. For more information, see Tags.
Filter by the tag's value. For more information, see Tags.
Filter by trace_id.
Filter where updated_at is after the given date.
Filter where updated_at is before the given date.
Headers
Specify the API version of your request. For more details, see Versioning.
Response
List of Authorization objects
Example response
{
"_embedded": {
"authorizations": [
{
"id": "AUxxxxxxxxxxxxxxxxxx",
"amount": 5000,
"device": "DVxxxxxxxxxxxxxxxxxx",
"ip_address_details": {
"ipv4": {
"ip": "192.168.1.1"
}
},
"merchant": "MUxxxxxxxxxxxxxxxxxxxxxx",
"merchant_identity": "IDxxxxxxxxxxxxxxxxxxxxxx",
"network_details": {
"brand": "VISA"
},
"source": "PIxxxxxxxxxxxxxxxxxx",
"transfer": "TRxxxxxxxxxxxxxxxxxx"
}
]
}
}