deleteProductsProductsToFacebookCatalog

Operation Id:
products/productsToFacebookCatalog/delete/post [Official Documentaction]
Methods

  • facebookCatalogId Integer
  • shopId Integer
  • products Array<Integer>
Examples

This function deletes the product with ID 9 from the Facebook catalog with ID 123 for the shop with ID 1.

const result = await idosellRequest.deleteProductsProductsToFacebookCatalog
	.shopId(1)
	.products([9])
	.facebookCatalogId(123)
	.exec()