← PIM API
PimSelections
Singular: PimSelection — Base URL: https://pim-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.
Example response (recorded) sample
A real, previously recorded GET /:id response of this endpoint — not the live call above. Sensitive fields are masked.
{
"payload": {
"_id": "6a619817ef646eb812607df8",
"name": "PRIME_HARLEQUIN_BERU WHITESUN LARS",
"automate": false,
"interval": 1,
"intervalUnit": "hours",
"createdBy": "6045f4d25704710012485569",
"last_run": "2026-07-23T04:27:03.898Z",
"createdAt": "2026-07-23T04:27:03.899Z",
"updatedAt": "2026-07-23T04:27:03.899Z"
},
"meta": {
"links": [
{
"rel": "self",
"href": "https://pim-api.ayoune.app/pimselections/6a619817ef646eb812607df8",
"method": "get",
"title": "GET",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"relations": [],
"debugId": "6a619819ef646eb812607e24",
"errors": [],
"actions": [
{
"rel": "self",
"action": "COPY",
"title": "MODEL_PIMSELECTION",
"href": "https://api.ayoune.app/pim/pimselections/6a619817ef646eb812607df8/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
},
{
"rel": "self",
"action": "DELETE",
"title": "MODEL_PIMSELECTION",
"href": "https://api.ayoune.app/pim/pimselections/6a619817ef646eb812607df8/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"version": {
"host": "2026.15.0",
"core": "2026.257.1"
},
"rateLimit": {
"limit": "2500",
"remaining": "2491",
"reset": "1784784423",
"resetDate": "Thu Jul 23 2026"
},
"responseTime": 22.515509,
"code": 200,
"status": "success",
"error": false
}
}
Endpoints
| Method | Path | Description | Right |
|---|---|---|---|
| GET | /pimselections |
List with filters/pagination | pim.selections.view |
| GET | /pimselections/:id |
Single record | pim.selections.view |
| POST | /pimselections |
Create new record | pim.selections.new |
| PUT | /pimselections |
Update record | pim.selections.edit |
| DELETE | /pimselections/:id |
Delete record | pim.selections.delete |
SDK
import { aYOUne } from '@tolinax/ayoune';
const ay = new aYOUne('pat_your_token');
// List all
const list = await ay.pim.pimSelections.find().limit(10).exec();
// Single record
const one = await ay.pim.pimSelections.findById('OBJECT_ID').exec();
// Create
const created = await ay.pim.pimSelections.create({ name: 'Foo' });