aYOUne
← Project Management API

BuildWaves

Singular: BuildWave — Base URL: https://pm-api.ayoune.app — Access: CRUD — Machine-readable spec (JSON · YAML)

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 /buildwaves List with filters/pagination pm.buildwaves.view
GET /buildwaves/:id Single record pm.buildwaves.view
POST /buildwaves Create new record pm.buildwaves.new
PUT /buildwaves Update record pm.buildwaves.edit
DELETE /buildwaves/:id Delete record pm.buildwaves.delete

SDK

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

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

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

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

See also