GET
/
transactions
/
{transaction_id}
/
events
curl --request GET \
  --url https://api.mattildapayments.com/transactions/{transaction_id}/events \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "type": "transaction-event",
      "id": "fe26475d-ec3e-4884-9553-f7356683f7f9",
      "name": "bin-lookup-request",
      "created_at": "2013-07-16T19:23:00.000+00:00",
      "context": {
        "response": "{}",
        "response_status_code": 200,
        "success": true,
        "bin": "<string>",
        "type": "<string>",
        "scheme": "visa",
        "additional_schemes": [
          "visa"
        ],
        "country_code": "<string>",
        "account_updater": true,
        "issuer_tokenization": true
      }
    }
  ],
  "limit": 1,
  "next_cursor": "ZXhhbXBsZTE",
  "previous_cursor": null
}

This endpoint requires the transactions.read scope.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

transaction_id
string
required

The ID for the transaction to get the information for.

Example:

"fe26475d-ec3e-4884-9553-f7356683f7f9"

Response

200
application/json
Returns a collection of transaction history events.

A list of transaction history events.

items
object[]

A list of events related to processing a transaction.

The result and raw data for a card BIN lookup.

limit
integer
default:20

The limit applied to request. This represents the number of items that are at maximum returned by this request.

Required range: 1 <= x <= 500
Example:

1

next_cursor
string | null

The cursor that represents the next page of results. Use the cursor query parameter to fetch this page of items.

Required string length: 1 - 1000
Example:

"ZXhhbXBsZTE"

previous_cursor
string | null

The cursor that represents the next page of results. Use the cursor query parameter to fetch this page of items.

Required string length: 1 - 1000
Example:

null