Account updater
Buyers - Payment methods
Payment methods
Payment methods - Payment service tokens
Payment methods - Network tokens
Buyers - Gift cards
Buyers - Shipping details
Card scheme definitions
Digital wallets - Setup
Digital wallets - Sessions
Transactions
Refunds
Transactions - Settlements
Payment options
Payment service definitions
Payment services
Audit logs
Reports - Executions
Checkout sessions
Merchant accounts
Reports - Executions
List executions for report
List all executions of a specific report.
GET
/
reports
/
{report_id}
/
executions
Copy
Ask AI
curl --request GET \
--url https://api.{id}.gr4vy.app/reports/{report_id}/executions \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"items": [
{
"type": "report-execution",
"id": "a1b2c3d4-5678-90ab-cdef-1234567890ab",
"created_at": "2024-05-30T12:34:56.000Z",
"updated_at": "2024-05-30T13:00:00.000Z",
"status": "completed",
"context": {
"reference_timestamp": "2024-05-30T12:34:56.000Z",
"reference_timezone": "UTC"
},
"report": {
"type": "report",
"id": "a1b2c3d4-5678-90ab-cdef-1234567890ab",
"merchant_account_id": "merchant-account-12345",
"name": "Monthly Transaction Report",
"creator_id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
"creator_display_name": "Jane Doe",
"creator_type": "user"
}
}
],
"limit": 20,
"next_cursor": "ZXhhbXBsZTE",
"previous_cursor": "Xkjss7asS"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Headers
The ID of the merchant account to use for this request.
Examples:
"default"
Path Parameters
The ID of the report to retrieve details for.
Examples:
"4d4c7123-b794-4fad-b1b9-5ab2606e6bbe"
Query Parameters
A pointer to the page of results to return.
Examples:
"ZXhhbXBsZTE"
The maximum number of items that are at returned.
Required range:
1 <= x <= 100
Examples:
20
Response
200
application/json
Successful Response
The response is of type object
.
Was this page helpful?
Copy
Ask AI
curl --request GET \
--url https://api.{id}.gr4vy.app/reports/{report_id}/executions \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"items": [
{
"type": "report-execution",
"id": "a1b2c3d4-5678-90ab-cdef-1234567890ab",
"created_at": "2024-05-30T12:34:56.000Z",
"updated_at": "2024-05-30T13:00:00.000Z",
"status": "completed",
"context": {
"reference_timestamp": "2024-05-30T12:34:56.000Z",
"reference_timezone": "UTC"
},
"report": {
"type": "report",
"id": "a1b2c3d4-5678-90ab-cdef-1234567890ab",
"merchant_account_id": "merchant-account-12345",
"name": "Monthly Transaction Report",
"creator_id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
"creator_display_name": "Jane Doe",
"creator_type": "user"
}
}
],
"limit": 20,
"next_cursor": "ZXhhbXBsZTE",
"previous_cursor": "Xkjss7asS"
}
Assistant
Responses are generated using AI and may contain mistakes.