Mayson Monorepo Documentation
    Preparing search index...

    A Tax Registration lets us know that your business is registered to collect tax on payments within a region, enabling you to automatically collect tax.

    Stripe doesn't register on your behalf with the relevant authorities when you create a Tax Registration object. For more information on how to register to collect tax, see our guide.

    Related guide: Using the Registrations API

    interface Registration {
        id: string;
        object: "tax.registration";
        active_from: number;
        country: string;
        country_options: Stripe.Tax.Registration.CountryOptions;
        created: number;
        expires_at: number;
        livemode: boolean;
        status: Stripe.Tax.Registration.Status;
    }
    Index

    Properties

    id: string

    Unique identifier for the object.

    object: "tax.registration"

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

    active_from: number

    Time at which the registration becomes active. Measured in seconds since the Unix epoch.

    country: string

    Two-letter country code (ISO 3166-1 alpha-2).

    created: number

    Time at which the object was created. Measured in seconds since the Unix epoch.

    expires_at: number

    If set, the registration stops being active at this time. If not set, the registration will be active indefinitely. Measured in seconds since the Unix epoch.

    livemode: boolean

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

    The status of the registration. This field is present for convenience and can be deduced from active_from and expires_at.