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


var options = new RestClientOptions("https://api.sandbox.{id}.gr4vy.app/transactions/{transaction_id}/actions");
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": "action",
      "id": "route-transaction",
      "flow": "checkout",
      "rule_id": "8724fd24-5489-4a5d-90fd-0604df7d3b85",
      "created_at": "2012-12-12T10:53:43+00:00",
      "outcome": {
        "type": "boolean",
        "result": true
      }
    }
  ]
}
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

Returns associated actions.

A list of actions.

items
Action · object[]

A list of actions.