curl --request POST \
--url https://api.skulabs.com/purchase_order/bulk_accept \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"items": [
{
"po_id": "<string>",
"location_id": "<string>",
"quantity": 123,
"item_id": "<string>",
"kit_id": "<string>",
"serial_numbers": [
"<string>"
],
"note": "<string>"
}
]
}
'{
"success": true
}Accept items on multiple purchase orders in bulk, updating received quantities.
curl --request POST \
--url https://api.skulabs.com/purchase_order/bulk_accept \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"items": [
{
"po_id": "<string>",
"location_id": "<string>",
"quantity": 123,
"item_id": "<string>",
"kit_id": "<string>",
"serial_numbers": [
"<string>"
],
"note": "<string>"
}
]
}
'{
"success": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Array of items to accept into inventory
Show child attributes
Items accepted into inventory
Whether the operation succeeded