memμrondocs
Console
API REFERENCE

Add placement

Place a memory or collection inside a collection, optionally inheriting the parent scope.

Requires authentication — a Bearer token or X-Memuron-Actor-Id header.

Path parameters

collection_idstringrequired

Body parameters

child_idstringrequired

namestringrequired

inherit_parent_scopebooleanoptional

POST/memuron/collections/{collection_id}/placements
curl -X POST https://api.memuron.com/memuron/collections/{collection_id}/placements \
  -H "Content-Type: application/json"
200 OK
{
  "status": "success",
  "placement": {
    "id": "placement_…",
    "parent_id": "…",
    "child_id": "…"
  }
}