Skip to main content
POST
/
purchase_order
/
bulk_accept
Purchase Order - Bulk Accept
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
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
items
object[]
required

Array of items to accept into inventory

Response

Items accepted into inventory

success
boolean
required

Whether the operation succeeded