Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
curl --request DELETE \ --url https://api.example.com/merchant/product/delete
{ "success": false, "error": { "status": 404, "code": "PRODUCT_NOT_FOUND", "message": "Product not found" }, "data": null }
Delete a product
curl -X DELETE https://api.transaction.gg/merchant/product/delete \ -H "Authorization: Bearer jwt_token" \ -H "Content-Type: application/json" \ -d '{ "productId": "prod_X4dUuzsMaruQ4UsX" }'
{ "success": true, "data": { "deleted": true, "productId": "prod_X4dUuzsMaruQ4UsX" } }