General Information
Service | API | Method |
---|---|---|
multitenant | /product | DELETE |
Data Model: Products
Workflow:
Input
Type: application/json
Name | Source | Mandatory | Type | Special Format | Description |
---|---|---|---|---|---|
id | Query | NO | String | N/A | The product id |
code | Query | NO | String | The Length is 4 - 5 | The product code |
Output
Valid Response
Valid Response Sample
{ result": true, "data": { "n": 1, "ok": 1 } }
Invalid Response
Error Response Sample
{ "result":false, "errors":{ "codes":[460], "details":[ { "code":460, "message":"Unable to find products" } ] } }
Error Codes
Code | Description |
---|---|
400 | Business logic required data are missing |
460 | Unable to find products |
466 | You are not allowed to remove the product you are currently logged in with |
500 | This record is locked. You cannot modify or delete it |
602 | Model error: + %model_error% |
Example (CURL)
Request
Calling delete Product API
> CURL -X DELETE http://127.0.0.1:4004/product?id=%product_id%
Response
Delete Product API response
{ "result": true, "data":{...} }
0 Comments