List Payment Links
List Coinbase Business payment links with optional filtering and pagination. Returns payment links 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 payment links with optional filtering and pagination. Returns payment links 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-payment-links |
| Category | Integrations |
| Connector | coinbase-business |
| Requires gas | No |
| Funds movement | None declared |
| Tags | coinbase, payment, crypto, finance, list, read |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
pageToken | string | No | Cursor token for fetching the next page of results |
pageSize | number | No | Number of payment links to return per page (min 1, max 100) |
status | string | No | Filter payment links 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 |
|---|---|---|---|
paymentLinks | array | Yes | List of payment link objects |
nextPageToken | string | No | Cursor token for fetching the next page of results. Pass this as the 'pageToken' input to retrieve the next page. Absent when there are no more results. |
Examples
json{ "type": "coinbase-business-list-payment-links", "payload": { "pageToken": "ETH", "pageSize": 1, "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-payment-links/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "pageToken": "ETH", "pageSize": 1, "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.
