Query Transactions
Payment Collection
List Payment Transactions
Query payment collections and payouts with filters by status, type, external ID, and date range.
GET
Query Transactions
Overview
GET /payment/transactions returns a paginated list of your company’s payment transactions (collections and payouts), with optional filtering by status, type, external ID, or date range.
When to use it
- Reconcile your books against Cartevo’s records.
- Find a transaction by
external_idwhen you’ve lost the Cartevotransaction_id. - Build a dashboard view of recent payment activity.
Prerequisites
- Authenticated as a company user.
Request
Headers
| Name | Required | Description |
|---|---|---|
Authorization | Yes | Bearer <access_token> |
Query parameters
| Name | Type | Default | Description |
|---|---|---|---|
status | string | — | Filter by status. One of PENDING, PROCESSING, SUCCESS, FAILED. |
type | string | — | Filter by direction. One of COLLECTION, PAYOUT. |
external_id | string | — | Filter by your idempotency key. Substring match. |
from_date | string | — | ISO 8601 datetime. Includes transactions created on/after this instant. Example: 2026-04-01T00:00:00Z. |
to_date | string | — | ISO 8601 datetime. Includes transactions created strictly before this instant. |
page | integer | 1 | 1-indexed page number. |
limit | integer | 20 | Items per page. Max recommended: 100. |
Response
200 — Success
GET /payment/transactions/{id}/status.
Error responses
| Status | Trigger |
|---|---|
400 | Invalid status, type, or date format. |
Code examples
cURL
Related
GET /payment/transactions/{id}/status— single transaction detail.GET /payment/balance— current wallet balances.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Filter by status (PENDING, SUCCESS, FAILED)
Available options:
PENDING, SUCCESS, FAILED, PROCESSING Filter by type (COLLECTION, PAYOUT)
Available options:
COLLECTION, PAYOUT Filter by external ID (partial match)
Start date (ISO 8601)
End date (ISO 8601)
Page number
Example:
1
Items per page
Example:
20