Skip to main content

Management section

The lower section of the page provides three management panels:
Panel titlePublic routeMethod
Content Info/v1/content/{generation_id}GET
Cancel Generation/v1/content/generation/cancel/{generation_id}POST
Delete Content/v1/content/{generation_id}DELETE
Each panel has its own response area, so you can inspect the result of each operation separately.

Shared panel structure

All three panels use the same general layout:
AreaWhat it contains
HeaderTitle, method badge, route badge, and cURL copy button
Send barA Send request button
Form areaOne required generation_id input
Response areaJSON result, status badge, latency, or error

Required input

Each management panel requires a valid generation_id.
FieldValue
Labelgeneration_id
Required badgerequired
Typestring<uuid>
DescriptionUnique identifier of the generation
Placeholder00000000-0000-0000-0000-000000000000
If the value is present but not a valid UUID, the panel shows Must be a valid UUID under the field.

Send behavior

The send button follows these rules:
StateButton text
API key not lockedLock API key to send
Request in progressSending...
API key locked and input validSend request

What each action does

Content Info

Use Content Info when you want the current generation record. The panel hint says:
Hint
Get the full record for a single generation
This panel calls GET /v1/content/{generation_id}.

Cancel Generation

Use Cancel Generation when a generation is still in progress. The panel hint says:
Hint
Cancel an in-progress generation
This panel calls POST /v1/content/generation/cancel/{generation_id}.

Delete Content

Use Delete Content when you want to permanently remove the record and its stored output files. The panel hint says:
Hint
Delete a generation and permanently remove its output files from storage
This panel calls DELETE /v1/content/{generation_id}. If the API returns 204 No Content, the page still treats the operation as successful and shows an empty JSON object in the response area.

cURL helper

Each management panel has a copy button that builds a cURL command using:
Included partSource
HTTP methodThe current panel action
Region API URLThe currently selected region
Route pathThe panel route with the current generation_id or {generation_id} placeholder
Authorization headerAuthorization: Bearer YOUR_API_KEY
Use these helpers when you want to move from browser testing to terminal testing.