aYOUne
← Warehouse API

PutAwayOrders

Singular: PutAwayOrder — Base URL: https://warehouse-api.ayoune.app — Access: CRUD

play_circle Try it now beta

Requests are proxied through the consumer-app to *.ayoune.app. Tokens stay in your browser and are forwarded per call.

Endpoints

MethodPathDescriptionRight
GET /putawayorders List with filters/pagination warehouse.putawayorders.view
GET /putawayorders/:id Single record warehouse.putawayorders.view
POST /putawayorders Create new record warehouse.putawayorders.new
PUT /putawayorders Update record warehouse.putawayorders.edit
DELETE /putawayorders/:id Delete record warehouse.putawayorders.delete

SDK

import { aYOUne } from '@tolinax/ayoune';
const ay = new aYOUne('pat_your_token');

// List all
const list = await ay.warehouse.putAwayOrders.find().limit(10).exec();

// Single record
const one = await ay.warehouse.putAwayOrders.findById('OBJECT_ID').exec();

// Create
const created = await ay.warehouse.putAwayOrders.create({ name: 'Foo' });

See also