UNPKG

zca-js

Version:

Unofficial Zalo API for JavaScript

37 lines (33 loc) 1.24 kB
'use strict'; var ZaloApiError = require('../Errors/ZaloApiError.cjs'); var utils = require('../utils.cjs'); const deleteProductCatalogFactory = utils.apiFactory()((api, _, utils) => { const serviceURL = utils.makeURL(`${api.zpwServiceMap.catalog[0]}/api/prodcatalog/product/mdelete`); /** * Delete product catalog? * * @param payload payload * * @note this API is used for zBusiness * @throws {ZaloApiError} */ return async function deleteProductCatalog(payload) { if (!Array.isArray(payload.productIds)) payload.productIds = [payload.productIds]; const params = { product_ids: payload.productIds, catalog_id: payload.catalogId, }; const encryptedParams = utils.encodeAES(JSON.stringify(params)); if (!encryptedParams) throw new ZaloApiError.ZaloApiError("Failed to encrypt params"); const response = await utils.request(serviceURL, { method: "POST", body: new URLSearchParams({ params: encryptedParams, }), }); return utils.resolve(response); }; }); exports.deleteProductCatalogFactory = deleteProductCatalogFactory;