I would like to remove a product from the catalogs
, but I can't find any API
method that do this, here is the documentation.
I know how to get all the products:
https://api.sandbox.paypal.com/v1/catalogs/products?page_size=10&page=1&total_required=true
This returns something like:
{
"products": [
{
"id": "PROD-8DN39312TB525331M",
"name": "Video Streaming Service",
"description": "Video streaming service",
"create_time": "2020-01-07T18:50:01Z",
"links": [
{
"href": "https://api.sandbox.paypal.com/v1/catalogs/products/PROD-8DN39312TB525331M",
"rel": "self",
"method": "GET"
}
]
},
...
Is there an actual way to remove a product?