Interface createProductParams

interface createProductParams {
    businessUnitId: string;
    createdByUserId: string;
    productDescription?: string;
    productName: string;
    vendorId?: string;
    vendorName?: string;
}

Properties

businessUnitId: string

Business Unit ID to associate the product with.

createdByUserId: string

User ID of the user creating the product.

productDescription?: string

The description of the Product being created.

productName: string

The name of the Product being created.

vendorId?: string

Vendor ID to associate the product with. If not specified, vendor_name must be provided.

vendorName?: string

Vendor name to associate the product with. This is used to create the Vendor if the vendor does not currently exist.