Mayson Monorepo Documentation
    Preparing search index...

    Account Links let a platform create a temporary, single-use URL that an account can use to access a Stripe-hosted flow for collecting or updating required information.

    interface AccountLink {
        object: "v2.core.account_link";
        account: string;
        created: string;
        expires_at: string;
        livemode: boolean;
        url: string;
        use_case: Stripe.V2.Core.AccountLink.UseCase;
    }
    Index

    Properties

    object: "v2.core.account_link"

    String representing the object's type. Objects of the same type share the same value of the object field.

    account: string

    The ID of the connected account this Account Link applies to.

    created: string

    The timestamp at which this Account Link was created.

    expires_at: string

    The timestamp at which this Account Link will expire.

    livemode: boolean

    Has the value true if the object exists in live mode or the value false if the object exists in test mode.

    url: string

    The URL at which the account can access the Stripe-hosted flow.

    Hash containing usage options.