latestOpenAPI 3.0.0Proprietary2026-08-22131410675.6 KB

8d8a7cf79204

shipments

Assign user to shipments

Assigns a user to one or more shipments. You can assign a single user to up to 500 shipments at once.

post/v1/shipments/user

Request body

shipment_idsSeId[] required

Array of shipment IDs to assign the user to

user_idstring uuid required

The ID of the user to assign to the shipments

Example request

{
  "shipment_ids": [
    "se-202902255",
    "se-202902256"
  ],
  "user_id": "a2df9fa5-b7ee-467f-be4e-9c660542c187"
}

Response

The request was a success.

shipment_idsSeId[]

Array of shipment IDs that were assigned to the user

user_idstring uuid

The ID of the user assigned to the shipments

Example response

{
  "shipment_ids": [
    "se-202902255",
    "se-202902256"
  ],
  "user_id": "a2df9fa5-b7ee-467f-be4e-9c660542c187"
}