API Reference · Workloads
Approve an AI app's pending dependency plan
An AI-created app can declare managed dependencies (postgres, redis) in its repo manifest (`.livellm.yaml`). The platform records them as a pending plan instead of creating them silently. Approving creates the managed resources (e.g. `<app>-db`) and wires their connection env into the app; they count toward the workspace's plan.
POST/v1/tenants/{name}/workloads/{id}/manifest/approve
Authorization
x-api-keystringrequired
Your per-workspace API key, e.g. llc_AbC123…. Also accepted as Authorization: Bearer <key>. Mint keys on your workspace's API keys page — each key belongs to one workspace.
Path parameters
namestringrequired
Workspace (tenant) name.
idstringrequired
Workload id within the workspace.
Response
200 — Dependencies created and wired.
appliedarray
curl -X POST https://api.live-llm.com/v1/tenants/acme/workloads/web/manifest/approve \ -H "x-api-key: $LIVELLM_KEY"
Try itPOSThttps://api.live-llm.com/v1/tenants/{name}/workloads/{id}/manifest/approve
Fill required path params: name, id.
Example response200
{
"applied": [
"storage app-db (postgres 16, 20Gi)"
]
}