List Checkouts
List Coinbase Business checkouts with optional filtering and pagination. Returns checkouts with status, amount, and creation details. Supports cursor-based pagination. Ideal for: payment monitoring, reconciliation, dashboard views, status tracking.
Catalog action Integrations coinbase-business
List Coinbase Business checkouts with optional filtering and pagination. Returns checkouts with status, amount, and creation details. Supports cursor-based pagination. Ideal for: payment monitoring, reconciliation, dashboard views, status tracking.
At a Glance
| Field | Value |
|---|---|
| Action ID | coinbase-business-list-checkouts |
| Category | Integrations |
| Connector | coinbase-business |
| Requires gas | No |
| Funds movement | None declared |
| Tags | coinbase, checkout, payment, crypto, finance, list, read |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
pageSize | number | No | Number of items per page (1-100, default 20) |
pageToken | string | No | Pagination token from previous response |
status | string | No | Filter checkouts by status |
apiKeyName | string | No | CDP API Key Name (overrides connector) |
apiKeySecret | string | No | CDP API Key Secret (overrides connector) |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
checkouts | array | Yes | List of checkouts |
nextPageToken | string | No | Token for next page |
Examples
json{ "type": "coinbase-business-list-checkouts", "payload": { "pageSize": 1, "pageToken": "ETH", "status": "ACTIVE", "apiKeyName": "configured-in-b3os", "apiKeySecret": "configured-in-b3os" }, "children": [], "connector": { "type": "coinbase-business", "id": "conn_coinbase_business" }}
bashcurl -X POST "https://api.b3os.org/v1/actions/coinbase-business-list-checkouts/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "pageSize": 1, "pageToken": "ETH", "status": "ACTIVE", "apiKeyName": "configured-in-b3os", "apiKeySecret": "configured-in-b3os" }}'
Payload fields can use workflow expressions such as {{$trigger.body.amount}}, {{$nodes.fetch.result.price}}, and {{$props.asset}} when the value should come from a trigger, prior node, or reusable workflow prop.
