{ "info": { "_postman_id": "65bae0cb-c40b-4da5-925c-72a81b167d28", "name": "Prezent Platform Audiences AutoGenerator API", "description": "The Prezent Platform API exposes Prezent's AutoGenerator, Template Converter,\nAudiences, Themes, and File-upload services as a uniform JSON HTTP API.\n\nThis contract describes the **target agent-ready shape** of the API: every\ndocumented endpoint returns a uniform success envelope `{ \"success\": true,\n\"data\": { ... } }` or a uniform error envelope `{ \"success\": false,\n\"data\": null, \"error\": { \"code\": \"...\", \"message\": \"...\", \"details\": { ... } } }`.\nError codes are drawn from a stable catalog (see `ErrorCode`). The contract\nis additive: handlers may continue to emit legacy keys alongside the\ndocumented ones for backwards compatibility, so schemas explicitly allow\nadditional properties at the envelope and data levels.\n\nSeveral endpoints kick off long-running background work and return a\n`callback_id` that the client polls against a corresponding status\nendpoint. The canonical async polling endpoint for the Template Converter\nfamily is **`GET /api/v2/template-converter/status/{callback_id}`** which\nuses strict HTTP-status mapping (200 only on workflow success, 4xx/5xx on\nworkflow failure). The v1 polling endpoint at\n`/api/v1/template-converter/status/{callbackId}` (and its REST alias\n`GET /api/v1/template-conversions/{callback_id}`) continues to be served\nwith legacy semantics (HTTP 200 with `status` field) and is intentionally\nomitted from this documentation.\n\n**REST resource aliases (v1.1).** AutoGenerator and Template Converter\nendpoints are documented here under their REST-resource path names\n(`/api/v1/autogenerations`, `/api/v1/template-conversions`). The legacy\nRPC-style paths under `/api/v1/autogenerator/*` and\n`/api/v1/template-converter/*` continue to be served indefinitely; they\nreturn a `Deprecation: true` header pointing to the successor alias.\n\n**Conventions that apply to every endpoint** (full reference in the\ncompanion guides on this documentation site):\n\n- **Auth:** API key as a Bearer token \u2014 `Authorization: Bearer `.\n Each key is scoped to an allow-list of endpoint paths; an out-of-scope\n call returns `404 ENDPOINT_NOT_FOUND`.\n- **Rate limits:** gateway throttle 10 req/s sustained, 5 burst,\n 1,000 req/day per key; per-company per-category 60-second sliding\n windows; annual quotas (50,000 slide generations/yr, 1,000,000\n downloads/yr). Limit breaches return `429` with `error.code`\n `TOO_MANY_REQUESTS` (gateway), `RATE_LIMIT_EXCEEDED` (per-category),\n or `USAGE_LIMIT_EXCEEDED` (annual).\n- **Errors:** every error uses the `{ success:false, data:null, error:{\n code, message, details } }` envelope with stable, documented `code`\n values.\n- **Idempotency & pagination:** mutating requests accept an\n `Idempotency-Key`; list endpoints accept opt-in `limit`/`cursor`\n paging.\n\n**Building with an AI agent?** Prezent ships a first-class Model Context\nProtocol (MCP) server. The hosted endpoint is\n`https://mcp.myprezent.com/mcp` (OAuth 2.1, works with Claude.ai Custom\nConnectors); a local stdio server is published on PyPI as\n`prezent-mcp-server` and plugs into Claude Desktop, Cursor, Cline,\nContinue, and Zed. The MCP tools wrap the same REST endpoints\ndescribed here.\n\n**Official SDKs.** Typed REST clients are published for Python and\nTypeScript (`prezent-sdk`) \u2014 generated from and versioned against this\nspec. For other languages, generate a client from this document.\n\n**Out of scope of this document:** SCIM endpoints under `/api/v1/scim/*`.\nThose endpoints conform to RFC 7644 (SCIM 2.0) and follow a different\nenvelope (`schemas`, `Resources`, `totalResults`, etc.). They are\ndocumented separately at /docs/scim-user-management.\n\n\nContact Support:\n Name: Prezent API Support\n Email: support@prezent.ai", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "lastUpdatedBy": "35240", "uid": "35240-65bae0cb-c40b-4da5-925c-72a81b167d28" }, "item": [ { "name": "api", "item": [ { "name": "v1", "item": [ { "name": "autogenerations", "item": [ { "name": "{callback_id}", "item": [ { "name": "downloads", "item": [ { "name": "Create a download artefact for an AutoGenerator deck", "id": "74a9e1a9-d8c1-42e8-b902-792e22fbc63b", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"sources\": {\n \"add_sources_to_slides_note\": \"\"\n },\n \"speaker_notes\": {\n \"add_speaker_notes_to_slides_note\": \"\",\n \"speaker_notes_type\": \"\"\n },\n \"outputPath\": \"\",\n \"sections\": [\n \"\",\n \"\"\n ],\n \"outputFormat\": \"\",\n \"outputBucket\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/downloads", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "downloads" ], "variable": [ { "id": "c5e182f9-7947-4fc7-8009-f4766f4eb090", "key": "callback_id", "value": "", "description": "(Required) Server-issued opaque identifier returned by an async kick-off endpoint. Used to poll status or fetch derived artefacts." } ] }, "description": "Synchronously merges all slides for the given `callback_id` into a\nsingle PowerPoint (or PDF, depending on `outputFormat`) and returns\na signed download URL. The merge step can take up to 60 seconds.\nSubject to the `AUTO_GEN_DOWNLOAD` usage limit in addition to the\nnormal rate limits.\n" }, "response": [ { "id": "51797cdd-51cf-4f32-a77b-6e4a5c13fffa", "name": "Merged deck produced; signed URL returned.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"sources\": {\n \"add_sources_to_slides_note\": \"\"\n },\n \"speaker_notes\": {\n \"add_speaker_notes_to_slides_note\": \"\",\n \"speaker_notes_type\": \"\"\n },\n \"outputPath\": \"\",\n \"sections\": [\n \"\",\n \"\"\n ],\n \"outputFormat\": \"\",\n \"outputBucket\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/downloads", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "downloads" ], "variable": [ { "key": "callback_id" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"data\": {\n \"download_url\": \"\",\n \"status\": \"success\",\n \"output_file\": \"\",\n \"message\": \"\"\n },\n \"success\": \"\"\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-51797cdd-51cf-4f32-a77b-6e4a5c13fffa" }, { "id": "8d2b1735-e8ef-4d5e-85d6-a897b51cead4", "name": "Generic client error. `error.code` is one of `BAD_REQUEST`, `INVALID_JSON`, `MISSING_REQUIRED_FIELD`, `MISSING_QUERY_PARAM`, `MISSING_CALLBACK_ID`, `MISSING_SLIDES_ARRAY`, `MISSING_PROMPT`, `MISSING_TEMPLATE_ID`, `MISSING_FILE_CONTENT`, `MISSING_SHARE_DET", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"sources\": {\n \"add_sources_to_slides_note\": \"\"\n },\n \"speaker_notes\": {\n \"add_speaker_notes_to_slides_note\": \"\",\n \"speaker_notes_type\": \"\"\n },\n \"outputPath\": \"\",\n \"sections\": [\n \"\",\n \"\"\n ],\n \"outputFormat\": \"\",\n \"outputBucket\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/downloads", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "downloads" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-8d2b1735-e8ef-4d5e-85d6-a897b51cead4" }, { "id": "b6e7a14c-2771-4b43-9184-9a6b76b49067", "name": "Caller did not present a valid Bearer token, or the token has\nexpired. `error.code` is one of `UNAUTHORIZED`, `INVALID_API_KEY`,\n`EXPIRED_API_KEY`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"sources\": {\n \"add_sources_to_slides_note\": \"\"\n },\n \"speaker_notes\": {\n \"add_speaker_notes_to_slides_note\": \"\",\n \"speaker_notes_type\": \"\"\n },\n \"outputPath\": \"\",\n \"sections\": [\n \"\",\n \"\"\n ],\n \"outputFormat\": \"\",\n \"outputBucket\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/downloads", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "downloads" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-b6e7a14c-2771-4b43-9184-9a6b76b49067" }, { "id": "a945b13e-0986-44d8-842e-080499348ed5", "name": "Caller is authenticated but not allowed to perform this operation. `error.code` is `FORBIDDEN`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"sources\": {\n \"add_sources_to_slides_note\": \"\"\n },\n \"speaker_notes\": {\n \"add_speaker_notes_to_slides_note\": \"\",\n \"speaker_notes_type\": \"\"\n },\n \"outputPath\": \"\",\n \"sections\": [\n \"\",\n \"\"\n ],\n \"outputFormat\": \"\",\n \"outputBucket\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/downloads", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "downloads" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-a945b13e-0986-44d8-842e-080499348ed5" }, { "id": "bd5af390-5869-4d35-ae7f-2da0bf1efc52", "name": "Requested endpoint or resource does not exist. `error.code` is\none of `ENDPOINT_NOT_FOUND`, `RESOURCE_NOT_FOUND`, `NOT_FOUND`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"sources\": {\n \"add_sources_to_slides_note\": \"\"\n },\n \"speaker_notes\": {\n \"add_speaker_notes_to_slides_note\": \"\",\n \"speaker_notes_type\": \"\"\n },\n \"outputPath\": \"\",\n \"sections\": [\n \"\",\n \"\"\n ],\n \"outputFormat\": \"\",\n \"outputBucket\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/downloads", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "downloads" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-bd5af390-5869-4d35-ae7f-2da0bf1efc52" }, { "id": "23cf0a9a-c891-467b-ada8-31b3adbeb431", "name": "Request was well-formed but failed semantic validation.\n`error.code` is one of `INVALID_INPUT`, `UNPROCESSABLE_ENTITY`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"sources\": {\n \"add_sources_to_slides_note\": \"\"\n },\n \"speaker_notes\": {\n \"add_speaker_notes_to_slides_note\": \"\",\n \"speaker_notes_type\": \"\"\n },\n \"outputPath\": \"\",\n \"sections\": [\n \"\",\n \"\"\n ],\n \"outputFormat\": \"\",\n \"outputBucket\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/downloads", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "downloads" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Unprocessable Entity (WebDAV) (RFC 4918)", "code": 422, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-23cf0a9a-c891-467b-ada8-31b3adbeb431" }, { "id": "80998d30-29c8-42e2-a7ce-8fa0b3653da6", "name": "Rate limit, usage limit, or gateway-level throttle exceeded.\n`error.code` is `TOO_MANY_REQUESTS` (gateway throttle),\n`RATE_LIMIT_EXCEEDED` (per-category), or `USAGE_LIMIT_EXCEEDED`\n(annual quota).\n\nDefault limits (all configurable per company/key):\n- Gate", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"sources\": {\n \"add_sources_to_slides_note\": \"\"\n },\n \"speaker_notes\": {\n \"add_speaker_notes_to_slides_note\": \"\",\n \"speaker_notes_type\": \"\"\n },\n \"outputPath\": \"\",\n \"sections\": [\n \"\",\n \"\"\n ],\n \"outputFormat\": \"\",\n \"outputBucket\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/downloads", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "downloads" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Limit", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Remaining", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Reset", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-80998d30-29c8-42e2-a7ce-8fa0b3653da6" }, { "id": "01c7c758-6813-42ef-ae07-3a97de9d7705", "name": "Unexpected server error. `error.code` is `INTERNAL_SERVER_ERROR`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"sources\": {\n \"add_sources_to_slides_note\": \"\"\n },\n \"speaker_notes\": {\n \"add_speaker_notes_to_slides_note\": \"\",\n \"speaker_notes_type\": \"\"\n },\n \"outputPath\": \"\",\n \"sections\": [\n \"\",\n \"\"\n ],\n \"outputFormat\": \"\",\n \"outputBucket\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/downloads", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "downloads" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-01c7c758-6813-42ef-ae07-3a97de9d7705" }, { "id": "f51988da-91a0-4ef4-9a14-538446d02e9d", "name": "Service is temporarily unavailable (downstream dependency unhealthy). `error.code` is `SERVICE_UNAVAILABLE` or `EXTERNAL_SERVICE_ERROR`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"sources\": {\n \"add_sources_to_slides_note\": \"\"\n },\n \"speaker_notes\": {\n \"add_speaker_notes_to_slides_note\": \"\",\n \"speaker_notes_type\": \"\"\n },\n \"outputPath\": \"\",\n \"sections\": [\n \"\",\n \"\"\n ],\n \"outputFormat\": \"\",\n \"outputBucket\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/downloads", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "downloads" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Service Unavailable", "code": 503, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-f51988da-91a0-4ef4-9a14-538446d02e9d" }, { "id": "1ec049f5-c180-4515-bb22-a37181cdd73b", "name": "A downstream call timed out. `error.code` is `GATEWAY_TIMEOUT`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"sources\": {\n \"add_sources_to_slides_note\": \"\"\n },\n \"speaker_notes\": {\n \"add_speaker_notes_to_slides_note\": \"\",\n \"speaker_notes_type\": \"\"\n },\n \"outputPath\": \"\",\n \"sections\": [\n \"\",\n \"\"\n ],\n \"outputFormat\": \"\",\n \"outputBucket\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/downloads", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "downloads" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Gateway Timeout", "code": 504, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-1ec049f5-c180-4515-bb22-a37181cdd73b" } ], "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-74a9e1a9-d8c1-42e8-b902-792e22fbc63b" } ], "id": "32f6babb-6867-4c9c-b144-ccc9ef1658f1", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-32f6babb-6867-4c9c-b144-ccc9ef1658f1" }, { "name": "regenerations", "item": [ { "name": "Create a regeneration of an AutoGenerator deck", "id": "78dc4d6d-d03b-4c88-b631-ec486891bd41", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"audience\": \"\",\n \"template_code\": \"\",\n \"slide_override\": {\n \"eiusmod_aa\": -80045822.89062357\n },\n \"story_content_override\": {\n \"officia_a\": false\n },\n \"context\": {\n \"labore_9a\": \"enim dolore\"\n },\n \"duration\": \"\",\n \"voice_settings\": {\n \"voluptate_5\": 88167109.45645091\n },\n \"data_sources_settings\": {\n \"esse8\": true,\n \"ind18\": \"sint minim\"\n },\n \"preserve_text\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/regenerations?operation=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "regenerations" ], "query": [ { "description": "(Required) The regenerate sub-operation (for example `node_change`, `slide_regenerate`).", "key": "operation", "value": "" } ], "variable": [ { "id": "5c6223f5-3c45-4ea6-b329-dd3dfbd6f44b", "key": "callback_id", "value": "", "description": "(Required) Server-issued opaque identifier returned by an async kick-off endpoint. Used to poll status or fetch derived artefacts." } ] }, "description": "Re-runs a portion of an existing AutoGenerator deck \u2014 typically a\nslide, node, or section \u2014 and returns a new `callback_id` to poll.\nCounted as a fresh generation against the `AUTO_GEN` usage cap.\n" }, "response": [ { "id": "cc418144-8fa6-47c6-a45e-b7b9fe7b3122", "name": "Regenerate job accepted; poll the returned `new_callback_id`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"audience\": \"\",\n \"template_code\": \"\",\n \"slide_override\": {\n \"eiusmod_aa\": -80045822.89062357\n },\n \"story_content_override\": {\n \"officia_a\": false\n },\n \"context\": {\n \"labore_9a\": \"enim dolore\"\n },\n \"duration\": \"\",\n \"voice_settings\": {\n \"voluptate_5\": 88167109.45645091\n },\n \"data_sources_settings\": {\n \"esse8\": true,\n \"ind18\": \"sint minim\"\n },\n \"preserve_text\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/regenerations?operation=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "regenerations" ], "query": [ { "description": "(Required) The regenerate sub-operation (for example `node_change`, `slide_regenerate`).", "key": "operation", "value": "" } ], "variable": [ { "key": "callback_id" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"data\": {\n \"new_callback_id\": \"\",\n \"message\": \"\"\n },\n \"success\": \"\"\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-cc418144-8fa6-47c6-a45e-b7b9fe7b3122" }, { "id": "ac62d967-a280-42e9-b625-c76232503d7b", "name": "Generic client error. `error.code` is one of `BAD_REQUEST`, `INVALID_JSON`, `MISSING_REQUIRED_FIELD`, `MISSING_QUERY_PARAM`, `MISSING_CALLBACK_ID`, `MISSING_SLIDES_ARRAY`, `MISSING_PROMPT`, `MISSING_TEMPLATE_ID`, `MISSING_FILE_CONTENT`, `MISSING_SHARE_DET", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"audience\": \"\",\n \"template_code\": \"\",\n \"slide_override\": {\n \"eiusmod_aa\": -80045822.89062357\n },\n \"story_content_override\": {\n \"officia_a\": false\n },\n \"context\": {\n \"labore_9a\": \"enim dolore\"\n },\n \"duration\": \"\",\n \"voice_settings\": {\n \"voluptate_5\": 88167109.45645091\n },\n \"data_sources_settings\": {\n \"esse8\": true,\n \"ind18\": \"sint minim\"\n },\n \"preserve_text\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/regenerations?operation=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "regenerations" ], "query": [ { "description": "(Required) The regenerate sub-operation (for example `node_change`, `slide_regenerate`).", "key": "operation", "value": "" } ], "variable": [ { "key": "callback_id" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-ac62d967-a280-42e9-b625-c76232503d7b" }, { "id": "96f19eda-af63-4de8-98b4-0565726c874e", "name": "Caller did not present a valid Bearer token, or the token has\nexpired. `error.code` is one of `UNAUTHORIZED`, `INVALID_API_KEY`,\n`EXPIRED_API_KEY`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"audience\": \"\",\n \"template_code\": \"\",\n \"slide_override\": {\n \"eiusmod_aa\": -80045822.89062357\n },\n \"story_content_override\": {\n \"officia_a\": false\n },\n \"context\": {\n \"labore_9a\": \"enim dolore\"\n },\n \"duration\": \"\",\n \"voice_settings\": {\n \"voluptate_5\": 88167109.45645091\n },\n \"data_sources_settings\": {\n \"esse8\": true,\n \"ind18\": \"sint minim\"\n },\n \"preserve_text\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/regenerations?operation=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "regenerations" ], "query": [ { "description": "(Required) The regenerate sub-operation (for example `node_change`, `slide_regenerate`).", "key": "operation", "value": "" } ], "variable": [ { "key": "callback_id" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-96f19eda-af63-4de8-98b4-0565726c874e" }, { "id": "1400ec5f-3e99-408f-ad7f-84468096e981", "name": "Caller is authenticated but not allowed to perform this operation. `error.code` is `FORBIDDEN`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"audience\": \"\",\n \"template_code\": \"\",\n \"slide_override\": {\n \"eiusmod_aa\": -80045822.89062357\n },\n \"story_content_override\": {\n \"officia_a\": false\n },\n \"context\": {\n \"labore_9a\": \"enim dolore\"\n },\n \"duration\": \"\",\n \"voice_settings\": {\n \"voluptate_5\": 88167109.45645091\n },\n \"data_sources_settings\": {\n \"esse8\": true,\n \"ind18\": \"sint minim\"\n },\n \"preserve_text\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/regenerations?operation=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "regenerations" ], "query": [ { "description": "(Required) The regenerate sub-operation (for example `node_change`, `slide_regenerate`).", "key": "operation", "value": "" } ], "variable": [ { "key": "callback_id" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-1400ec5f-3e99-408f-ad7f-84468096e981" }, { "id": "62762bd7-98fa-44cc-98ad-ed5c916b57c4", "name": "Requested endpoint or resource does not exist. `error.code` is\none of `ENDPOINT_NOT_FOUND`, `RESOURCE_NOT_FOUND`, `NOT_FOUND`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"audience\": \"\",\n \"template_code\": \"\",\n \"slide_override\": {\n \"eiusmod_aa\": -80045822.89062357\n },\n \"story_content_override\": {\n \"officia_a\": false\n },\n \"context\": {\n \"labore_9a\": \"enim dolore\"\n },\n \"duration\": \"\",\n \"voice_settings\": {\n \"voluptate_5\": 88167109.45645091\n },\n \"data_sources_settings\": {\n \"esse8\": true,\n \"ind18\": \"sint minim\"\n },\n \"preserve_text\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/regenerations?operation=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "regenerations" ], "query": [ { "description": "(Required) The regenerate sub-operation (for example `node_change`, `slide_regenerate`).", "key": "operation", "value": "" } ], "variable": [ { "key": "callback_id" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-62762bd7-98fa-44cc-98ad-ed5c916b57c4" }, { "id": "29c58780-d81d-4dfe-90de-7f0fd9a25b60", "name": "Request was well-formed but failed semantic validation.\n`error.code` is one of `INVALID_INPUT`, `UNPROCESSABLE_ENTITY`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"audience\": \"\",\n \"template_code\": \"\",\n \"slide_override\": {\n \"eiusmod_aa\": -80045822.89062357\n },\n \"story_content_override\": {\n \"officia_a\": false\n },\n \"context\": {\n \"labore_9a\": \"enim dolore\"\n },\n \"duration\": \"\",\n \"voice_settings\": {\n \"voluptate_5\": 88167109.45645091\n },\n \"data_sources_settings\": {\n \"esse8\": true,\n \"ind18\": \"sint minim\"\n },\n \"preserve_text\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/regenerations?operation=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "regenerations" ], "query": [ { "description": "(Required) The regenerate sub-operation (for example `node_change`, `slide_regenerate`).", "key": "operation", "value": "" } ], "variable": [ { "key": "callback_id" } ] } }, "status": "Unprocessable Entity (WebDAV) (RFC 4918)", "code": 422, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-29c58780-d81d-4dfe-90de-7f0fd9a25b60" }, { "id": "2f854af9-4d89-41fd-adf9-b52a4682f2ad", "name": "Rate limit, usage limit, or gateway-level throttle exceeded.\n`error.code` is `TOO_MANY_REQUESTS` (gateway throttle),\n`RATE_LIMIT_EXCEEDED` (per-category), or `USAGE_LIMIT_EXCEEDED`\n(annual quota).\n\nDefault limits (all configurable per company/key):\n- Gate", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"audience\": \"\",\n \"template_code\": \"\",\n \"slide_override\": {\n \"eiusmod_aa\": -80045822.89062357\n },\n \"story_content_override\": {\n \"officia_a\": false\n },\n \"context\": {\n \"labore_9a\": \"enim dolore\"\n },\n \"duration\": \"\",\n \"voice_settings\": {\n \"voluptate_5\": 88167109.45645091\n },\n \"data_sources_settings\": {\n \"esse8\": true,\n \"ind18\": \"sint minim\"\n },\n \"preserve_text\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/regenerations?operation=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "regenerations" ], "query": [ { "description": "(Required) The regenerate sub-operation (for example `node_change`, `slide_regenerate`).", "key": "operation", "value": "" } ], "variable": [ { "key": "callback_id" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Limit", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Remaining", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Reset", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-2f854af9-4d89-41fd-adf9-b52a4682f2ad" }, { "id": "0226962d-c958-4827-baf4-75644f6f2670", "name": "Unexpected server error. `error.code` is `INTERNAL_SERVER_ERROR`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"audience\": \"\",\n \"template_code\": \"\",\n \"slide_override\": {\n \"eiusmod_aa\": -80045822.89062357\n },\n \"story_content_override\": {\n \"officia_a\": false\n },\n \"context\": {\n \"labore_9a\": \"enim dolore\"\n },\n \"duration\": \"\",\n \"voice_settings\": {\n \"voluptate_5\": 88167109.45645091\n },\n \"data_sources_settings\": {\n \"esse8\": true,\n \"ind18\": \"sint minim\"\n },\n \"preserve_text\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/regenerations?operation=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "regenerations" ], "query": [ { "description": "(Required) The regenerate sub-operation (for example `node_change`, `slide_regenerate`).", "key": "operation", "value": "" } ], "variable": [ { "key": "callback_id" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-0226962d-c958-4827-baf4-75644f6f2670" }, { "id": "acace89f-5531-4548-bd2e-58e6c80c84ee", "name": "Service is temporarily unavailable (downstream dependency unhealthy). `error.code` is `SERVICE_UNAVAILABLE` or `EXTERNAL_SERVICE_ERROR`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"audience\": \"\",\n \"template_code\": \"\",\n \"slide_override\": {\n \"eiusmod_aa\": -80045822.89062357\n },\n \"story_content_override\": {\n \"officia_a\": false\n },\n \"context\": {\n \"labore_9a\": \"enim dolore\"\n },\n \"duration\": \"\",\n \"voice_settings\": {\n \"voluptate_5\": 88167109.45645091\n },\n \"data_sources_settings\": {\n \"esse8\": true,\n \"ind18\": \"sint minim\"\n },\n \"preserve_text\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/regenerations?operation=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "regenerations" ], "query": [ { "description": "(Required) The regenerate sub-operation (for example `node_change`, `slide_regenerate`).", "key": "operation", "value": "" } ], "variable": [ { "key": "callback_id" } ] } }, "status": "Service Unavailable", "code": 503, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-acace89f-5531-4548-bd2e-58e6c80c84ee" }, { "id": "74c97579-d8bf-457e-b00f-12ff06d48d09", "name": "A downstream call timed out. `error.code` is `GATEWAY_TIMEOUT`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"audience\": \"\",\n \"template_code\": \"\",\n \"slide_override\": {\n \"eiusmod_aa\": -80045822.89062357\n },\n \"story_content_override\": {\n \"officia_a\": false\n },\n \"context\": {\n \"labore_9a\": \"enim dolore\"\n },\n \"duration\": \"\",\n \"voice_settings\": {\n \"voluptate_5\": 88167109.45645091\n },\n \"data_sources_settings\": {\n \"esse8\": true,\n \"ind18\": \"sint minim\"\n },\n \"preserve_text\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/regenerations?operation=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "regenerations" ], "query": [ { "description": "(Required) The regenerate sub-operation (for example `node_change`, `slide_regenerate`).", "key": "operation", "value": "" } ], "variable": [ { "key": "callback_id" } ] } }, "status": "Gateway Timeout", "code": 504, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-74c97579-d8bf-457e-b00f-12ff06d48d09" } ], "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-78dc4d6d-d03b-4c88-b631-ec486891bd41" } ], "id": "162fa360-e675-414d-a44d-c9fea8225cc5", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-162fa360-e675-414d-a44d-c9fea8225cc5" }, { "name": "node-changes", "item": [ { "name": "Create a node-level change on an AutoGenerator slide", "id": "88d7a726-c539-437a-9bb3-806b44c8dbc7", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"slide_callback_id\": \"\",\n \"slide_override\": {\n \"ut_82\": \"ut fugiat\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/node-changes", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "node-changes" ], "variable": [ { "id": "90d69c89-b627-479d-98cf-00640e3d9f94", "key": "callback_id", "value": "", "description": "(Required) Server-issued opaque identifier returned by an async kick-off endpoint. Used to poll status or fetch derived artefacts." } ] }, "description": "Mutates a single node (text, image, shape) within a slide of an\nexisting deck. Returns the updated slide payload synchronously.\n" }, "response": [ { "id": "816c752d-f8f1-48f6-9f30-727bd8d7f01a", "name": "Node change applied.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"slide_callback_id\": \"\",\n \"slide_override\": {\n \"ut_82\": \"ut fugiat\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/node-changes", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "node-changes" ], "variable": [ { "key": "callback_id" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"data\": {},\n \"success\": \"\"\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-816c752d-f8f1-48f6-9f30-727bd8d7f01a" }, { "id": "de62d478-4288-4b59-b6db-bf273bc21e7e", "name": "Generic client error. `error.code` is one of `BAD_REQUEST`, `INVALID_JSON`, `MISSING_REQUIRED_FIELD`, `MISSING_QUERY_PARAM`, `MISSING_CALLBACK_ID`, `MISSING_SLIDES_ARRAY`, `MISSING_PROMPT`, `MISSING_TEMPLATE_ID`, `MISSING_FILE_CONTENT`, `MISSING_SHARE_DET", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"slide_callback_id\": \"\",\n \"slide_override\": {\n \"ut_82\": \"ut fugiat\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/node-changes", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "node-changes" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-de62d478-4288-4b59-b6db-bf273bc21e7e" }, { "id": "2db4878e-6387-40f4-90e9-b3a7fccb8ad5", "name": "Caller did not present a valid Bearer token, or the token has\nexpired. `error.code` is one of `UNAUTHORIZED`, `INVALID_API_KEY`,\n`EXPIRED_API_KEY`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"slide_callback_id\": \"\",\n \"slide_override\": {\n \"ut_82\": \"ut fugiat\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/node-changes", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "node-changes" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-2db4878e-6387-40f4-90e9-b3a7fccb8ad5" }, { "id": "8cbc1683-4aae-4848-9c89-ded6d9ca8d43", "name": "Caller is authenticated but not allowed to perform this operation. `error.code` is `FORBIDDEN`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"slide_callback_id\": \"\",\n \"slide_override\": {\n \"ut_82\": \"ut fugiat\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/node-changes", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "node-changes" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-8cbc1683-4aae-4848-9c89-ded6d9ca8d43" }, { "id": "fa9f3b6b-78cf-4b9e-8d17-7c9e5dad309b", "name": "Requested endpoint or resource does not exist. `error.code` is\none of `ENDPOINT_NOT_FOUND`, `RESOURCE_NOT_FOUND`, `NOT_FOUND`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"slide_callback_id\": \"\",\n \"slide_override\": {\n \"ut_82\": \"ut fugiat\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/node-changes", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "node-changes" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-fa9f3b6b-78cf-4b9e-8d17-7c9e5dad309b" }, { "id": "395f6906-53b2-439d-8f73-2785b8792e5e", "name": "Request was well-formed but failed semantic validation.\n`error.code` is one of `INVALID_INPUT`, `UNPROCESSABLE_ENTITY`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"slide_callback_id\": \"\",\n \"slide_override\": {\n \"ut_82\": \"ut fugiat\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/node-changes", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "node-changes" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Unprocessable Entity (WebDAV) (RFC 4918)", "code": 422, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-395f6906-53b2-439d-8f73-2785b8792e5e" }, { "id": "a7b3e600-a284-4619-9e46-d895fa7d4345", "name": "Rate limit, usage limit, or gateway-level throttle exceeded.\n`error.code` is `TOO_MANY_REQUESTS` (gateway throttle),\n`RATE_LIMIT_EXCEEDED` (per-category), or `USAGE_LIMIT_EXCEEDED`\n(annual quota).\n\nDefault limits (all configurable per company/key):\n- Gate", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"slide_callback_id\": \"\",\n \"slide_override\": {\n \"ut_82\": \"ut fugiat\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/node-changes", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "node-changes" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Limit", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Remaining", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Reset", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-a7b3e600-a284-4619-9e46-d895fa7d4345" }, { "id": "1f703533-f77d-4406-a39b-96de134dea42", "name": "Unexpected server error. `error.code` is `INTERNAL_SERVER_ERROR`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"slide_callback_id\": \"\",\n \"slide_override\": {\n \"ut_82\": \"ut fugiat\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/node-changes", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "node-changes" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-1f703533-f77d-4406-a39b-96de134dea42" }, { "id": "514f97a0-3e7a-4f73-9e9f-7189079a7811", "name": "Service is temporarily unavailable (downstream dependency unhealthy). `error.code` is `SERVICE_UNAVAILABLE` or `EXTERNAL_SERVICE_ERROR`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"slide_callback_id\": \"\",\n \"slide_override\": {\n \"ut_82\": \"ut fugiat\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/node-changes", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "node-changes" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Service Unavailable", "code": 503, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-514f97a0-3e7a-4f73-9e9f-7189079a7811" }, { "id": "96e40422-c9bb-4f99-b6f0-77e08ccd9f35", "name": "A downstream call timed out. `error.code` is `GATEWAY_TIMEOUT`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"slide_callback_id\": \"\",\n \"slide_override\": {\n \"ut_82\": \"ut fugiat\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/node-changes", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "node-changes" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Gateway Timeout", "code": 504, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-96e40422-c9bb-4f99-b6f0-77e08ccd9f35" } ], "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-88d7a726-c539-437a-9bb3-806b44c8dbc7" } ], "id": "871fa436-f9a3-46b4-aee3-4d3bbaabc1d8", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-871fa436-f9a3-46b4-aee3-4d3bbaabc1d8" }, { "name": "image-extractions", "item": [ { "name": "Create an image-extraction for an AutoGenerator deck", "id": "33bb2abf-2c66-4ed8-8938-d5f45b861c7a", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"s3_bucket\": \"\",\n \"s3_path\": \"\",\n \"force_update\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/image-extractions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "image-extractions" ], "variable": [ { "id": "93358a49-7f93-4ed2-aa76-8b4583a80244", "key": "callback_id", "value": "", "description": "(Required) Server-issued opaque identifier returned by an async kick-off endpoint. Used to poll status or fetch derived artefacts." } ] }, "description": "Reads the PowerPoint at the given S3 location and returns the list\nof embedded images. If `force_update` is true, re-runs extraction\neven when cached results exist.\n" }, "response": [ { "id": "394316a9-9b54-4954-b4ab-dc135d7207cb", "name": "Image list returned.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"s3_bucket\": \"\",\n \"s3_path\": \"\",\n \"force_update\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/image-extractions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "image-extractions" ], "variable": [ { "key": "callback_id" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"data\": {},\n \"success\": \"\"\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-394316a9-9b54-4954-b4ab-dc135d7207cb" }, { "id": "b9359808-dc43-43f1-9f58-a671f6cb4326", "name": "Generic client error. `error.code` is one of `BAD_REQUEST`, `INVALID_JSON`, `MISSING_REQUIRED_FIELD`, `MISSING_QUERY_PARAM`, `MISSING_CALLBACK_ID`, `MISSING_SLIDES_ARRAY`, `MISSING_PROMPT`, `MISSING_TEMPLATE_ID`, `MISSING_FILE_CONTENT`, `MISSING_SHARE_DET", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"s3_bucket\": \"\",\n \"s3_path\": \"\",\n \"force_update\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/image-extractions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "image-extractions" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-b9359808-dc43-43f1-9f58-a671f6cb4326" }, { "id": "5f422153-2d83-4dde-97f7-9e2b3aaaa902", "name": "Caller did not present a valid Bearer token, or the token has\nexpired. `error.code` is one of `UNAUTHORIZED`, `INVALID_API_KEY`,\n`EXPIRED_API_KEY`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"s3_bucket\": \"\",\n \"s3_path\": \"\",\n \"force_update\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/image-extractions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "image-extractions" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-5f422153-2d83-4dde-97f7-9e2b3aaaa902" }, { "id": "a1092be4-7a82-441d-97b7-17ac6cba03f5", "name": "Caller is authenticated but not allowed to perform this operation. `error.code` is `FORBIDDEN`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"s3_bucket\": \"\",\n \"s3_path\": \"\",\n \"force_update\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/image-extractions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "image-extractions" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-a1092be4-7a82-441d-97b7-17ac6cba03f5" }, { "id": "f6fe8d7f-e18c-49b6-b4bd-3037b0c9d771", "name": "Requested endpoint or resource does not exist. `error.code` is\none of `ENDPOINT_NOT_FOUND`, `RESOURCE_NOT_FOUND`, `NOT_FOUND`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"s3_bucket\": \"\",\n \"s3_path\": \"\",\n \"force_update\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/image-extractions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "image-extractions" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-f6fe8d7f-e18c-49b6-b4bd-3037b0c9d771" }, { "id": "22e577c9-c372-4b23-a323-4e54bdac83e8", "name": "Request was well-formed but failed semantic validation.\n`error.code` is one of `INVALID_INPUT`, `UNPROCESSABLE_ENTITY`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"s3_bucket\": \"\",\n \"s3_path\": \"\",\n \"force_update\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/image-extractions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "image-extractions" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Unprocessable Entity (WebDAV) (RFC 4918)", "code": 422, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-22e577c9-c372-4b23-a323-4e54bdac83e8" }, { "id": "6ffdca64-752f-43ef-8f98-799dae5e2240", "name": "Rate limit, usage limit, or gateway-level throttle exceeded.\n`error.code` is `TOO_MANY_REQUESTS` (gateway throttle),\n`RATE_LIMIT_EXCEEDED` (per-category), or `USAGE_LIMIT_EXCEEDED`\n(annual quota).\n\nDefault limits (all configurable per company/key):\n- Gate", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"s3_bucket\": \"\",\n \"s3_path\": \"\",\n \"force_update\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/image-extractions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "image-extractions" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Limit", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Remaining", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Reset", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-6ffdca64-752f-43ef-8f98-799dae5e2240" }, { "id": "b5f905f8-24c8-4c49-be29-fbbca4a2f8e9", "name": "Unexpected server error. `error.code` is `INTERNAL_SERVER_ERROR`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"s3_bucket\": \"\",\n \"s3_path\": \"\",\n \"force_update\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/image-extractions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "image-extractions" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-b5f905f8-24c8-4c49-be29-fbbca4a2f8e9" }, { "id": "51906374-064e-40b2-9787-bea2a553ae5d", "name": "Service is temporarily unavailable (downstream dependency unhealthy). `error.code` is `SERVICE_UNAVAILABLE` or `EXTERNAL_SERVICE_ERROR`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"s3_bucket\": \"\",\n \"s3_path\": \"\",\n \"force_update\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/image-extractions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "image-extractions" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Service Unavailable", "code": 503, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-51906374-064e-40b2-9787-bea2a553ae5d" }, { "id": "3b1f6aa6-c5db-4b05-9bab-356595d82837", "name": "A downstream call timed out. `error.code` is `GATEWAY_TIMEOUT`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"s3_bucket\": \"\",\n \"s3_path\": \"\",\n \"force_update\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/image-extractions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "image-extractions" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Gateway Timeout", "code": 504, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-3b1f6aa6-c5db-4b05-9bab-356595d82837" } ], "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-33bb2abf-2c66-4ed8-8938-d5f45b861c7a" } ], "id": "ce20852d-e4b1-471d-8cdb-ee88406c1f2b", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-ce20852d-e4b1-471d-8cdb-ee88406c1f2b" }, { "name": "image-replacements", "item": [ { "name": "Create an image replacement on an AutoGenerator slide", "id": "c10dfa8d-88e4-459c-adfd-5a5cbbda06b1", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"oldImage\": {\n \"meta\": {\n \"cupidatat_df\": 36211059.1030896\n },\n \"shapeType\": \"\"\n },\n \"newImage\": {\n \"source\": \"freepik\",\n \"imageIndex\": \"\",\n \"s3_path\": \"\",\n \"s3_bucket\": \"\",\n \"id\": \"\",\n \"image\": \"\",\n \"extension\": \"\"\n },\n \"slide_callback_id\": \"\",\n \"duplicate_slide_callback_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/image-replacements", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "image-replacements" ], "variable": [ { "id": "0f6325a0-e5b9-45c6-9654-ab921a682474", "key": "callback_id", "value": "", "description": "(Required) Server-issued opaque identifier returned by an async kick-off endpoint. Used to poll status or fetch derived artefacts." } ] }, "description": "Swaps an image on a slide with a new image sourced from the\ncaller's workspace, Adobe Stock, Freepik, a previously uploaded\nfile, an extracted image, or S3.\n" }, "response": [ { "id": "3bea8350-0ea8-4b81-940a-145df2296fd0", "name": "Image replacement completed.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"oldImage\": {\n \"meta\": {\n \"cupidatat_df\": 36211059.1030896\n },\n \"shapeType\": \"\"\n },\n \"newImage\": {\n \"source\": \"freepik\",\n \"imageIndex\": \"\",\n \"s3_path\": \"\",\n \"s3_bucket\": \"\",\n \"id\": \"\",\n \"image\": \"\",\n \"extension\": \"\"\n },\n \"slide_callback_id\": \"\",\n \"duplicate_slide_callback_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/image-replacements", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "image-replacements" ], "variable": [ { "key": "callback_id" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"data\": {},\n \"success\": \"\"\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-3bea8350-0ea8-4b81-940a-145df2296fd0" }, { "id": "8ece359d-b4e5-4d9e-9d64-849cc52ac2bf", "name": "Generic client error. `error.code` is one of `BAD_REQUEST`, `INVALID_JSON`, `MISSING_REQUIRED_FIELD`, `MISSING_QUERY_PARAM`, `MISSING_CALLBACK_ID`, `MISSING_SLIDES_ARRAY`, `MISSING_PROMPT`, `MISSING_TEMPLATE_ID`, `MISSING_FILE_CONTENT`, `MISSING_SHARE_DET", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"oldImage\": {\n \"meta\": {\n \"cupidatat_df\": 36211059.1030896\n },\n \"shapeType\": \"\"\n },\n \"newImage\": {\n \"source\": \"freepik\",\n \"imageIndex\": \"\",\n \"s3_path\": \"\",\n \"s3_bucket\": \"\",\n \"id\": \"\",\n \"image\": \"\",\n \"extension\": \"\"\n },\n \"slide_callback_id\": \"\",\n \"duplicate_slide_callback_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/image-replacements", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "image-replacements" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-8ece359d-b4e5-4d9e-9d64-849cc52ac2bf" }, { "id": "ac3bcf72-b8c6-48e7-bf60-f855cac27d5b", "name": "Caller did not present a valid Bearer token, or the token has\nexpired. `error.code` is one of `UNAUTHORIZED`, `INVALID_API_KEY`,\n`EXPIRED_API_KEY`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"oldImage\": {\n \"meta\": {\n \"cupidatat_df\": 36211059.1030896\n },\n \"shapeType\": \"\"\n },\n \"newImage\": {\n \"source\": \"freepik\",\n \"imageIndex\": \"\",\n \"s3_path\": \"\",\n \"s3_bucket\": \"\",\n \"id\": \"\",\n \"image\": \"\",\n \"extension\": \"\"\n },\n \"slide_callback_id\": \"\",\n \"duplicate_slide_callback_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/image-replacements", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "image-replacements" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-ac3bcf72-b8c6-48e7-bf60-f855cac27d5b" }, { "id": "667b0697-c138-4fda-9697-5d13bb17e70c", "name": "Caller is authenticated but not allowed to perform this operation. `error.code` is `FORBIDDEN`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"oldImage\": {\n \"meta\": {\n \"cupidatat_df\": 36211059.1030896\n },\n \"shapeType\": \"\"\n },\n \"newImage\": {\n \"source\": \"freepik\",\n \"imageIndex\": \"\",\n \"s3_path\": \"\",\n \"s3_bucket\": \"\",\n \"id\": \"\",\n \"image\": \"\",\n \"extension\": \"\"\n },\n \"slide_callback_id\": \"\",\n \"duplicate_slide_callback_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/image-replacements", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "image-replacements" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-667b0697-c138-4fda-9697-5d13bb17e70c" }, { "id": "4652ad67-d615-40da-97af-ebb0a53e69a7", "name": "Requested endpoint or resource does not exist. `error.code` is\none of `ENDPOINT_NOT_FOUND`, `RESOURCE_NOT_FOUND`, `NOT_FOUND`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"oldImage\": {\n \"meta\": {\n \"cupidatat_df\": 36211059.1030896\n },\n \"shapeType\": \"\"\n },\n \"newImage\": {\n \"source\": \"freepik\",\n \"imageIndex\": \"\",\n \"s3_path\": \"\",\n \"s3_bucket\": \"\",\n \"id\": \"\",\n \"image\": \"\",\n \"extension\": \"\"\n },\n \"slide_callback_id\": \"\",\n \"duplicate_slide_callback_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/image-replacements", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "image-replacements" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-4652ad67-d615-40da-97af-ebb0a53e69a7" }, { "id": "4bde1d42-4b83-48ae-933c-026b963cdca0", "name": "Request was well-formed but failed semantic validation.\n`error.code` is one of `INVALID_INPUT`, `UNPROCESSABLE_ENTITY`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"oldImage\": {\n \"meta\": {\n \"cupidatat_df\": 36211059.1030896\n },\n \"shapeType\": \"\"\n },\n \"newImage\": {\n \"source\": \"freepik\",\n \"imageIndex\": \"\",\n \"s3_path\": \"\",\n \"s3_bucket\": \"\",\n \"id\": \"\",\n \"image\": \"\",\n \"extension\": \"\"\n },\n \"slide_callback_id\": \"\",\n \"duplicate_slide_callback_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/image-replacements", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "image-replacements" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Unprocessable Entity (WebDAV) (RFC 4918)", "code": 422, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-4bde1d42-4b83-48ae-933c-026b963cdca0" }, { "id": "48a30d00-7592-4d36-978d-985e86e99d81", "name": "Rate limit, usage limit, or gateway-level throttle exceeded.\n`error.code` is `TOO_MANY_REQUESTS` (gateway throttle),\n`RATE_LIMIT_EXCEEDED` (per-category), or `USAGE_LIMIT_EXCEEDED`\n(annual quota).\n\nDefault limits (all configurable per company/key):\n- Gate", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"oldImage\": {\n \"meta\": {\n \"cupidatat_df\": 36211059.1030896\n },\n \"shapeType\": \"\"\n },\n \"newImage\": {\n \"source\": \"freepik\",\n \"imageIndex\": \"\",\n \"s3_path\": \"\",\n \"s3_bucket\": \"\",\n \"id\": \"\",\n \"image\": \"\",\n \"extension\": \"\"\n },\n \"slide_callback_id\": \"\",\n \"duplicate_slide_callback_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/image-replacements", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "image-replacements" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Limit", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Remaining", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Reset", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-48a30d00-7592-4d36-978d-985e86e99d81" }, { "id": "efed94aa-0656-4fab-b293-fe3b2940a055", "name": "Unexpected server error. `error.code` is `INTERNAL_SERVER_ERROR`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"oldImage\": {\n \"meta\": {\n \"cupidatat_df\": 36211059.1030896\n },\n \"shapeType\": \"\"\n },\n \"newImage\": {\n \"source\": \"freepik\",\n \"imageIndex\": \"\",\n \"s3_path\": \"\",\n \"s3_bucket\": \"\",\n \"id\": \"\",\n \"image\": \"\",\n \"extension\": \"\"\n },\n \"slide_callback_id\": \"\",\n \"duplicate_slide_callback_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/image-replacements", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "image-replacements" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-efed94aa-0656-4fab-b293-fe3b2940a055" }, { "id": "d2cd30d3-fcbc-4f83-b65c-375e1dfcf869", "name": "Service is temporarily unavailable (downstream dependency unhealthy). `error.code` is `SERVICE_UNAVAILABLE` or `EXTERNAL_SERVICE_ERROR`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"oldImage\": {\n \"meta\": {\n \"cupidatat_df\": 36211059.1030896\n },\n \"shapeType\": \"\"\n },\n \"newImage\": {\n \"source\": \"freepik\",\n \"imageIndex\": \"\",\n \"s3_path\": \"\",\n \"s3_bucket\": \"\",\n \"id\": \"\",\n \"image\": \"\",\n \"extension\": \"\"\n },\n \"slide_callback_id\": \"\",\n \"duplicate_slide_callback_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/image-replacements", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "image-replacements" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Service Unavailable", "code": 503, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-d2cd30d3-fcbc-4f83-b65c-375e1dfcf869" }, { "id": "5ea065ea-9cbc-45b7-a169-6346d0832e3d", "name": "A downstream call timed out. `error.code` is `GATEWAY_TIMEOUT`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"oldImage\": {\n \"meta\": {\n \"cupidatat_df\": 36211059.1030896\n },\n \"shapeType\": \"\"\n },\n \"newImage\": {\n \"source\": \"freepik\",\n \"imageIndex\": \"\",\n \"s3_path\": \"\",\n \"s3_bucket\": \"\",\n \"id\": \"\",\n \"image\": \"\",\n \"extension\": \"\"\n },\n \"slide_callback_id\": \"\",\n \"duplicate_slide_callback_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/image-replacements", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "image-replacements" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Gateway Timeout", "code": 504, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-5ea065ea-9cbc-45b7-a169-6346d0832e3d" } ], "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-c10dfa8d-88e4-459c-adfd-5a5cbbda06b1" } ], "id": "b4a63671-4072-4f39-8f4e-b428f56b7a79", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-b4a63671-4072-4f39-8f4e-b428f56b7a79" }, { "name": "reactions", "item": [ { "name": "Create a reaction on an AutoGenerator deck", "id": "cd4fe807-e5f0-4aa2-981a-04bcda5c25fb", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"uuid\": \"\",\n \"type\": \"feedback\",\n \"value\": \"\",\n \"shareDetails\": {\n \"aliquip_21\": -66595285.308671266\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/reactions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "reactions" ], "variable": [ { "id": "7a97ad28-e479-4bfb-8316-f6e33fdf8b81", "key": "callback_id", "value": "", "description": "(Required) Server-issued opaque identifier returned by an async kick-off endpoint. Used to poll status or fetch derived artefacts." } ] }, "description": "Persists a user reaction (like) or qualitative feedback against a\npreviously generated deck/slide. When `type` is `feedback`,\n`shareDetails` must be provided.\n" }, "response": [ { "id": "6835b159-e1e5-45f0-aaa9-33a1884ec549", "name": "Reaction/feedback stored.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"uuid\": \"\",\n \"type\": \"feedback\",\n \"value\": \"\",\n \"shareDetails\": {\n \"aliquip_21\": -66595285.308671266\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/reactions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "reactions" ], "variable": [ { "key": "callback_id" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"data\": {\n \"uuid\": \"\",\n \"type\": \"liked\",\n \"value\": \"\",\n \"message\": \"\"\n },\n \"success\": \"\"\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-6835b159-e1e5-45f0-aaa9-33a1884ec549" }, { "id": "c0d91733-898d-4db4-8181-e64612510dfb", "name": "Generic client error. `error.code` is one of `BAD_REQUEST`, `INVALID_JSON`, `MISSING_REQUIRED_FIELD`, `MISSING_QUERY_PARAM`, `MISSING_CALLBACK_ID`, `MISSING_SLIDES_ARRAY`, `MISSING_PROMPT`, `MISSING_TEMPLATE_ID`, `MISSING_FILE_CONTENT`, `MISSING_SHARE_DET", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"uuid\": \"\",\n \"type\": \"feedback\",\n \"value\": \"\",\n \"shareDetails\": {\n \"aliquip_21\": -66595285.308671266\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/reactions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "reactions" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-c0d91733-898d-4db4-8181-e64612510dfb" }, { "id": "97a55d8e-8cf9-484a-89f6-ba2868b66082", "name": "Caller did not present a valid Bearer token, or the token has\nexpired. `error.code` is one of `UNAUTHORIZED`, `INVALID_API_KEY`,\n`EXPIRED_API_KEY`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"uuid\": \"\",\n \"type\": \"feedback\",\n \"value\": \"\",\n \"shareDetails\": {\n \"aliquip_21\": -66595285.308671266\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/reactions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "reactions" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-97a55d8e-8cf9-484a-89f6-ba2868b66082" }, { "id": "3af4cbf9-c3a1-41b9-9bf6-994538bd5870", "name": "Caller is authenticated but not allowed to perform this operation. `error.code` is `FORBIDDEN`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"uuid\": \"\",\n \"type\": \"feedback\",\n \"value\": \"\",\n \"shareDetails\": {\n \"aliquip_21\": -66595285.308671266\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/reactions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "reactions" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-3af4cbf9-c3a1-41b9-9bf6-994538bd5870" }, { "id": "6b6d05e8-98b3-4a71-952b-f0a17ec4c86d", "name": "Requested endpoint or resource does not exist. `error.code` is\none of `ENDPOINT_NOT_FOUND`, `RESOURCE_NOT_FOUND`, `NOT_FOUND`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"uuid\": \"\",\n \"type\": \"feedback\",\n \"value\": \"\",\n \"shareDetails\": {\n \"aliquip_21\": -66595285.308671266\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/reactions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "reactions" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-6b6d05e8-98b3-4a71-952b-f0a17ec4c86d" }, { "id": "dcc5ae27-6a08-4eec-a14b-4813c143a739", "name": "Request was well-formed but failed semantic validation.\n`error.code` is one of `INVALID_INPUT`, `UNPROCESSABLE_ENTITY`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"uuid\": \"\",\n \"type\": \"feedback\",\n \"value\": \"\",\n \"shareDetails\": {\n \"aliquip_21\": -66595285.308671266\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/reactions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "reactions" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Unprocessable Entity (WebDAV) (RFC 4918)", "code": 422, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-dcc5ae27-6a08-4eec-a14b-4813c143a739" }, { "id": "f52c71d0-2bd0-47e0-8324-0f72ebbb991c", "name": "Rate limit, usage limit, or gateway-level throttle exceeded.\n`error.code` is `TOO_MANY_REQUESTS` (gateway throttle),\n`RATE_LIMIT_EXCEEDED` (per-category), or `USAGE_LIMIT_EXCEEDED`\n(annual quota).\n\nDefault limits (all configurable per company/key):\n- Gate", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"uuid\": \"\",\n \"type\": \"feedback\",\n \"value\": \"\",\n \"shareDetails\": {\n \"aliquip_21\": -66595285.308671266\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/reactions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "reactions" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Limit", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Remaining", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Reset", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-f52c71d0-2bd0-47e0-8324-0f72ebbb991c" }, { "id": "da17d936-1732-4e0f-9ac5-8753c437e70c", "name": "Unexpected server error. `error.code` is `INTERNAL_SERVER_ERROR`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"uuid\": \"\",\n \"type\": \"feedback\",\n \"value\": \"\",\n \"shareDetails\": {\n \"aliquip_21\": -66595285.308671266\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/reactions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "reactions" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-da17d936-1732-4e0f-9ac5-8753c437e70c" }, { "id": "8b0a93ad-a1c5-4163-889e-d6784967a89d", "name": "Service is temporarily unavailable (downstream dependency unhealthy). `error.code` is `SERVICE_UNAVAILABLE` or `EXTERNAL_SERVICE_ERROR`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"uuid\": \"\",\n \"type\": \"feedback\",\n \"value\": \"\",\n \"shareDetails\": {\n \"aliquip_21\": -66595285.308671266\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/reactions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "reactions" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Service Unavailable", "code": 503, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-8b0a93ad-a1c5-4163-889e-d6784967a89d" }, { "id": "9b9105be-92e9-47f9-aca5-bd8f0253543a", "name": "A downstream call timed out. `error.code` is `GATEWAY_TIMEOUT`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"uuid\": \"\",\n \"type\": \"feedback\",\n \"value\": \"\",\n \"shareDetails\": {\n \"aliquip_21\": -66595285.308671266\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/reactions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "reactions" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Gateway Timeout", "code": 504, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-9b9105be-92e9-47f9-aca5-bd8f0253543a" } ], "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-cd4fe807-e5f0-4aa2-981a-04bcda5c25fb" } ], "id": "2451a8d5-6a5f-41b6-b5d8-0418e46249e7", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-2451a8d5-6a5f-41b6-b5d8-0418e46249e7" }, { "name": "slide-actions", "item": [ { "name": "Create a per-slide action on an AutoGenerator deck", "id": "74b3e659-7185-4862-a161-6d1ad948bb78", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"action\": \"delete\",\n \"deck_callback_id\": \"\",\n \"slide_callback_id\": \"\",\n \"uuid\": \"\",\n \"type\": \"\",\n \"data\": {\n \"irure___7\": \"est quis\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/slide-actions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "slide-actions" ], "variable": [ { "id": "374f2d19-fe5a-46b3-ba99-2abe298647de", "key": "callback_id", "value": "", "description": "(Required) Server-issued opaque identifier returned by an async kick-off endpoint. Used to poll status or fetch derived artefacts." } ] }, "description": "Performs one of four actions against a slide: `duplicate`,\n`delete`, `add_sources_to_slides_note`, or `speaker_notes`. The\nrequired body fields depend on `action`.\n" }, "response": [ { "id": "8e598f0d-7c73-4733-9212-6c2a29b18946", "name": "Slide action completed.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"action\": \"delete\",\n \"deck_callback_id\": \"\",\n \"slide_callback_id\": \"\",\n \"uuid\": \"\",\n \"type\": \"\",\n \"data\": {\n \"irure___7\": \"est quis\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/slide-actions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "slide-actions" ], "variable": [ { "key": "callback_id" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"data\": {\n \"new_callback_id\": \"\",\n \"deleted_slide_id\": \"\",\n \"message\": \"\",\n \"elit_44\": false\n },\n \"success\": \"\"\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-8e598f0d-7c73-4733-9212-6c2a29b18946" }, { "id": "596e1f92-05df-40da-8a4a-d7fc50dcf8c7", "name": "Generic client error. `error.code` is one of `BAD_REQUEST`, `INVALID_JSON`, `MISSING_REQUIRED_FIELD`, `MISSING_QUERY_PARAM`, `MISSING_CALLBACK_ID`, `MISSING_SLIDES_ARRAY`, `MISSING_PROMPT`, `MISSING_TEMPLATE_ID`, `MISSING_FILE_CONTENT`, `MISSING_SHARE_DET", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"action\": \"delete\",\n \"deck_callback_id\": \"\",\n \"slide_callback_id\": \"\",\n \"uuid\": \"\",\n \"type\": \"\",\n \"data\": {\n \"irure___7\": \"est quis\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/slide-actions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "slide-actions" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-596e1f92-05df-40da-8a4a-d7fc50dcf8c7" }, { "id": "beff1812-81a8-496f-b23d-2000e4b08449", "name": "Caller did not present a valid Bearer token, or the token has\nexpired. `error.code` is one of `UNAUTHORIZED`, `INVALID_API_KEY`,\n`EXPIRED_API_KEY`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"action\": \"delete\",\n \"deck_callback_id\": \"\",\n \"slide_callback_id\": \"\",\n \"uuid\": \"\",\n \"type\": \"\",\n \"data\": {\n \"irure___7\": \"est quis\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/slide-actions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "slide-actions" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-beff1812-81a8-496f-b23d-2000e4b08449" }, { "id": "22ecc7d0-a450-4ea0-9b60-30eafd8a340a", "name": "Caller is authenticated but not allowed to perform this operation. `error.code` is `FORBIDDEN`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"action\": \"delete\",\n \"deck_callback_id\": \"\",\n \"slide_callback_id\": \"\",\n \"uuid\": \"\",\n \"type\": \"\",\n \"data\": {\n \"irure___7\": \"est quis\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/slide-actions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "slide-actions" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-22ecc7d0-a450-4ea0-9b60-30eafd8a340a" }, { "id": "36bbaa67-bd63-4fc2-b851-cc48c5543836", "name": "Requested endpoint or resource does not exist. `error.code` is\none of `ENDPOINT_NOT_FOUND`, `RESOURCE_NOT_FOUND`, `NOT_FOUND`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"action\": \"delete\",\n \"deck_callback_id\": \"\",\n \"slide_callback_id\": \"\",\n \"uuid\": \"\",\n \"type\": \"\",\n \"data\": {\n \"irure___7\": \"est quis\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/slide-actions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "slide-actions" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-36bbaa67-bd63-4fc2-b851-cc48c5543836" }, { "id": "fdda9723-d077-444e-ba5e-6558d56a799e", "name": "Request was well-formed but failed semantic validation.\n`error.code` is one of `INVALID_INPUT`, `UNPROCESSABLE_ENTITY`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"action\": \"delete\",\n \"deck_callback_id\": \"\",\n \"slide_callback_id\": \"\",\n \"uuid\": \"\",\n \"type\": \"\",\n \"data\": {\n \"irure___7\": \"est quis\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/slide-actions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "slide-actions" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Unprocessable Entity (WebDAV) (RFC 4918)", "code": 422, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-fdda9723-d077-444e-ba5e-6558d56a799e" }, { "id": "4eaa7aa6-4d4e-4fa7-85e7-8446691b7d10", "name": "Rate limit, usage limit, or gateway-level throttle exceeded.\n`error.code` is `TOO_MANY_REQUESTS` (gateway throttle),\n`RATE_LIMIT_EXCEEDED` (per-category), or `USAGE_LIMIT_EXCEEDED`\n(annual quota).\n\nDefault limits (all configurable per company/key):\n- Gate", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"action\": \"delete\",\n \"deck_callback_id\": \"\",\n \"slide_callback_id\": \"\",\n \"uuid\": \"\",\n \"type\": \"\",\n \"data\": {\n \"irure___7\": \"est quis\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/slide-actions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "slide-actions" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Limit", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Remaining", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Reset", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-4eaa7aa6-4d4e-4fa7-85e7-8446691b7d10" }, { "id": "e4bfbe22-fd9a-4dee-8d64-30f30f638c87", "name": "Unexpected server error. `error.code` is `INTERNAL_SERVER_ERROR`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"action\": \"delete\",\n \"deck_callback_id\": \"\",\n \"slide_callback_id\": \"\",\n \"uuid\": \"\",\n \"type\": \"\",\n \"data\": {\n \"irure___7\": \"est quis\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/slide-actions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "slide-actions" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-e4bfbe22-fd9a-4dee-8d64-30f30f638c87" }, { "id": "7517de2d-e943-47dd-be6e-d03e832d47e6", "name": "Service is temporarily unavailable (downstream dependency unhealthy). `error.code` is `SERVICE_UNAVAILABLE` or `EXTERNAL_SERVICE_ERROR`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"action\": \"delete\",\n \"deck_callback_id\": \"\",\n \"slide_callback_id\": \"\",\n \"uuid\": \"\",\n \"type\": \"\",\n \"data\": {\n \"irure___7\": \"est quis\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/slide-actions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "slide-actions" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Service Unavailable", "code": 503, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-7517de2d-e943-47dd-be6e-d03e832d47e6" }, { "id": "c6a5966b-c0f9-42c4-a94b-dd9eb4da2fb4", "name": "A downstream call timed out. `error.code` is `GATEWAY_TIMEOUT`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"action\": \"delete\",\n \"deck_callback_id\": \"\",\n \"slide_callback_id\": \"\",\n \"uuid\": \"\",\n \"type\": \"\",\n \"data\": {\n \"irure___7\": \"est quis\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id/slide-actions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id", "slide-actions" ], "variable": [ { "key": "callback_id" } ] } }, "status": "Gateway Timeout", "code": 504, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-c6a5966b-c0f9-42c4-a94b-dd9eb4da2fb4" } ], "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-74b3e659-7185-4862-a161-6d1ad948bb78" } ], "id": "fca34f1a-c36b-42a2-bdbf-f22d2e786922", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-fca34f1a-c36b-42a2-bdbf-f22d2e786922" }, { "name": "Read an AutoGenerator job", "id": "b558d483-76c7-4aff-a21a-992e12cf3ad8", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id?deck_callback_id=&operation=&status_auto_polling=true", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id" ], "query": [ { "description": "Original deck callback id when polling a regenerate sub-job.", "key": "deck_callback_id", "value": "" }, { "description": "Sub-operation hint (used by regenerate flows).", "key": "operation", "value": "" }, { "description": "Pass `true` to indicate the caller is auto-polling; affects how stalled jobs are surfaced.", "key": "status_auto_polling", "value": "true" } ], "variable": [ { "id": "1d83aadb-219f-4ce1-affa-2589164f34d2", "key": "callback_id", "value": "", "description": "(Required) Server-issued opaque identifier returned by an async kick-off endpoint. Used to poll status or fetch derived artefacts." } ] }, "description": "Returns the current state of a previously started AutoGenerator job.\nThe `status` field in the response data is one of\n`in_progress`, `success`, or `failed`. Once `success`, the payload\nalso contains the generated slides, extracted images, theme/audience\nmetadata, and other context required to display or further edit\nthe deck.\n\nFor the same `callback_id`, polling after `status=success` returns\nthe same cached payload.\n" }, "response": [ { "id": "7ff982fc-aac5-45ab-a6aa-6fad50d7756e", "name": "Current job status returned.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id?deck_callback_id=&operation=&status_auto_polling=true", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id" ], "query": [ { "description": "Original deck callback id when polling a regenerate sub-job.", "key": "deck_callback_id", "value": "" }, { "description": "Sub-operation hint (used by regenerate flows).", "key": "operation", "value": "" }, { "description": "Pass `true` to indicate the caller is auto-polling; affects how stalled jobs are surfaced.", "key": "status_auto_polling", "value": "true" } ], "variable": [ { "key": "callback_id" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"data\": {\n \"status\": \"in_progress\",\n \"callback_id\": \"\",\n \"prompt\": \"\",\n \"fileName\": \"\",\n \"allSlides\": [\n {\n \"proident_028\": \"qui nulla Lorem commodo\",\n \"labore_db0\": -23723662.0254945\n },\n {\n \"occaecat_a_\": \"nostrud sit sunt\",\n \"proident_9\": true,\n \"esse_dc\": \"in laboris aute\"\n }\n ],\n \"extracted_images\": [\n {\n \"dolor5\": -78011094,\n \"deserunt_2d\": true,\n \"cupidatat_b\": \"adipisicing ipsum proident\"\n },\n {\n \"sit2e6\": false,\n \"cillum_4\": 67287695\n }\n ],\n \"company\": \"\",\n \"companyDisplayName\": \"\",\n \"final_output\": {\n \"nulla_d32\": \"ipsum laboris incididunt dolore\",\n \"dolore_e53\": 68509726\n },\n \"template_code\": \"\",\n \"audience\": \"\",\n \"execution_start\": \"\",\n \"execution_end\": \"\",\n \"presentation_theme\": {\n \"quisc66\": 46614858,\n \"Excepteur_5_4\": -7865199.2526810765\n },\n \"voice_settings\": {\n \"cupidatat30b\": -25657065.03047967\n },\n \"speaker_notes\": {\n \"amet_82\": \"velit consequat\"\n },\n \"cached\": \"\",\n \"cached_at\": \"\"\n },\n \"success\": \"\"\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-7ff982fc-aac5-45ab-a6aa-6fad50d7756e" }, { "id": "3b42c7be-34ae-46bd-b181-44da8f22fe83", "name": "Generic client error. `error.code` is one of `BAD_REQUEST`, `INVALID_JSON`, `MISSING_REQUIRED_FIELD`, `MISSING_QUERY_PARAM`, `MISSING_CALLBACK_ID`, `MISSING_SLIDES_ARRAY`, `MISSING_PROMPT`, `MISSING_TEMPLATE_ID`, `MISSING_FILE_CONTENT`, `MISSING_SHARE_DET", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id?deck_callback_id=&operation=&status_auto_polling=true", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id" ], "query": [ { "description": "Original deck callback id when polling a regenerate sub-job.", "key": "deck_callback_id", "value": "" }, { "description": "Sub-operation hint (used by regenerate flows).", "key": "operation", "value": "" }, { "description": "Pass `true` to indicate the caller is auto-polling; affects how stalled jobs are surfaced.", "key": "status_auto_polling", "value": "true" } ], "variable": [ { "key": "callback_id" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-3b42c7be-34ae-46bd-b181-44da8f22fe83" }, { "id": "0cd8c8aa-3f8f-43a8-b4a8-685cc4c7ed74", "name": "Caller did not present a valid Bearer token, or the token has\nexpired. `error.code` is one of `UNAUTHORIZED`, `INVALID_API_KEY`,\n`EXPIRED_API_KEY`.\n", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id?deck_callback_id=&operation=&status_auto_polling=true", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id" ], "query": [ { "description": "Original deck callback id when polling a regenerate sub-job.", "key": "deck_callback_id", "value": "" }, { "description": "Sub-operation hint (used by regenerate flows).", "key": "operation", "value": "" }, { "description": "Pass `true` to indicate the caller is auto-polling; affects how stalled jobs are surfaced.", "key": "status_auto_polling", "value": "true" } ], "variable": [ { "key": "callback_id" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-0cd8c8aa-3f8f-43a8-b4a8-685cc4c7ed74" }, { "id": "87f0d98f-a0fe-4ebe-bc52-de0d9326c194", "name": "Caller is authenticated but not allowed to perform this operation. `error.code` is `FORBIDDEN`.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id?deck_callback_id=&operation=&status_auto_polling=true", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id" ], "query": [ { "description": "Original deck callback id when polling a regenerate sub-job.", "key": "deck_callback_id", "value": "" }, { "description": "Sub-operation hint (used by regenerate flows).", "key": "operation", "value": "" }, { "description": "Pass `true` to indicate the caller is auto-polling; affects how stalled jobs are surfaced.", "key": "status_auto_polling", "value": "true" } ], "variable": [ { "key": "callback_id" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-87f0d98f-a0fe-4ebe-bc52-de0d9326c194" }, { "id": "af58e0ea-d3f9-4de4-b762-ffe34dce5658", "name": "Requested endpoint or resource does not exist. `error.code` is\none of `ENDPOINT_NOT_FOUND`, `RESOURCE_NOT_FOUND`, `NOT_FOUND`.\n", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id?deck_callback_id=&operation=&status_auto_polling=true", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id" ], "query": [ { "description": "Original deck callback id when polling a regenerate sub-job.", "key": "deck_callback_id", "value": "" }, { "description": "Sub-operation hint (used by regenerate flows).", "key": "operation", "value": "" }, { "description": "Pass `true` to indicate the caller is auto-polling; affects how stalled jobs are surfaced.", "key": "status_auto_polling", "value": "true" } ], "variable": [ { "key": "callback_id" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-af58e0ea-d3f9-4de4-b762-ffe34dce5658" }, { "id": "5643c319-46ed-4ac8-8628-1a21388a2787", "name": "Request was well-formed but failed semantic validation.\n`error.code` is one of `INVALID_INPUT`, `UNPROCESSABLE_ENTITY`.\n", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id?deck_callback_id=&operation=&status_auto_polling=true", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id" ], "query": [ { "description": "Original deck callback id when polling a regenerate sub-job.", "key": "deck_callback_id", "value": "" }, { "description": "Sub-operation hint (used by regenerate flows).", "key": "operation", "value": "" }, { "description": "Pass `true` to indicate the caller is auto-polling; affects how stalled jobs are surfaced.", "key": "status_auto_polling", "value": "true" } ], "variable": [ { "key": "callback_id" } ] } }, "status": "Unprocessable Entity (WebDAV) (RFC 4918)", "code": 422, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-5643c319-46ed-4ac8-8628-1a21388a2787" }, { "id": "1d07011d-2338-46cd-95b3-ed9bd86a6cf8", "name": "Rate limit, usage limit, or gateway-level throttle exceeded.\n`error.code` is `TOO_MANY_REQUESTS` (gateway throttle),\n`RATE_LIMIT_EXCEEDED` (per-category), or `USAGE_LIMIT_EXCEEDED`\n(annual quota).\n\nDefault limits (all configurable per company/key):\n- Gate", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id?deck_callback_id=&operation=&status_auto_polling=true", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id" ], "query": [ { "description": "Original deck callback id when polling a regenerate sub-job.", "key": "deck_callback_id", "value": "" }, { "description": "Sub-operation hint (used by regenerate flows).", "key": "operation", "value": "" }, { "description": "Pass `true` to indicate the caller is auto-polling; affects how stalled jobs are surfaced.", "key": "status_auto_polling", "value": "true" } ], "variable": [ { "key": "callback_id" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Limit", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Remaining", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Reset", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-1d07011d-2338-46cd-95b3-ed9bd86a6cf8" }, { "id": "ecb0094a-83b7-47ed-83b4-2e18e6878cef", "name": "Unexpected server error. `error.code` is `INTERNAL_SERVER_ERROR`.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id?deck_callback_id=&operation=&status_auto_polling=true", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id" ], "query": [ { "description": "Original deck callback id when polling a regenerate sub-job.", "key": "deck_callback_id", "value": "" }, { "description": "Sub-operation hint (used by regenerate flows).", "key": "operation", "value": "" }, { "description": "Pass `true` to indicate the caller is auto-polling; affects how stalled jobs are surfaced.", "key": "status_auto_polling", "value": "true" } ], "variable": [ { "key": "callback_id" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-ecb0094a-83b7-47ed-83b4-2e18e6878cef" }, { "id": "4a697bbf-afe6-4074-9365-3f80e5402d05", "name": "Service is temporarily unavailable (downstream dependency unhealthy). `error.code` is `SERVICE_UNAVAILABLE` or `EXTERNAL_SERVICE_ERROR`.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id?deck_callback_id=&operation=&status_auto_polling=true", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id" ], "query": [ { "description": "Original deck callback id when polling a regenerate sub-job.", "key": "deck_callback_id", "value": "" }, { "description": "Sub-operation hint (used by regenerate flows).", "key": "operation", "value": "" }, { "description": "Pass `true` to indicate the caller is auto-polling; affects how stalled jobs are surfaced.", "key": "status_auto_polling", "value": "true" } ], "variable": [ { "key": "callback_id" } ] } }, "status": "Service Unavailable", "code": 503, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-4a697bbf-afe6-4074-9365-3f80e5402d05" }, { "id": "4be3126a-bafa-4c06-8caf-36babd1a95a3", "name": "A downstream call timed out. `error.code` is `GATEWAY_TIMEOUT`.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/:callback_id?deck_callback_id=&operation=&status_auto_polling=true", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", ":callback_id" ], "query": [ { "description": "Original deck callback id when polling a regenerate sub-job.", "key": "deck_callback_id", "value": "" }, { "description": "Sub-operation hint (used by regenerate flows).", "key": "operation", "value": "" }, { "description": "Pass `true` to indicate the caller is auto-polling; affects how stalled jobs are surfaced.", "key": "status_auto_polling", "value": "true" } ], "variable": [ { "key": "callback_id" } ] } }, "status": "Gateway Timeout", "code": 504, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-4be3126a-bafa-4c06-8caf-36babd1a95a3" } ], "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-b558d483-76c7-4aff-a21a-992e12cf3ad8" } ], "id": "e8ee5e08-3ba8-43cd-ac6b-213e5d61a5e2", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-e8ee5e08-3ba8-43cd-ac6b-213e5d61a5e2" }, { "name": "lookups", "item": [ { "name": "Look up multiple AutoGenerator jobs in one call", "id": "095fbdd2-a74f-4ce8-a98e-8d8b96a5c16a", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"callback_ids\": [\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/lookups", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", "lookups" ] }, "description": "Returns layout metadata for each `callback_id` in the request. Use\nwhen rendering a list view that needs many decks at once.\n" }, "response": [ { "id": "5b7731c2-19d2-452e-885f-e3c5ac20a00c", "name": "Bulk status returned.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_ids\": [\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/lookups", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", "lookups" ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": [\n {\n \"slide_id\": \"\",\n \"layouts\": [\n {\n \"id34\": \"ipsum cillum consequ\",\n \"reprehenderit_5\": \"et cillum labore pariatur\"\n },\n {\n \"ullamco_c_\": true,\n \"commodo_bf\": \"cupidatat velit ex non\"\n }\n ],\n \"minim_1ba\": \"aute\"\n },\n {\n \"slide_id\": \"\",\n \"layouts\": [\n {\n \"in_887\": 39293124.21455243\n },\n {\n \"Lorem_1\": 23402491\n }\n ]\n }\n ]\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-5b7731c2-19d2-452e-885f-e3c5ac20a00c" }, { "id": "ed833767-38f4-4d1e-8f40-55e08b12b6ed", "name": "Generic client error. `error.code` is one of `BAD_REQUEST`, `INVALID_JSON`, `MISSING_REQUIRED_FIELD`, `MISSING_QUERY_PARAM`, `MISSING_CALLBACK_ID`, `MISSING_SLIDES_ARRAY`, `MISSING_PROMPT`, `MISSING_TEMPLATE_ID`, `MISSING_FILE_CONTENT`, `MISSING_SHARE_DET", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_ids\": [\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/lookups", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", "lookups" ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-ed833767-38f4-4d1e-8f40-55e08b12b6ed" }, { "id": "122741f3-0183-43ed-8c1a-e43f2fbd03d4", "name": "Caller did not present a valid Bearer token, or the token has\nexpired. `error.code` is one of `UNAUTHORIZED`, `INVALID_API_KEY`,\n`EXPIRED_API_KEY`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_ids\": [\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/lookups", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", "lookups" ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-122741f3-0183-43ed-8c1a-e43f2fbd03d4" }, { "id": "38d88cdb-8bac-4ab4-ad69-f134cc02f719", "name": "Caller is authenticated but not allowed to perform this operation. `error.code` is `FORBIDDEN`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_ids\": [\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/lookups", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", "lookups" ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-38d88cdb-8bac-4ab4-ad69-f134cc02f719" }, { "id": "cd9e9411-3056-4b6b-8797-51d4d315b415", "name": "Requested endpoint or resource does not exist. `error.code` is\none of `ENDPOINT_NOT_FOUND`, `RESOURCE_NOT_FOUND`, `NOT_FOUND`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_ids\": [\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/lookups", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", "lookups" ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-cd9e9411-3056-4b6b-8797-51d4d315b415" }, { "id": "452634cc-628f-4b1c-a986-fc421453aef0", "name": "Request was well-formed but failed semantic validation.\n`error.code` is one of `INVALID_INPUT`, `UNPROCESSABLE_ENTITY`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_ids\": [\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/lookups", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", "lookups" ] } }, "status": "Unprocessable Entity (WebDAV) (RFC 4918)", "code": 422, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-452634cc-628f-4b1c-a986-fc421453aef0" }, { "id": "39bf0ac8-34ac-4948-827a-170d2516c16b", "name": "Rate limit, usage limit, or gateway-level throttle exceeded.\n`error.code` is `TOO_MANY_REQUESTS` (gateway throttle),\n`RATE_LIMIT_EXCEEDED` (per-category), or `USAGE_LIMIT_EXCEEDED`\n(annual quota).\n\nDefault limits (all configurable per company/key):\n- Gate", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_ids\": [\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/lookups", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", "lookups" ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Limit", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Remaining", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Reset", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-39bf0ac8-34ac-4948-827a-170d2516c16b" }, { "id": "660088d1-5d91-4579-96af-de3dada9fb9c", "name": "Unexpected server error. `error.code` is `INTERNAL_SERVER_ERROR`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_ids\": [\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/lookups", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", "lookups" ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-660088d1-5d91-4579-96af-de3dada9fb9c" }, { "id": "05cd57df-de47-4b4e-bc0e-964af393c2cb", "name": "Service is temporarily unavailable (downstream dependency unhealthy). `error.code` is `SERVICE_UNAVAILABLE` or `EXTERNAL_SERVICE_ERROR`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_ids\": [\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/lookups", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", "lookups" ] } }, "status": "Service Unavailable", "code": 503, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-05cd57df-de47-4b4e-bc0e-964af393c2cb" }, { "id": "a27117c7-9ad7-4f6d-92f9-a136df7f837a", "name": "A downstream call timed out. `error.code` is `GATEWAY_TIMEOUT`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_ids\": [\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations/lookups", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations", "lookups" ] } }, "status": "Gateway Timeout", "code": 504, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-a27117c7-9ad7-4f6d-92f9-a136df7f837a" } ], "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-095fbdd2-a74f-4ce8-a98e-8d8b96a5c16a" } ], "id": "010435b0-b7a4-4cd0-8bef-f9030e495e99", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-010435b0-b7a4-4cd0-8bef-f9030e495e99" }, { "name": "Create an AutoGenerator job", "id": "43b3a19d-337a-467a-b5a7-92a352c3dbd0", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "POST", "header": [ { "description": "Optional client-generated key (a UUID is ideal) that makes a\nwrite request safe to retry. The first request is processed and\nits response cached for 24 hours; an identical retry with the\nsame key returns the cached response plus an\n`Idempotency-Replayed: true` header, so the job is never created\ntwice. Reusing a key with a **different** body returns\n`409 IDEMPOTENCY_KEY_REUSED_WITH_DIFFERENT_BODY`.\n", "key": "Idempotency-Key", "value": "" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"prompt\": \"\",\n \"text\": \"\",\n \"files\": [\n \"\",\n \"\"\n ],\n \"web_links\": [\n \"\",\n \"\"\n ],\n \"image_ids\": [\n \"\",\n \"\"\n ],\n \"audience\": \"\",\n \"template_id\": \"\",\n \"settings\": {\n \"add_sources_to_footer\": \"\",\n \"add_sources_to_slides_note\": \"\",\n \"generate_speaker_notes\": \"\",\n \"extract_graph_data\": \"\",\n \"nostrud_a\": -81678589.93498208,\n \"deserunt_cbc\": \"enim\",\n \"incididunt7e\": -98812166.05118364\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations" ] }, "description": "Kicks off a background pipeline that turns the supplied prompt,\ncontext files, and assets into a Prezent presentation. Returns a\n`callback_id` that the caller polls via\n`GET /api/v1/autogenerations/{callback_id}` until `status` is\n`success` or `failed`.\n" }, "response": [ { "id": "cd13d496-509a-42ed-8fd8-a1c53729eea8", "name": "Job accepted; client must poll for completion.", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-generated key (a UUID is ideal) that makes a\nwrite request safe to retry. The first request is processed and\nits response cached for 24 hours; an identical retry with the\nsame key returns the cached response plus an\n`Idempotency-Replayed: true` header, so the job is never created\ntwice. Reusing a key with a **different** body returns\n`409 IDEMPOTENCY_KEY_REUSED_WITH_DIFFERENT_BODY`.\n", "key": "Idempotency-Key", "value": "" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"prompt\": \"\",\n \"text\": \"\",\n \"files\": [\n \"\",\n \"\"\n ],\n \"web_links\": [\n \"\",\n \"\"\n ],\n \"image_ids\": [\n \"\",\n \"\"\n ],\n \"audience\": \"\",\n \"template_id\": \"\",\n \"settings\": {\n \"add_sources_to_footer\": \"\",\n \"add_sources_to_slides_note\": \"\",\n \"generate_speaker_notes\": \"\",\n \"extract_graph_data\": \"\",\n \"nostrud_a\": -81678589.93498208,\n \"deserunt_cbc\": \"enim\",\n \"incididunt7e\": -98812166.05118364\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations" ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Idempotency-Replayed", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"data\": {\n \"callback_id\": \"\",\n \"token\": \"\"\n },\n \"success\": \"\"\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-cd13d496-509a-42ed-8fd8-a1c53729eea8" }, { "id": "4fab2b12-c197-4824-b77c-adb6776e63a2", "name": "Generic client error. `error.code` is one of `BAD_REQUEST`, `INVALID_JSON`, `MISSING_REQUIRED_FIELD`, `MISSING_QUERY_PARAM`, `MISSING_CALLBACK_ID`, `MISSING_SLIDES_ARRAY`, `MISSING_PROMPT`, `MISSING_TEMPLATE_ID`, `MISSING_FILE_CONTENT`, `MISSING_SHARE_DET", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-generated key (a UUID is ideal) that makes a\nwrite request safe to retry. The first request is processed and\nits response cached for 24 hours; an identical retry with the\nsame key returns the cached response plus an\n`Idempotency-Replayed: true` header, so the job is never created\ntwice. Reusing a key with a **different** body returns\n`409 IDEMPOTENCY_KEY_REUSED_WITH_DIFFERENT_BODY`.\n", "key": "Idempotency-Key", "value": "" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"prompt\": \"\",\n \"text\": \"\",\n \"files\": [\n \"\",\n \"\"\n ],\n \"web_links\": [\n \"\",\n \"\"\n ],\n \"image_ids\": [\n \"\",\n \"\"\n ],\n \"audience\": \"\",\n \"template_id\": \"\",\n \"settings\": {\n \"add_sources_to_footer\": \"\",\n \"add_sources_to_slides_note\": \"\",\n \"generate_speaker_notes\": \"\",\n \"extract_graph_data\": \"\",\n \"nostrud_a\": -81678589.93498208,\n \"deserunt_cbc\": \"enim\",\n \"incididunt7e\": -98812166.05118364\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations" ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-4fab2b12-c197-4824-b77c-adb6776e63a2" }, { "id": "2a96f030-d5aa-4275-9cc1-df410999988d", "name": "Caller did not present a valid Bearer token, or the token has\nexpired. `error.code` is one of `UNAUTHORIZED`, `INVALID_API_KEY`,\n`EXPIRED_API_KEY`.\n", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-generated key (a UUID is ideal) that makes a\nwrite request safe to retry. The first request is processed and\nits response cached for 24 hours; an identical retry with the\nsame key returns the cached response plus an\n`Idempotency-Replayed: true` header, so the job is never created\ntwice. Reusing a key with a **different** body returns\n`409 IDEMPOTENCY_KEY_REUSED_WITH_DIFFERENT_BODY`.\n", "key": "Idempotency-Key", "value": "" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"prompt\": \"\",\n \"text\": \"\",\n \"files\": [\n \"\",\n \"\"\n ],\n \"web_links\": [\n \"\",\n \"\"\n ],\n \"image_ids\": [\n \"\",\n \"\"\n ],\n \"audience\": \"\",\n \"template_id\": \"\",\n \"settings\": {\n \"add_sources_to_footer\": \"\",\n \"add_sources_to_slides_note\": \"\",\n \"generate_speaker_notes\": \"\",\n \"extract_graph_data\": \"\",\n \"nostrud_a\": -81678589.93498208,\n \"deserunt_cbc\": \"enim\",\n \"incididunt7e\": -98812166.05118364\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations" ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-2a96f030-d5aa-4275-9cc1-df410999988d" }, { "id": "57a6a622-abbc-40ab-821b-f803b4b46eff", "name": "Caller is authenticated but not allowed to perform this operation. `error.code` is `FORBIDDEN`.", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-generated key (a UUID is ideal) that makes a\nwrite request safe to retry. The first request is processed and\nits response cached for 24 hours; an identical retry with the\nsame key returns the cached response plus an\n`Idempotency-Replayed: true` header, so the job is never created\ntwice. Reusing a key with a **different** body returns\n`409 IDEMPOTENCY_KEY_REUSED_WITH_DIFFERENT_BODY`.\n", "key": "Idempotency-Key", "value": "" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"prompt\": \"\",\n \"text\": \"\",\n \"files\": [\n \"\",\n \"\"\n ],\n \"web_links\": [\n \"\",\n \"\"\n ],\n \"image_ids\": [\n \"\",\n \"\"\n ],\n \"audience\": \"\",\n \"template_id\": \"\",\n \"settings\": {\n \"add_sources_to_footer\": \"\",\n \"add_sources_to_slides_note\": \"\",\n \"generate_speaker_notes\": \"\",\n \"extract_graph_data\": \"\",\n \"nostrud_a\": -81678589.93498208,\n \"deserunt_cbc\": \"enim\",\n \"incididunt7e\": -98812166.05118364\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations" ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-57a6a622-abbc-40ab-821b-f803b4b46eff" }, { "id": "0f86ca5a-ef5a-4f87-92a4-eed38e88513a", "name": "Requested endpoint or resource does not exist. `error.code` is\none of `ENDPOINT_NOT_FOUND`, `RESOURCE_NOT_FOUND`, `NOT_FOUND`.\n", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-generated key (a UUID is ideal) that makes a\nwrite request safe to retry. The first request is processed and\nits response cached for 24 hours; an identical retry with the\nsame key returns the cached response plus an\n`Idempotency-Replayed: true` header, so the job is never created\ntwice. Reusing a key with a **different** body returns\n`409 IDEMPOTENCY_KEY_REUSED_WITH_DIFFERENT_BODY`.\n", "key": "Idempotency-Key", "value": "" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"prompt\": \"\",\n \"text\": \"\",\n \"files\": [\n \"\",\n \"\"\n ],\n \"web_links\": [\n \"\",\n \"\"\n ],\n \"image_ids\": [\n \"\",\n \"\"\n ],\n \"audience\": \"\",\n \"template_id\": \"\",\n \"settings\": {\n \"add_sources_to_footer\": \"\",\n \"add_sources_to_slides_note\": \"\",\n \"generate_speaker_notes\": \"\",\n \"extract_graph_data\": \"\",\n \"nostrud_a\": -81678589.93498208,\n \"deserunt_cbc\": \"enim\",\n \"incididunt7e\": -98812166.05118364\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations" ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-0f86ca5a-ef5a-4f87-92a4-eed38e88513a" }, { "id": "a795c4b3-371d-4a9d-8e90-bc96346857f3", "name": "The supplied `Idempotency-Key` was already used with a different\nrequest body. Reuse a key only for identical retried requests.\n", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-generated key (a UUID is ideal) that makes a\nwrite request safe to retry. The first request is processed and\nits response cached for 24 hours; an identical retry with the\nsame key returns the cached response plus an\n`Idempotency-Replayed: true` header, so the job is never created\ntwice. Reusing a key with a **different** body returns\n`409 IDEMPOTENCY_KEY_REUSED_WITH_DIFFERENT_BODY`.\n", "key": "Idempotency-Key", "value": "" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"prompt\": \"\",\n \"text\": \"\",\n \"files\": [\n \"\",\n \"\"\n ],\n \"web_links\": [\n \"\",\n \"\"\n ],\n \"image_ids\": [\n \"\",\n \"\"\n ],\n \"audience\": \"\",\n \"template_id\": \"\",\n \"settings\": {\n \"add_sources_to_footer\": \"\",\n \"add_sources_to_slides_note\": \"\",\n \"generate_speaker_notes\": \"\",\n \"extract_graph_data\": \"\",\n \"nostrud_a\": -81678589.93498208,\n \"deserunt_cbc\": \"enim\",\n \"incididunt7e\": -98812166.05118364\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations" ] } }, "status": "Conflict", "code": 409, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-a795c4b3-371d-4a9d-8e90-bc96346857f3" }, { "id": "11a0b49c-666c-437e-8264-00b88769dea1", "name": "Request was well-formed but failed semantic validation.\n`error.code` is one of `INVALID_INPUT`, `UNPROCESSABLE_ENTITY`.\n", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-generated key (a UUID is ideal) that makes a\nwrite request safe to retry. The first request is processed and\nits response cached for 24 hours; an identical retry with the\nsame key returns the cached response plus an\n`Idempotency-Replayed: true` header, so the job is never created\ntwice. Reusing a key with a **different** body returns\n`409 IDEMPOTENCY_KEY_REUSED_WITH_DIFFERENT_BODY`.\n", "key": "Idempotency-Key", "value": "" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"prompt\": \"\",\n \"text\": \"\",\n \"files\": [\n \"\",\n \"\"\n ],\n \"web_links\": [\n \"\",\n \"\"\n ],\n \"image_ids\": [\n \"\",\n \"\"\n ],\n \"audience\": \"\",\n \"template_id\": \"\",\n \"settings\": {\n \"add_sources_to_footer\": \"\",\n \"add_sources_to_slides_note\": \"\",\n \"generate_speaker_notes\": \"\",\n \"extract_graph_data\": \"\",\n \"nostrud_a\": -81678589.93498208,\n \"deserunt_cbc\": \"enim\",\n \"incididunt7e\": -98812166.05118364\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations" ] } }, "status": "Unprocessable Entity (WebDAV) (RFC 4918)", "code": 422, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-11a0b49c-666c-437e-8264-00b88769dea1" }, { "id": "759e4228-6dcf-4ad5-8ef8-d3deac4e89f8", "name": "Rate limit, usage limit, or gateway-level throttle exceeded.\n`error.code` is `TOO_MANY_REQUESTS` (gateway throttle),\n`RATE_LIMIT_EXCEEDED` (per-category), or `USAGE_LIMIT_EXCEEDED`\n(annual quota).\n\nDefault limits (all configurable per company/key):\n- Gate", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-generated key (a UUID is ideal) that makes a\nwrite request safe to retry. The first request is processed and\nits response cached for 24 hours; an identical retry with the\nsame key returns the cached response plus an\n`Idempotency-Replayed: true` header, so the job is never created\ntwice. Reusing a key with a **different** body returns\n`409 IDEMPOTENCY_KEY_REUSED_WITH_DIFFERENT_BODY`.\n", "key": "Idempotency-Key", "value": "" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"prompt\": \"\",\n \"text\": \"\",\n \"files\": [\n \"\",\n \"\"\n ],\n \"web_links\": [\n \"\",\n \"\"\n ],\n \"image_ids\": [\n \"\",\n \"\"\n ],\n \"audience\": \"\",\n \"template_id\": \"\",\n \"settings\": {\n \"add_sources_to_footer\": \"\",\n \"add_sources_to_slides_note\": \"\",\n \"generate_speaker_notes\": \"\",\n \"extract_graph_data\": \"\",\n \"nostrud_a\": -81678589.93498208,\n \"deserunt_cbc\": \"enim\",\n \"incididunt7e\": -98812166.05118364\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations" ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Limit", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Remaining", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Reset", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-759e4228-6dcf-4ad5-8ef8-d3deac4e89f8" }, { "id": "4d3cd420-4aa4-4204-8899-67999e1b7f1f", "name": "Unexpected server error. `error.code` is `INTERNAL_SERVER_ERROR`.", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-generated key (a UUID is ideal) that makes a\nwrite request safe to retry. The first request is processed and\nits response cached for 24 hours; an identical retry with the\nsame key returns the cached response plus an\n`Idempotency-Replayed: true` header, so the job is never created\ntwice. Reusing a key with a **different** body returns\n`409 IDEMPOTENCY_KEY_REUSED_WITH_DIFFERENT_BODY`.\n", "key": "Idempotency-Key", "value": "" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"prompt\": \"\",\n \"text\": \"\",\n \"files\": [\n \"\",\n \"\"\n ],\n \"web_links\": [\n \"\",\n \"\"\n ],\n \"image_ids\": [\n \"\",\n \"\"\n ],\n \"audience\": \"\",\n \"template_id\": \"\",\n \"settings\": {\n \"add_sources_to_footer\": \"\",\n \"add_sources_to_slides_note\": \"\",\n \"generate_speaker_notes\": \"\",\n \"extract_graph_data\": \"\",\n \"nostrud_a\": -81678589.93498208,\n \"deserunt_cbc\": \"enim\",\n \"incididunt7e\": -98812166.05118364\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations" ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-4d3cd420-4aa4-4204-8899-67999e1b7f1f" }, { "id": "e27b7d90-097c-408e-9de9-08983688b63c", "name": "Service is temporarily unavailable (downstream dependency unhealthy). `error.code` is `SERVICE_UNAVAILABLE` or `EXTERNAL_SERVICE_ERROR`.", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-generated key (a UUID is ideal) that makes a\nwrite request safe to retry. The first request is processed and\nits response cached for 24 hours; an identical retry with the\nsame key returns the cached response plus an\n`Idempotency-Replayed: true` header, so the job is never created\ntwice. Reusing a key with a **different** body returns\n`409 IDEMPOTENCY_KEY_REUSED_WITH_DIFFERENT_BODY`.\n", "key": "Idempotency-Key", "value": "" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"prompt\": \"\",\n \"text\": \"\",\n \"files\": [\n \"\",\n \"\"\n ],\n \"web_links\": [\n \"\",\n \"\"\n ],\n \"image_ids\": [\n \"\",\n \"\"\n ],\n \"audience\": \"\",\n \"template_id\": \"\",\n \"settings\": {\n \"add_sources_to_footer\": \"\",\n \"add_sources_to_slides_note\": \"\",\n \"generate_speaker_notes\": \"\",\n \"extract_graph_data\": \"\",\n \"nostrud_a\": -81678589.93498208,\n \"deserunt_cbc\": \"enim\",\n \"incididunt7e\": -98812166.05118364\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations" ] } }, "status": "Service Unavailable", "code": 503, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-e27b7d90-097c-408e-9de9-08983688b63c" }, { "id": "55314005-8a5b-4bb2-94c7-7362e7734e4a", "name": "A downstream call timed out. `error.code` is `GATEWAY_TIMEOUT`.", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-generated key (a UUID is ideal) that makes a\nwrite request safe to retry. The first request is processed and\nits response cached for 24 hours; an identical retry with the\nsame key returns the cached response plus an\n`Idempotency-Replayed: true` header, so the job is never created\ntwice. Reusing a key with a **different** body returns\n`409 IDEMPOTENCY_KEY_REUSED_WITH_DIFFERENT_BODY`.\n", "key": "Idempotency-Key", "value": "" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"prompt\": \"\",\n \"text\": \"\",\n \"files\": [\n \"\",\n \"\"\n ],\n \"web_links\": [\n \"\",\n \"\"\n ],\n \"image_ids\": [\n \"\",\n \"\"\n ],\n \"audience\": \"\",\n \"template_id\": \"\",\n \"settings\": {\n \"add_sources_to_footer\": \"\",\n \"add_sources_to_slides_note\": \"\",\n \"generate_speaker_notes\": \"\",\n \"extract_graph_data\": \"\",\n \"nostrud_a\": -81678589.93498208,\n \"deserunt_cbc\": \"enim\",\n \"incididunt7e\": -98812166.05118364\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerations", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerations" ] } }, "status": "Gateway Timeout", "code": 504, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-55314005-8a5b-4bb2-94c7-7362e7734e4a" } ], "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-43b3a19d-337a-467a-b5a7-92a352c3dbd0" } ], "id": "cb81661c-2171-43f3-8bef-4d70ead83e0d", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-cb81661c-2171-43f3-8bef-4d70ead83e0d" }, { "name": "autogenerator", "item": [ { "name": "meta", "item": [ { "name": "Fetch slide-metadata for asset IDs", "id": "af842b08-5a47-4f08-9ff8-dbe141b95844", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"assetIds\": [\n \"\"\n ],\n \"callbackID\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/meta", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "meta" ] }, "description": "Returns slide-level metadata (titles, layout codes, thumbnails) for\neach asset id provided. Used by editors that need to enrich a slide\nlist without re-running generation.\n" }, "response": [ { "id": "e0cc4d94-8dba-408e-bd06-be2e771f7a19", "name": "Metadata returned for each asset id.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"assetIds\": [\n \"\"\n ],\n \"callbackID\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/meta", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "meta" ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"data\": {},\n \"success\": \"\"\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-e0cc4d94-8dba-408e-bd06-be2e771f7a19" }, { "id": "7275a08f-fd1d-4a4a-8945-cc97073b28b2", "name": "Generic client error. `error.code` is one of `BAD_REQUEST`, `INVALID_JSON`, `MISSING_REQUIRED_FIELD`, `MISSING_QUERY_PARAM`, `MISSING_CALLBACK_ID`, `MISSING_SLIDES_ARRAY`, `MISSING_PROMPT`, `MISSING_TEMPLATE_ID`, `MISSING_FILE_CONTENT`, `MISSING_SHARE_DET", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"assetIds\": [\n \"\"\n ],\n \"callbackID\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/meta", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "meta" ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-7275a08f-fd1d-4a4a-8945-cc97073b28b2" }, { "id": "4f27a357-7563-4451-a18a-47aebe4f4d41", "name": "Caller did not present a valid Bearer token, or the token has\nexpired. `error.code` is one of `UNAUTHORIZED`, `INVALID_API_KEY`,\n`EXPIRED_API_KEY`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"assetIds\": [\n \"\"\n ],\n \"callbackID\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/meta", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "meta" ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-4f27a357-7563-4451-a18a-47aebe4f4d41" }, { "id": "aa83768b-70aa-4311-ba1f-78b26699ab90", "name": "Caller is authenticated but not allowed to perform this operation. `error.code` is `FORBIDDEN`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"assetIds\": [\n \"\"\n ],\n \"callbackID\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/meta", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "meta" ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-aa83768b-70aa-4311-ba1f-78b26699ab90" }, { "id": "76433d60-8998-4d79-b7d9-1d089d5d7f42", "name": "Requested endpoint or resource does not exist. `error.code` is\none of `ENDPOINT_NOT_FOUND`, `RESOURCE_NOT_FOUND`, `NOT_FOUND`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"assetIds\": [\n \"\"\n ],\n \"callbackID\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/meta", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "meta" ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-76433d60-8998-4d79-b7d9-1d089d5d7f42" }, { "id": "7f0a200b-be55-42c5-8273-f432ca0461e3", "name": "Request was well-formed but failed semantic validation.\n`error.code` is one of `INVALID_INPUT`, `UNPROCESSABLE_ENTITY`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"assetIds\": [\n \"\"\n ],\n \"callbackID\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/meta", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "meta" ] } }, "status": "Unprocessable Entity (WebDAV) (RFC 4918)", "code": 422, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-7f0a200b-be55-42c5-8273-f432ca0461e3" }, { "id": "722ba386-b437-4696-af75-bd289677ce92", "name": "Rate limit, usage limit, or gateway-level throttle exceeded.\n`error.code` is `TOO_MANY_REQUESTS` (gateway throttle),\n`RATE_LIMIT_EXCEEDED` (per-category), or `USAGE_LIMIT_EXCEEDED`\n(annual quota).\n\nDefault limits (all configurable per company/key):\n- Gate", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"assetIds\": [\n \"\"\n ],\n \"callbackID\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/meta", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "meta" ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Limit", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Remaining", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Reset", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-722ba386-b437-4696-af75-bd289677ce92" }, { "id": "604e21c0-eb90-47ec-96db-16a0e8364fbb", "name": "Unexpected server error. `error.code` is `INTERNAL_SERVER_ERROR`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"assetIds\": [\n \"\"\n ],\n \"callbackID\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/meta", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "meta" ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-604e21c0-eb90-47ec-96db-16a0e8364fbb" }, { "id": "2ce8b0df-61c4-4e46-9151-6fd76dfd7b66", "name": "Service is temporarily unavailable (downstream dependency unhealthy). `error.code` is `SERVICE_UNAVAILABLE` or `EXTERNAL_SERVICE_ERROR`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"assetIds\": [\n \"\"\n ],\n \"callbackID\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/meta", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "meta" ] } }, "status": "Service Unavailable", "code": 503, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-2ce8b0df-61c4-4e46-9151-6fd76dfd7b66" }, { "id": "916ef793-c128-4936-b800-65a0eadb1ed6", "name": "A downstream call timed out. `error.code` is `GATEWAY_TIMEOUT`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"assetIds\": [\n \"\"\n ],\n \"callbackID\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/meta", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "meta" ] } }, "status": "Gateway Timeout", "code": 504, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-916ef793-c128-4936-b800-65a0eadb1ed6" } ], "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-af842b08-5a47-4f08-9ff8-dbe141b95844" } ], "id": "3d5f55ed-87ed-4fdf-865e-5960d3c7a513", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-3d5f55ed-87ed-4fdf-865e-5960d3c7a513" }, { "name": "slide-data", "item": [ { "name": "Fetch slide data for a single slide callback", "id": "97c465fe-03e7-45c2-8299-26a228030931", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"slide_callback_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/slide-data", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "slide-data" ] }, "description": "Returns the raw slide-data document (text, images, layout,\nspeaker notes) for the given `slide_callback_id`.\n" }, "response": [ { "id": "79a06d49-a9a0-4b46-926e-9894ec2ae7fb", "name": "Slide data returned.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"slide_callback_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/slide-data", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "slide-data" ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"data\": {},\n \"success\": \"\"\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-79a06d49-a9a0-4b46-926e-9894ec2ae7fb" }, { "id": "057d3790-e5fd-4d84-b0f4-763e308e30aa", "name": "Generic client error. `error.code` is one of `BAD_REQUEST`, `INVALID_JSON`, `MISSING_REQUIRED_FIELD`, `MISSING_QUERY_PARAM`, `MISSING_CALLBACK_ID`, `MISSING_SLIDES_ARRAY`, `MISSING_PROMPT`, `MISSING_TEMPLATE_ID`, `MISSING_FILE_CONTENT`, `MISSING_SHARE_DET", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"slide_callback_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/slide-data", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "slide-data" ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-057d3790-e5fd-4d84-b0f4-763e308e30aa" }, { "id": "5b602043-ae60-47f5-9019-ba39160ab5bd", "name": "Caller did not present a valid Bearer token, or the token has\nexpired. `error.code` is one of `UNAUTHORIZED`, `INVALID_API_KEY`,\n`EXPIRED_API_KEY`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"slide_callback_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/slide-data", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "slide-data" ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-5b602043-ae60-47f5-9019-ba39160ab5bd" }, { "id": "4b54e442-5ee9-4217-a98e-73a9f95c21ac", "name": "Caller is authenticated but not allowed to perform this operation. `error.code` is `FORBIDDEN`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"slide_callback_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/slide-data", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "slide-data" ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-4b54e442-5ee9-4217-a98e-73a9f95c21ac" }, { "id": "5ab31c68-4d31-4e29-b5c0-b22ccb01ea08", "name": "Requested endpoint or resource does not exist. `error.code` is\none of `ENDPOINT_NOT_FOUND`, `RESOURCE_NOT_FOUND`, `NOT_FOUND`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"slide_callback_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/slide-data", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "slide-data" ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-5ab31c68-4d31-4e29-b5c0-b22ccb01ea08" }, { "id": "6d55ae66-e566-48a4-8fdf-83fd9ea516b4", "name": "Request was well-formed but failed semantic validation.\n`error.code` is one of `INVALID_INPUT`, `UNPROCESSABLE_ENTITY`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"slide_callback_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/slide-data", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "slide-data" ] } }, "status": "Unprocessable Entity (WebDAV) (RFC 4918)", "code": 422, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-6d55ae66-e566-48a4-8fdf-83fd9ea516b4" }, { "id": "43e4eceb-43e0-48de-acfe-9760c30ee010", "name": "Rate limit, usage limit, or gateway-level throttle exceeded.\n`error.code` is `TOO_MANY_REQUESTS` (gateway throttle),\n`RATE_LIMIT_EXCEEDED` (per-category), or `USAGE_LIMIT_EXCEEDED`\n(annual quota).\n\nDefault limits (all configurable per company/key):\n- Gate", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"slide_callback_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/slide-data", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "slide-data" ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Limit", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Remaining", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Reset", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-43e4eceb-43e0-48de-acfe-9760c30ee010" }, { "id": "4c5c85b2-f2dc-4129-a6f2-16caac0c5e3e", "name": "Unexpected server error. `error.code` is `INTERNAL_SERVER_ERROR`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"slide_callback_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/slide-data", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "slide-data" ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-4c5c85b2-f2dc-4129-a6f2-16caac0c5e3e" }, { "id": "9556e65d-0a20-42ad-a1bd-8d23045db78b", "name": "Service is temporarily unavailable (downstream dependency unhealthy). `error.code` is `SERVICE_UNAVAILABLE` or `EXTERNAL_SERVICE_ERROR`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"slide_callback_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/slide-data", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "slide-data" ] } }, "status": "Service Unavailable", "code": 503, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-9556e65d-0a20-42ad-a1bd-8d23045db78b" }, { "id": "52bebd0b-94e1-4b1c-a34b-55a390151af2", "name": "A downstream call timed out. `error.code` is `GATEWAY_TIMEOUT`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"slide_callback_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/slide-data", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "slide-data" ] } }, "status": "Gateway Timeout", "code": 504, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-52bebd0b-94e1-4b1c-a34b-55a390151af2" } ], "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-97c465fe-03e7-45c2-8299-26a228030931" } ], "id": "114b5bae-dc6f-4a66-be94-a9cbb7478092", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-114b5bae-dc6f-4a66-be94-a9cbb7478092" }, { "name": "brand-image-search", "item": [ { "name": "Search the caller's brand-image library", "id": "897b8ed2-d3c0-4ace-9602-7269ace0540b", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"query\": \"\",\n \"skip\": \"\",\n \"limit\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/brand-image-search", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "brand-image-search" ] }, "description": "Returns brand images that match the query string, ordered by\nrelevance. Supports `skip` and `limit` for pagination.\n" }, "response": [ { "id": "da9a9abf-71bd-4691-8e38-9d57408aa4be", "name": "Matching brand images returned.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"query\": \"\",\n \"skip\": \"\",\n \"limit\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/brand-image-search", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "brand-image-search" ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"data\": {},\n \"success\": \"\"\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-da9a9abf-71bd-4691-8e38-9d57408aa4be" }, { "id": "6a809be9-3579-43b7-b375-36e8b9efb903", "name": "Generic client error. `error.code` is one of `BAD_REQUEST`, `INVALID_JSON`, `MISSING_REQUIRED_FIELD`, `MISSING_QUERY_PARAM`, `MISSING_CALLBACK_ID`, `MISSING_SLIDES_ARRAY`, `MISSING_PROMPT`, `MISSING_TEMPLATE_ID`, `MISSING_FILE_CONTENT`, `MISSING_SHARE_DET", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"query\": \"\",\n \"skip\": \"\",\n \"limit\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/brand-image-search", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "brand-image-search" ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-6a809be9-3579-43b7-b375-36e8b9efb903" }, { "id": "4852bd2b-9f02-4050-a182-7db0f6e750d7", "name": "Caller did not present a valid Bearer token, or the token has\nexpired. `error.code` is one of `UNAUTHORIZED`, `INVALID_API_KEY`,\n`EXPIRED_API_KEY`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"query\": \"\",\n \"skip\": \"\",\n \"limit\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/brand-image-search", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "brand-image-search" ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-4852bd2b-9f02-4050-a182-7db0f6e750d7" }, { "id": "7ca28d08-11ca-4350-9aef-0ae8cf1bd453", "name": "Caller is authenticated but not allowed to perform this operation. `error.code` is `FORBIDDEN`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"query\": \"\",\n \"skip\": \"\",\n \"limit\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/brand-image-search", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "brand-image-search" ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-7ca28d08-11ca-4350-9aef-0ae8cf1bd453" }, { "id": "37ab11c4-f4c8-4183-aeaf-102250fcd288", "name": "Requested endpoint or resource does not exist. `error.code` is\none of `ENDPOINT_NOT_FOUND`, `RESOURCE_NOT_FOUND`, `NOT_FOUND`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"query\": \"\",\n \"skip\": \"\",\n \"limit\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/brand-image-search", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "brand-image-search" ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-37ab11c4-f4c8-4183-aeaf-102250fcd288" }, { "id": "f6db69a4-e026-41d8-b3e4-0143bbe84a06", "name": "Request was well-formed but failed semantic validation.\n`error.code` is one of `INVALID_INPUT`, `UNPROCESSABLE_ENTITY`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"query\": \"\",\n \"skip\": \"\",\n \"limit\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/brand-image-search", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "brand-image-search" ] } }, "status": "Unprocessable Entity (WebDAV) (RFC 4918)", "code": 422, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-f6db69a4-e026-41d8-b3e4-0143bbe84a06" }, { "id": "8c7a0b48-b5f1-4ebc-af9e-9d9a2364eb26", "name": "Rate limit, usage limit, or gateway-level throttle exceeded.\n`error.code` is `TOO_MANY_REQUESTS` (gateway throttle),\n`RATE_LIMIT_EXCEEDED` (per-category), or `USAGE_LIMIT_EXCEEDED`\n(annual quota).\n\nDefault limits (all configurable per company/key):\n- Gate", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"query\": \"\",\n \"skip\": \"\",\n \"limit\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/brand-image-search", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "brand-image-search" ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Limit", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Remaining", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Reset", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-8c7a0b48-b5f1-4ebc-af9e-9d9a2364eb26" }, { "id": "51febc17-83c8-4662-b32b-c0a57ce3c715", "name": "Unexpected server error. `error.code` is `INTERNAL_SERVER_ERROR`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"query\": \"\",\n \"skip\": \"\",\n \"limit\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/brand-image-search", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "brand-image-search" ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-51febc17-83c8-4662-b32b-c0a57ce3c715" }, { "id": "a9e7263d-7b2c-4b15-bfb8-3f0abe81fc8c", "name": "Service is temporarily unavailable (downstream dependency unhealthy). `error.code` is `SERVICE_UNAVAILABLE` or `EXTERNAL_SERVICE_ERROR`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"query\": \"\",\n \"skip\": \"\",\n \"limit\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/brand-image-search", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "brand-image-search" ] } }, "status": "Service Unavailable", "code": 503, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-a9e7263d-7b2c-4b15-bfb8-3f0abe81fc8c" }, { "id": "0d4fd705-3ca5-4c6b-912f-830b9afb0b6d", "name": "A downstream call timed out. `error.code` is `GATEWAY_TIMEOUT`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"query\": \"\",\n \"skip\": \"\",\n \"limit\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/brand-image-search", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "brand-image-search" ] } }, "status": "Gateway Timeout", "code": 504, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-0d4fd705-3ca5-4c6b-912f-830b9afb0b6d" } ], "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-897b8ed2-d3c0-4ace-9602-7269ace0540b" } ], "id": "81e1337f-8326-4b7b-a3ca-f8222a0b6a53", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-81e1337f-8326-4b7b-a3ca-f8222a0b6a53" }, { "name": "library-image-search", "item": [ { "name": "Search the configured stock-image library", "id": "a0066523-0137-4af3-af5d-6a815b82b8d6", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"searchKey\": \"\",\n \"limit\": 30,\n \"offset\": 0,\n \"slide_callback_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/library-image-search", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "library-image-search" ] }, "description": "Searches the configured stock image provider (Adobe Stock or\nFreepik, depending on company configuration). Supports\n`limit`/`offset` pagination. If `searchKey` is omitted, the\nhandler infers it from the supplied slide context.\n" }, "response": [ { "id": "8ffa352a-2082-472e-a6e0-c830fd180dcf", "name": "Matching library images returned.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"searchKey\": \"\",\n \"limit\": 30,\n \"offset\": 0,\n \"slide_callback_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/library-image-search", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "library-image-search" ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"data\": {},\n \"success\": \"\"\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-8ffa352a-2082-472e-a6e0-c830fd180dcf" }, { "id": "a203689f-ad65-482e-bb30-74cf391fd9ca", "name": "Generic client error. `error.code` is one of `BAD_REQUEST`, `INVALID_JSON`, `MISSING_REQUIRED_FIELD`, `MISSING_QUERY_PARAM`, `MISSING_CALLBACK_ID`, `MISSING_SLIDES_ARRAY`, `MISSING_PROMPT`, `MISSING_TEMPLATE_ID`, `MISSING_FILE_CONTENT`, `MISSING_SHARE_DET", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"searchKey\": \"\",\n \"limit\": 30,\n \"offset\": 0,\n \"slide_callback_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/library-image-search", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "library-image-search" ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-a203689f-ad65-482e-bb30-74cf391fd9ca" }, { "id": "914a133d-802f-4bd4-bb4d-91a20872c882", "name": "Caller did not present a valid Bearer token, or the token has\nexpired. `error.code` is one of `UNAUTHORIZED`, `INVALID_API_KEY`,\n`EXPIRED_API_KEY`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"searchKey\": \"\",\n \"limit\": 30,\n \"offset\": 0,\n \"slide_callback_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/library-image-search", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "library-image-search" ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-914a133d-802f-4bd4-bb4d-91a20872c882" }, { "id": "6defbc19-c54f-4f57-ad8a-53d8cfbae881", "name": "Caller is authenticated but not allowed to perform this operation. `error.code` is `FORBIDDEN`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"searchKey\": \"\",\n \"limit\": 30,\n \"offset\": 0,\n \"slide_callback_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/library-image-search", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "library-image-search" ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-6defbc19-c54f-4f57-ad8a-53d8cfbae881" }, { "id": "4d5b44da-ada8-4eda-a78b-4acdcd5ab4ab", "name": "Requested endpoint or resource does not exist. `error.code` is\none of `ENDPOINT_NOT_FOUND`, `RESOURCE_NOT_FOUND`, `NOT_FOUND`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"searchKey\": \"\",\n \"limit\": 30,\n \"offset\": 0,\n \"slide_callback_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/library-image-search", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "library-image-search" ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-4d5b44da-ada8-4eda-a78b-4acdcd5ab4ab" }, { "id": "4a62323c-8185-499f-af84-2bb14363fa5e", "name": "Request was well-formed but failed semantic validation.\n`error.code` is one of `INVALID_INPUT`, `UNPROCESSABLE_ENTITY`.\n", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"searchKey\": \"\",\n \"limit\": 30,\n \"offset\": 0,\n \"slide_callback_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/library-image-search", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "library-image-search" ] } }, "status": "Unprocessable Entity (WebDAV) (RFC 4918)", "code": 422, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-4a62323c-8185-499f-af84-2bb14363fa5e" }, { "id": "c9140af9-739a-4501-b4d9-1f3d5eda75fd", "name": "Rate limit, usage limit, or gateway-level throttle exceeded.\n`error.code` is `TOO_MANY_REQUESTS` (gateway throttle),\n`RATE_LIMIT_EXCEEDED` (per-category), or `USAGE_LIMIT_EXCEEDED`\n(annual quota).\n\nDefault limits (all configurable per company/key):\n- Gate", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"searchKey\": \"\",\n \"limit\": 30,\n \"offset\": 0,\n \"slide_callback_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/library-image-search", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "library-image-search" ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Limit", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Remaining", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-RateLimit-Reset", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-c9140af9-739a-4501-b4d9-1f3d5eda75fd" }, { "id": "3ce99c71-bcb2-4932-977f-78a565e75cee", "name": "Unexpected server error. `error.code` is `INTERNAL_SERVER_ERROR`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"searchKey\": \"\",\n \"limit\": 30,\n \"offset\": 0,\n \"slide_callback_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/library-image-search", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "library-image-search" ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-3ce99c71-bcb2-4932-977f-78a565e75cee" }, { "id": "f8eff5bb-8654-46ed-8cf1-586c4c53525e", "name": "Service is temporarily unavailable (downstream dependency unhealthy). `error.code` is `SERVICE_UNAVAILABLE` or `EXTERNAL_SERVICE_ERROR`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"searchKey\": \"\",\n \"limit\": 30,\n \"offset\": 0,\n \"slide_callback_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/library-image-search", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "library-image-search" ] } }, "status": "Service Unavailable", "code": 503, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-f8eff5bb-8654-46ed-8cf1-586c4c53525e" }, { "id": "f45cf43c-9d44-4074-993f-1af72bd33056", "name": "A downstream call timed out. `error.code` is `GATEWAY_TIMEOUT`.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"searchKey\": \"\",\n \"limit\": 30,\n \"offset\": 0,\n \"slide_callback_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/autogenerator/library-image-search", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "autogenerator", "library-image-search" ] } }, "status": "Gateway Timeout", "code": 504, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": {},\n \"error\": {\n \"code\": \"MISSING_TEMPLATE_ID\",\n \"message\": \"\",\n \"details\": {\n \"nisic_\": 79090396.18196517\n }\n }\n}", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-f45cf43c-9d44-4074-993f-1af72bd33056" } ], "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-a0066523-0137-4af3-af5d-6a815b82b8d6" } ], "id": "3432f6aa-93d6-414d-ad5a-c0e0698a0827", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-3432f6aa-93d6-414d-ad5a-c0e0698a0827" } ], "id": "701c1df3-4851-41f8-bfcb-2dec44cb3c2a", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-701c1df3-4851-41f8-bfcb-2dec44cb3c2a" } ], "id": "3b8240e3-5b0b-42c5-b0fe-7504dd84fc14", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-3b8240e3-5b0b-42c5-b0fe-7504dd84fc14" } ], "id": "6781ac22-da7a-4bb7-ac44-cb855cde657e", "createdAt": "2026-07-28T02:40:13.000Z", "updatedAt": "2026-07-28T02:40:13.000Z", "uid": "35240-6781ac22-da7a-4bb7-ac44-cb855cde657e" } ], "auth": { "type": "bearer", "bearer": [ { "key": "token", "value": "{{bearerToken}}", "type": "string" } ] }, "variable": [ { "key": "baseUrl", "value": "https://api.prezent.ai" } ] }