- list - List transaction events
Retrieve a paginated list of events related to processing a transaction, including status changes, API requests, and webhook delivery attempts. Events are listed in chronological order, with the most recent events first.
declare(strict_types=1);
require 'vendor/autoload.php';
use Gr4vy;
$sdk = Gr4vy\SDK::builder()
->setMerchantAccountId('default')
->setSecurity(
'<YOUR_BEARER_TOKEN_HERE>'
)
->build();
$responses = $sdk->transactions->events->list(
transactionId: '7099948d-7286-47e4-aad8-b68f7eb44591',
cursor: 'ZXhhbXBsZTE',
limit: 100
);
foreach ($responses as $response) {
if ($response->statusCode === 200) {
// handle response
}
}| Parameter | Type | Required | Description | Example |
|---|---|---|---|---|
transactionId |
string | ✔️ | The ID of the transaction | 7099948d-7286-47e4-aad8-b68f7eb44591 |
cursor |
?string | ➖ | A pointer to the page of results to return. | ZXhhbXBsZTE |
limit |
?int | ➖ | The maximum number of items that are at returned. | 100 |
merchantAccountId |
?string | ➖ | The ID of the merchant account to use for this request. | default |
?ListTransactionEventsResponse
| Error Type | Status Code | Content Type |
|---|---|---|
| Errors\Error400 | 400 | application/json |
| Errors\Error401 | 401 | application/json |
| Errors\Error403 | 403 | application/json |
| Errors\Error404 | 404 | application/json |
| Errors\Error405 | 405 | application/json |
| Errors\Error409 | 409 | application/json |
| Errors\HTTPValidationError | 422 | application/json |
| Errors\Error425 | 425 | application/json |
| Errors\Error429 | 429 | application/json |
| Errors\Error500 | 500 | application/json |
| Errors\Error502 | 502 | application/json |
| Errors\Error504 | 504 | application/json |
| errors\APIException | 4XX, 5XX | */* |