aYOUne
← Configuration API

ComputingEntityTemplates

Singular: ComputingEntityTemplate — Base URL: https://config-api.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.

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": "6a618c2031196b877e84c372",
    "provider": "azure",
    "name": "INAPPROPRIATE_JADE_SAN HILL",
    "programs": [],
    "binaries": [],
    "configFiles": [],
    "bootstrapTtlHours": 24,
    "updatePolicy": "optional",
    "updateForceCountdownSec": 30,
    "createdBy": "6045f4d25704710012485569",
    "createdAt": "2026-07-23T03:36:00.429Z",
    "updatedAt": "2026-07-23T03:36:00.429Z"
  },
  "meta": {
    "links": [
      {
        "rel": "self",
        "href": "https://config-api.ayoune.app/computingentitytemplates/6a618c2031196b877e84c372",
        "method": "get",
        "title": "GET",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      }
    ],
    "relations": [
      {
        "rel": "Consumers",
        "title": "MODEL_CONSUMER",
        "href": "https://api.ayoune.app/crm/consumers",
        "method": "get",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ],
        "right": "crm.consumers"
      },
      {
        "rel": "Products",
        "title": "MODEL_PRODUCT",
        "href": "https://api.ayoune.app/pim/products",
        "method": "get",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ],
        "right": "pim.products"
      }
    ],
    "debugId": "6a62dd0730b7d778029e693c",
    "errors": [],
    "actions": [
      {
        "rel": "self",
        "action": "COPY",
        "title": "MODEL_COMPUTINGENTITYTEMPLATE",
        "href": "https://api.ayoune.app/config/computingentitytemplates/6a618c2031196b877e84c372/copy",
        "method": "post",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      },
      {
        "rel": "self",
        "action": "DELETE",
        "title": "MODEL_COMPUTINGENTITYTEMPLATE",
        "href": "https://api.ayoune.app/config/computingentitytemplates/6a618c2031196b877e84c372/copy",
        "method": "post",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      }
    ],
    "version": {
      "host": "2026.94.0",
      "core": "2026.258.0"
    },
    "rateLimit": {
      "limit": "2500",
      "remaining": "2154",
      "reset": "1784865648",
      "resetDate": "Fri Jul 24 2026"
    },
    "responseTime": 187.514311,
    "code": 200,
    "status": "success",
    "error": false
  }
}

Endpoints

MethodPathDescriptionRight
GET /computingentitytemplates List with filters/pagination config.computingentitytemplates.view
GET /computingentitytemplates/:id Single record config.computingentitytemplates.view
POST /computingentitytemplates Create new record config.computingentitytemplates.new
PUT /computingentitytemplates Update record config.computingentitytemplates.edit
DELETE /computingentitytemplates/:id Delete record config.computingentitytemplates.delete

SDK

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

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

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

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

See also