Patch a load by ID
PATCH/loads/:id
Partially update information about a specific load.
Request
Path Parameters
id stringrequired
The ID of the load to retrieve, update or delete
- application/json
Body
required
properties object
slots object
1 object
name string
2 object
name string
Responses
- 200
- 401
- 403
- 404
- 500
Load patched
- application/json
- Schema
- Example (from schema)
Schema
_id uuid
name string
setName string
loadType string
maxWeight number
loadPositions string[]
properties object
slots object
1 object
name string
2 object
name string
createdAt date-time
updatedAt date-time
{
"_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"setName": "string",
"loadType": "string",
"maxWeight": 0,
"loadPositions": [
"string"
],
"properties": {
"slots": {
"1": {
"name": "string"
},
"2": {
"name": "string"
}
}
},
"createdAt": "2025-06-05T13:40:40.621Z",
"updatedAt": "2025-06-05T13:40:40.621Z"
}
Unauthorized.
- application/json
- Schema
- Example (from schema)
- Example
Schema
- any
{
"message": "Authentication token not provided."
}
{
"message": "Authentication token not provided."
}
Forbidden.
- application/json
- Schema
- Example (from schema)
- Example
Schema
- any
{
"message": "Access to this resource is forbidden."
}
{
"message": "Access to this resource is forbidden."
}
Resource not found.
- application/json
- Schema
- Example (from schema)
- Example
Schema
- any
{
"message": "Resource not found."
}
{
"message": "Resource not found."
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
- Example
Schema
- any
{
"message": "Internal Server Error. Please try again later."
}
{
"message": "Internal Server Error. Please try again later."
}
Loading...