← Warehouse API
PackConfirmations
Singular: PackConfirmation — Base URL: https://warehouse-api.ayoune.app — Access: CRUD — Machine-readable spec (JSON · YAML)
Try it now
beta
Response (live)
Requests are proxied through the consumer-app to *.ayoune.app. Tokens stay in your browser and are forwarded per call.
Example response (recorded) sample
A real, previously recorded GET /:id response of this endpoint — not the live call above. Sensitive fields are masked.
{
"payload": {
"_id": "6a965c795549b74b33a6cc17",
"status": "in_progress",
"totalBoxes": 0,
"totalItems": 0,
"totalWeight": 0,
"totalVolume": 0,
"note": "MELODIC_JADE_EETH KOTH",
"isDraft": true,
"createdBy": "6045f4d25704710012485569",
"boxes": [],
"createdAt": "2026-09-01T05:02:49.855Z",
"updatedAt": "2026-09-01T05:02:49.855Z",
"shares": []
},
"meta": {
"links": [
{
"rel": "self",
"href": "https://warehouse-api.ayoune.app/packconfirmations/6a965c795549b74b33a6cc17",
"method": "get",
"title": "GET",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"relations": [],
"debugId": "6aa388dc55a49167878a3fea",
"errors": [],
"actions": [],
"version": {
"host": "2026.22.1",
"core": "2026.334.1"
},
"rateLimit": {
"limit": "2500",
"remaining": "2459",
"reset": "1789105668",
"resetDate": "Fri Sep 11 2026"
},
"responseTime": 97.796562,
"code": 200,
"status": "success",
"error": false
}
}
Endpoints
| Method | Path | Description | Right |
|---|---|---|---|
| GET | /packconfirmations |
List with filters/pagination | warehouse.packconfirmations.view |
| GET | /packconfirmations/:id |
Single record | warehouse.packconfirmations.view |
| POST | /packconfirmations |
Create new record | warehouse.packconfirmations.new |
| PUT | /packconfirmations |
Update record | warehouse.packconfirmations.edit |
| DELETE | /packconfirmations/:id |
Delete record | warehouse.packconfirmations.delete |
SDK
import { aYOUne } from '@tolinax/ayoune';
const ay = new aYOUne('pat_your_token');
// List all
const list = await ay.warehouse.packConfirmations.find().limit(10).exec();
// Single record
const one = await ay.warehouse.packConfirmations.findById('OBJECT_ID').exec();
// Create
const created = await ay.warehouse.packConfirmations.create({ name: 'Foo' });