← Einkauf API
InternalOrders
Singular: InternalOrder — Base-URL: https://purchase-api.ayoune.app — Zugriff: CRUD
Jetzt ausprobieren
beta
Response (live)
Requests werden über den consumer-app Proxy an *.ayoune.app weitergeleitet. Tokens bleiben im Browser und werden pro Call mitgesendet.
Beispiel-Response (aufgezeichnet) Beispiel
Eine echte, zuvor aufgezeichnete GET /:id-Antwort dieses Endpunkts — nicht der Live-Call oben. Sensible Felder sind maskiert.
{
"payload": {
"_id": "65ce16a353515e300df36bb7",
"suppliers": [],
"needsInternalApproval": false,
"needsProduction": false,
"hasProductionOrders": false,
"editors": [],
"team": [],
"confirmed": false,
"destinationCountries": [],
"destinationCities": [],
"destinationCity": [],
"groups": [],
"othergroups": [],
"skus": [],
"stock_booked": false,
"hasQuota": false,
"hasDuration": false,
"hasCheckLists": false,
"hasSupplierFeedback": false,
"hasRequirements": false,
"status": "Neu",
"text_pre": "",
"text_post": "",
"materialLocked": false,
"totalWeight": 0,
"totalVolume": 0,
"totalTime": 0,
"totalTimeHours": 0,
"totalTimeDays": 0,
"totalTimeWeeks": 0,
"totalTimeMonths": 0,
"final_discount_percent": 0,
"final_discount_percent_amount": 0,
"final_discount": 0,
"coupon_discount": 0,
"shippingCosts": 0,
"sum": 0,
"totalDiscount": 0,
"net_total": 0,
"net_total_1": 0,
"net_total_2": 0,
"tax_1": 0,
"tax_2": 0,
"total": 0,
"monthly_part": 0,
"total_part": 0,
"external_monthly_part": 0,
"external_total_part": 0,
"foreignCountry": false,
"createdBy": "6045f4d25704710012485569",
"material": [],
"machines": [],
"skills": [],
"positions": [],
"createdAt": "2024-02-15T13:50:27.916Z",
"updatedAt": "2024-02-15T13:50:27.916Z"
},
"meta": {
"links": [
{
"rel": "self",
"href": "https://purchase-api.ayoune.app/internalorders/65ce16a353515e300df36bb7",
"method": "get",
"title": "GET",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"relations": [
{
"rel": "Consumers",
"title": "MODEL_CONSUMER",
"href": "https://api.ayoune.app/crm/consumers",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "crm.consumers"
},
{
"rel": "Consumers",
"title": "MODEL_CONSUMER",
"href": "https://api.ayoune.app/crm/consumers",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "crm.consumers"
},
{
"rel": "ProductionOrders",
"title": "MODEL_PRODUCTIONORDER",
"href": "https://api.ayoune.app/production/productionorders",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "production.productionorders"
},
{
"rel": "ProductionSchemas",
"title": "MODEL_PRODUCTIONSCHEMA",
"href": "https://api.ayoune.app/config/productionschemas",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "config.productionschemas"
},
{
"rel": "Projects",
"title": "MODEL_PROJECT",
"href": "https://api.ayoune.app/pm/projects",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "pm.projects"
},
{
"rel": "Offers",
"title": "MODEL_OFFER",
"href": "https://api.ayoune.app/sale/offers",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "sale.offers"
},
{
"rel": "Assignments",
"title": "MODEL_ASSIGNMENT",
"href": "https://api.ayoune.app/sale/assignments",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "sale.assignments"
}
],
"debugId": "6a6198bb1496f64392e2fed4",
"errors": [],
"actions": [
{
"rel": "self",
"action": "COPY",
"title": "MODEL_INTERNALORDER",
"href": "https://api.ayoune.app/purchase/internalorders/65ce16a353515e300df36bb7/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
},
{
"rel": "self",
"action": "DELETE",
"title": "MODEL_INTERNALORDER",
"href": "https://api.ayoune.app/purchase/internalorders/65ce16a353515e300df36bb7/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"version": {
"host": "2026.10.0",
"core": "2026.257.1"
},
"rateLimit": {
"limit": "2500",
"remaining": "2465",
"reset": "1784784576",
"resetDate": "Thu Jul 23 2026"
},
"responseTime": 402.69708,
"code": 200,
"status": "success",
"error": false
}
}
Endpunkte
| Methode | Path | Beschreibung | Right |
|---|---|---|---|
| GET | /internalorders |
Liste mit Filtern/Paginierung | purchase.internalorders.view |
| GET | /internalorders/:id |
Einzelner Datensatz | purchase.internalorders.view |
| POST | /internalorders |
Neuen Datensatz erstellen | purchase.internalorders.new |
| PUT | /internalorders |
Datensatz aktualisieren | purchase.internalorders.edit |
| DELETE | /internalorders/:id |
Datensatz löschen | purchase.internalorders.delete |
SDK
import { aYOUne } from '@tolinax/ayoune';
const ay = new aYOUne('pat_your_token');
// Alle abrufen
const list = await ay.purchase.internalOrders.find().limit(10).exec();
// Einzelnen Datensatz
const one = await ay.purchase.internalOrders.findById('OBJECT_ID').exec();
// Erstellen
const created = await ay.purchase.internalOrders.create({ name: 'Foo' });