aYOUne
← AI API

AIPlugins

Singular: AIPlugin — Base URL: https://ai.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 /aiplugins List with filters/pagination ai.aiplugins.view
GET /aiplugins/:id Single record ai.aiplugins.view
POST /aiplugins Create new record ai.aiplugins.new
PUT /aiplugins Update record ai.aiplugins.edit
DELETE /aiplugins/:id Delete record ai.aiplugins.delete

SDK

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

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

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

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

See also