Skip to main content
POST
/
inventory
/
serials
Bulk receive serial numbers
curl --request POST \
  --url https://api.arcuserp.com/v1/inventory/serials \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "product_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "serials": [
    "<string>"
  ],
  "location_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "received_at": "2023-11-07T05:31:56Z",
  "source_reference": "<string>"
}
'
{
  "object": "bulk_serial_receive_result",
  "processed": 123,
  "created": 123,
  "failed": 123,
  "errors": [
    {
      "index": 123,
      "serial_number": "<string>",
      "error": "<string>",
      "code": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.arcuserp.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key issued per entity via Settings > Developers > API Keys. Each key carries scopes (e.g. orders:read, products:write). Bearer token format: Authorization: Bearer ark_live_ent_Test keys use ark_test_ent_. Both are issued per entity
via Settings > Developers > API Keys.

Body

application/json
product_id
string<uuid>
required
serials
(string | object)[]
required
Maximum array length: 1000
location_id
string<uuid>
received_at
string<date-time>
source_reference
string

Response

Bulk receive result (partial success supported)

object
enum<string>
Available options:
bulk_serial_receive_result
processed
integer
created
integer
failed
integer
errors
object[]