Version: 202506
Batch update procurement items
PUT/openapi/2025-06/procurements/:procurement_id/items
allows bulk updating of procurement item quantities in a specified procurement.
Request
Path Parameters
procurement_id stringrequired
The unique identifier of the procurement record
- application/json
- Body
- Example
Bodyrequired
- Array [
- ]
items object[]required
The array of items to be added to the procurement record
procurement_item_idstringrequired
The unique identifier of the product
transfer_quantityint32required
The quantity of the item to be transferred
{
"items": [
{
"procurement_item_id": "string",
"transfer_quantity": 0
}
]
}
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
codestring
error code
messagestring
error message
data object
object
{
"code": "string",
"message": "string",
"data": {}
}