← Project Management API
ChangelogEntries
Singular: ChangelogEntry — Base URL: https://pm-api.ayoune.app — Access: CRUD
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.
Endpoints
| Method | Path | Description | Right |
|---|---|---|---|
| GET | /changelogentries |
List with filters/pagination | pm.changelogentries.view |
| GET | /changelogentries/:id |
Single record | pm.changelogentries.view |
| POST | /changelogentries |
Create new record | pm.changelogentries.new |
| PUT | /changelogentries |
Update record | pm.changelogentries.edit |
| DELETE | /changelogentries/:id |
Delete record | pm.changelogentries.delete |
SDK
import { aYOUne } from '@tolinax/ayoune';
const ay = new aYOUne('pat_your_token');
// List all
const list = await ay.pm.changelogEntries.find().limit(10).exec();
// Single record
const one = await ay.pm.changelogEntries.findById('OBJECT_ID').exec();
// Create
const created = await ay.pm.changelogEntries.create({ name: 'Foo' });