Get a Plaid Link token for recipient self-service
Authorization
apiKey Merchant API key. Publishable keys (pk_test_* / pk_live_) are safe for browser/frontend use and carry a limited scope set (sessions, payment_instruments, customers, orders writes; products, product_prices, payment_links reads). Secret keys (sk_test_ / sk_live_*) grant full admin access and must only be used server-side.
In: header
Query Parameters
urilength <= 2048Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
application/json
curl -X POST "https://loading/v1/api/treasury/recipients/plaid/link-token" \ -H "Content-Type: application/json" \ -d '{ "invitation_token": "string" }'{
"success": true,
"timestamp": "2019-08-24T14:15:22Z",
"data": null,
"message": "string",
"pagination": {
"total": 0,
"limit": 1,
"offset": 0,
"has_more": true,
"truncated": true,
"cursors": {
"first": "string",
"last": "string"
}
}
}{
"success": false,
"timestamp": "2019-08-24T14:15:22Z",
"error": {
"code": "string",
"message": "string",
"details": null
}
}{
"success": false,
"timestamp": "2019-08-24T14:15:22Z",
"error": {
"code": "string",
"message": "string",
"details": null
}
}{
"success": false,
"timestamp": "2019-08-24T14:15:22Z",
"error": {
"code": "string",
"message": "string",
"details": null
}
}Exchange Plaid public token for recipient bank linking
Previous Page
Fund a settlement (Finix→Brale instant payout)
Initiate an instant payout against a settlement. Wraps Finix's `POST /settlements/{id}/funding_transfer_attempts`. The destination must be a payment instrument owned by the authenticated company (debit card, typically a Brale-issued one). `amount` is in cents and cannot exceed the settlement's `net_amount`. This is the Finix→Brale movement that was missing from the API surface — see `tasks/transfer-endpoint-gap.md`.