← AI API
AIFeedback
Singular: AIFeedback — Base URL: https://ai.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 | /aifeedback |
List with filters/pagination | ai.feedback.view |
| GET | /aifeedback/:id |
Single record | ai.feedback.view |
| POST | /aifeedback |
Create new record | ai.feedback.new |
| PUT | /aifeedback |
Update record | ai.feedback.edit |
| DELETE | /aifeedback/:id |
Delete record | ai.feedback.delete |
SDK
import { aYOUne } from '@tolinax/ayoune';
const ay = new aYOUne('pat_your_token');
// List all
const list = await ay.ai.aIFeedback.find().limit(10).exec();
// Single record
const one = await ay.ai.aIFeedback.findById('OBJECT_ID').exec();
// Create
const created = await ay.ai.aIFeedback.create({ name: 'Foo' });