Skip to main content
GET
/
transactions
/
{transaction_id}
/
events
List events for transaction
using RestSharp;


var options = new RestClientOptions("https://api.sandbox.{id}.gr4vy.app/transactions/{transaction_id}/events");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("Authorization", "Bearer <token>");
var response = await client.GetAsync(request);

Console.WriteLine("{0}", response.Content);
{
  "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>",
        "instrument": "pan",
        "type": "<string>",
        "scheme": "visa",
        "additional_schemes": [
          "visa"
        ],
        "country_code": "<string>",
        "supports_network_tokens": 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"

Query Parameters

cursor
string<>

A cursor that identifies the page of results to return. This is used to paginate the results of this API.

For the first page of results, this parameter can be left out. For additional pages, use the value returned by the API in the next_cursor field. Similarly the previous_cursor can be used to reverse backwards in the list.

Example:

"ZXhhbXBsZTE"

limit
integer<int32>
default:100

Defines the maximum number of items to return for this request.

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

1

Response

Returns a collection of transaction history events.

A list of transaction history events.

items
(BIN Lookup Request · object | 3DS - Authentication · object | 3DS - Authentication (Deprecated) · object | 3DS - Error · object | 3DS - Pre-authentication · object | 3DS - Post-authentication · object | Anti-fraud - Decision · object | Anti-fraud - Error · object | Anti-fraud - Skipped · object | Anti-fraud - Decision update sent · object | Anti-fraud - Decision update failed · object | Anti-fraud - Transaction update sent · object | Anti-fraud - Transaction update failed · object | Anti-fraud - Webhook · object | Digital wallet Apple Pay token decrypted · object | Digital wallet Click to Pay token decrypted · object | Digital wallet Google Pay token decrypted · object | Gift Cards Redemption - Failure · object | Gift Cards Redemption - Succeeded · object | Gift Cards Refund - Failed · object | Gift Cards Refund - Succeeded · object | Network Token Cryptogram Provision - Failure · object | Network Token Cryptogram Provision - Succeeded · object | Network Token Provision - Failure · object | Network Token Provision - Succeeded · object | Authorization · object | Authorization - Declined · object | Authorization - Failed · object | Capture - Declined · object | Capture - Failed · object | Capture - Succeeded · object | Transaction Sync · object | Void - Declined · object | Void - Failed · object | Void - Succeeded · object | External Transaction Request · object | Settlement - Sourced from Connector Report · object | Real time account update · object | Transaction API Request · object | Transaction API Response · object)[]

A list of events related to processing a transaction.

The result and raw data for a card BIN lookup.

limit
integer<int32>
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