aYOUne
← PIM API

PimSelections

Singular: PimSelection — Base URL: https://pim-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.

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": "6aa385197a67ad569516922f",
    "name": "VERBAL_GOLD_LOBOT",
    "automate": false,
    "interval": 1,
    "intervalUnit": "hours",
    "createdBy": "6045f4d25704710012485569",
    "last_run": "2026-09-11T04:35:37.530Z",
    "shares": [],
    "createdAt": "2026-09-11T04:35:37.531Z",
    "updatedAt": "2026-09-11T04:35:40.427Z",
    "modifiedBy": "6045f4d25704710012485569"
  },
  "meta": {
    "links": [
      {
        "rel": "self",
        "href": "https://pim-api.ayoune.app/pimselections/6aa385197a67ad569516922f",
        "method": "get",
        "title": "GET",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      }
    ],
    "relations": [],
    "debugId": "6aa3851d7a67ad56951692be",
    "errors": [],
    "actions": [
      {
        "rel": "self",
        "action": "COPY",
        "title": "MODEL_PIMSELECTION",
        "href": "https://api.ayoune.app/pim/pimselections/6aa385197a67ad569516922f/copy",
        "method": "post",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      },
      {
        "rel": "self",
        "action": "DELETE",
        "title": "MODEL_PIMSELECTION",
        "href": "https://api.ayoune.app/pim/pimselections/6aa385197a67ad569516922f",
        "method": "delete",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      }
    ],
    "version": {
      "host": "2026.33.0",
      "core": "2026.335.0"
    },
    "rateLimit": {
      "limit": "2500",
      "remaining": "2475",
      "reset": "1789104929",
      "resetDate": "Fri Sep 11 2026"
    },
    "responseTime": 211.418089,
    "code": 200,
    "status": "success",
    "error": false
  }
}

Endpoints

MethodPathDescriptionRight
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' });

See also