Skip to main content
POST
/
accounts
/
{account_id}
/
funding-sources
/
plaid
/
link-token
curl --request POST \ --url https://service.bluumfinance.com/v1/accounts/{account_id}/funding-sources/plaid/link-token \ --header 'Authorization: Basic <encoded-value>' \ --header 'Content-Type: application/json' \ --data ' { "enable_hosted_link": false } '
{ "status": "success", "data": { "link_token": "link-production-abc123def456", "hosted_link_url": null } }

Authorizations

Authorization
string
header
required

HTTP Basic Authentication using the API Key as username and API Secret as password.

Path Parameters

account_id
string<uuid>
required

Account ID

Body

application/json

Request body for creating a Link token. Set enable_hosted_link to true to get a hosted_link_url for Plaid Hosted Link flow.

If true, returns a hosted_link_url that can be used to redirect users to a Plaid-hosted page for bank account linking. When false or omitted, only returns a link_token for SDK-based integration.

Example:

true

Response

Link token created successfully

status
string
Example:

"success"

data
object