The Account Link object
Account Links are the means by which a platform grants a connected account permission to access Zoneless-hosted applications, such as the onboarding flow.
Stripe API equivalent/v1/account_linksAfter creating a connected account, create an account link and redirect the user to the url to guide them through onboarding. Once they complete onboarding or leave the flow, they will be redirected to your return_url.
Attributes
String representing the object's type. Objects of the same type share the same value. Always account_link.
The timestamp at which this account link will expire. Account links expire after 1 hour.
{
"object": "account_link",
"created": 1704067200,
"expires_at": 1704070800,
"url": "https://dashboard.yourdomain.com/onboard?token=al_z_abc123..."
}