Get Payment Link
Retrieve details of a specific Coinbase Business payment link by ID. Returns full payment link information including status, amount, and transaction details. Ideal for: payment status checks, order verification, webhook follow-up, receipt generation.
Catalog action Integrations coinbase-business
Retrieve details of a specific Coinbase Business payment link by ID. Returns full payment link information including status, amount, and transaction details. Ideal for: payment status checks, order verification, webhook follow-up, receipt generation.
At a Glance
| Field | Value |
|---|---|
| Action ID | coinbase-business-get-payment-link |
| Category | Integrations |
| Connector | coinbase-business |
| Requires gas | No |
| Funds movement | None declared |
| Tags | coinbase, payment, crypto, finance, read |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
paymentLinkId | string | Yes | The unique identifier of the payment link to retrieve |
apiKeyName | string | No | CDP API Key Name (overrides connector) |
apiKeySecret | string | No | CDP API Key Secret (overrides connector) |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
id | string | Yes | Payment link ID |
url | string | Yes | Payment link URL |
status | string | Yes | Payment link status |
amount | string | Yes | Payment amount |
currency | string | Yes | Currency code |
description | string | No | Payment description |
network | string | No | Blockchain network |
address | string | No | Payment address |
expiresAt | string | No | Expiration timestamp |
metadata | object | No | Attached metadata |
successRedirectUrl | string | No | Success redirect URL |
failRedirectUrl | string | No | Fail redirect URL |
createdAt | string | Yes | Creation timestamp |
updatedAt | string | Yes | Last update timestamp |
Examples
json{ "type": "coinbase-business-get-payment-link", "payload": { "paymentLinkId": "example-paymentLinkId" }, "children": [], "connector": { "type": "coinbase-business", "id": "conn_coinbase_business" }}
bashcurl -X POST "https://api.b3os.org/v1/actions/coinbase-business-get-payment-link/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "paymentLinkId": "example-paymentLinkId" }}'
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.
