0

I am trying to to Update and Delete product to facebook product catalog with graph api.

I followed this documentation but this endpoint only allow read and create new product to a product catalog but update and delete is not possible from this endpoint. Is it possible to do??

pi3o1416
  • 96
  • 5

1 Answers1

0

The documentation here is a bit confusing. There is an older endpoint for /batch. This is a legacy endpoint, but the documentation here might help you craft a payload for the new endpoint.

The items_batch endpoint should be the most up-to-date endpoint for these operations.

The autogenerated documentation claims that it doesn't support update or delete, however it should actually support CREATE, UPDATE, and DELETE.

I believe that you pass it a JSON object containing multiple product items and the CRUD verb.

spyderman4g63
  • 4,087
  • 4
  • 22
  • 31