Requires write_product access scope. More access scope
The Batch Delete Procurement Items API removes multiple items from a specific procurement order. This enables users to manage procurement orders efficiently by allowing bulk deletion of items.This API is especially useful for:
Cleaning up procurement orders by removing irrelevant or incorrect items.
Simplifying procurement order management by enabling bulk deletion.
Reducing manual efforts required to delete items one by one.
Error responses in the API can be represented using two different fields: errors and error. Both fields provide details about issues encountered during request processing. Below is an explanation of the fields with their respective examples and descriptions.
Field
Type
Example
Description
errors
Array
["invalid procurement_id"]
A list of errors encountered during the request processing.
Field
Type
Example
Description
error
Array
"error": "store is not active"
Indicates an error encountered during the process.
Error Details
Status Code
Message
Possible Reason
Example Response
400
Bad Request
Invalid input format or request structure (e.g., missing required fields or incorrect data types).
Bad Request
Unauthorized
The request is missing valid authentication credentials or the credentials provided are invalid.
Unauthorized
Invalid or empty procurement_id
missing required procurement_id or procurement_id with incorrect UUID types
{ "errors": [ "invalid procurement_id"]}
422
Duplicated procurement_item_id
API request contains multiple entries with the same procurement item id
Invalid or empty procurement_item_id
missing required procurement_item_id or procurement_item_id with incorrect UUID types
{ "errors": ["The procurement cannot be operated" ] }
API Structure Overview
Language
Credentials
Header
URL
Click Try It! to start a request and see the response here!