• Get collections of catalog

    Parameters

    • chatId: string
    • Optionalqnt: number
    • OptionalproductsCount: number

    Returns Promise<ProductCollModel[]>

    Your collections of products

    // Retrieve 20 collections of chat
    const myCatalog = await WPP.catalog.getCollections('552198554578@c.us', '20');

    // Retrieve 20 collections of chat and products arrays limit with 10 products
    const myCatalog = await WPP.catalog.getCollections('552198554578@c.us', '20', '10');