Alokai
You are reading the documentation for SDK v2, which is no longer the latest version. Switch to current

UpdateBillingAddressParams

Parameters for the updateBillingAddress API endpoint

export interface UpdateBillingAddressParams {
	address: AddressInput & {
        isDefault?: boolean;
    };
	user: {
        defaultBillingAddressId: string;
        version: string;
    };
}

Properties

NameRequiredTypeDescription
addressRequiredAddressInput & { isDefault?: boolean; }Updated shipping address
userRequired{ defaultBillingAddressId: string; version: string; }Current user

Referenced Types

On this page