{ "info": { "_postman_id": "6b37f54f-e97b-4a5c-b48d-10317d4a3578", "name": "Prezent Platform Audiences Template Converter 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:33.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "lastUpdatedBy": "35240", "uid": "35240-6b37f54f-e97b-4a5c-b48d-10317d4a3578" }, "item": [ { "name": "api", "item": [ { "name": "v1", "item": [ { "name": "template-conversions", "item": [ { "name": "preprocessings", "item": [ { "name": "Create a preprocessing chunk for a template-conversion input", "id": "cd9f07f1-4ba3-491c-b6a9-4166fe912140", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"fileContent\": \"\",\n \"fileName\": \"\",\n \"chunkIndex\": \"\",\n \"totalChunks\": \"\",\n \"requestIdentifier\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/preprocessings", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", "preprocessings" ] }, "description": "Accepts one chunk of a multi-chunk PPTX upload, used as the\n`inputDeck` for a subsequent template-conversion job. Only `.pptx`\nfiles are accepted. Collection-level \u2014 the upload is grouped by\nthe body's `fileIdentifier` and precedes the creation of the\nconversion's `callback_id`.\n" }, "response": [ { "id": "6cb9be81-c481-408e-beed-02196cadcc6f", "name": "Chunk received.", "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 \"fileContent\": \"\",\n \"fileName\": \"\",\n \"chunkIndex\": \"\",\n \"totalChunks\": \"\",\n \"requestIdentifier\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/preprocessings", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", "preprocessings" ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"data\": {\n \"request_identifier\": \"\",\n \"file_name\": \"\",\n \"message\": \"\"\n },\n \"success\": \"\"\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-6cb9be81-c481-408e-beed-02196cadcc6f" }, { "id": "41484137-7d45-4a5b-9148-6c0ea5103aa7", "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 \"fileContent\": \"\",\n \"fileName\": \"\",\n \"chunkIndex\": \"\",\n \"totalChunks\": \"\",\n \"requestIdentifier\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/preprocessings", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", "preprocessings" ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-41484137-7d45-4a5b-9148-6c0ea5103aa7" }, { "id": "e6e439fc-a6ff-4cfb-95b7-e604b54cb94f", "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 \"fileContent\": \"\",\n \"fileName\": \"\",\n \"chunkIndex\": \"\",\n \"totalChunks\": \"\",\n \"requestIdentifier\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/preprocessings", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", "preprocessings" ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-e6e439fc-a6ff-4cfb-95b7-e604b54cb94f" }, { "id": "c8905826-5f92-4cb2-8f47-683e835dcc5e", "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 \"fileContent\": \"\",\n \"fileName\": \"\",\n \"chunkIndex\": \"\",\n \"totalChunks\": \"\",\n \"requestIdentifier\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/preprocessings", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", "preprocessings" ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-c8905826-5f92-4cb2-8f47-683e835dcc5e" }, { "id": "cc8db0ed-ba0c-4ec9-820c-89821d5fa08c", "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 \"fileContent\": \"\",\n \"fileName\": \"\",\n \"chunkIndex\": \"\",\n \"totalChunks\": \"\",\n \"requestIdentifier\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/preprocessings", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", "preprocessings" ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-cc8db0ed-ba0c-4ec9-820c-89821d5fa08c" }, { "id": "ba2e4862-a781-4a7e-9476-8d71509109c1", "name": "Uploaded file's extension or MIME type is not accepted. `error.code` is `UNSUPPORTED_FILE_TYPE`.", "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 \"fileContent\": \"\",\n \"fileName\": \"\",\n \"chunkIndex\": \"\",\n \"totalChunks\": \"\",\n \"requestIdentifier\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/preprocessings", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", "preprocessings" ] } }, "status": "Unsupported Media Type", "code": 415, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-ba2e4862-a781-4a7e-9476-8d71509109c1" }, { "id": "190a3bda-340f-4144-bde8-b0b6f2b860f9", "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 \"fileContent\": \"\",\n \"fileName\": \"\",\n \"chunkIndex\": \"\",\n \"totalChunks\": \"\",\n \"requestIdentifier\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/preprocessings", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", "preprocessings" ] } }, "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-190a3bda-340f-4144-bde8-b0b6f2b860f9" }, { "id": "7cb2c2ae-c9cc-4d18-baf0-f0a20cb6b01f", "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 \"fileContent\": \"\",\n \"fileName\": \"\",\n \"chunkIndex\": \"\",\n \"totalChunks\": \"\",\n \"requestIdentifier\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/preprocessings", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", "preprocessings" ] } }, "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-7cb2c2ae-c9cc-4d18-baf0-f0a20cb6b01f" }, { "id": "02e42611-d719-4ed3-b42d-5be038f78ef2", "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 \"fileContent\": \"\",\n \"fileName\": \"\",\n \"chunkIndex\": \"\",\n \"totalChunks\": \"\",\n \"requestIdentifier\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/preprocessings", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", "preprocessings" ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-02e42611-d719-4ed3-b42d-5be038f78ef2" }, { "id": "4a1a550f-a27c-45f4-9997-d31e08aefaeb", "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 \"fileContent\": \"\",\n \"fileName\": \"\",\n \"chunkIndex\": \"\",\n \"totalChunks\": \"\",\n \"requestIdentifier\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/preprocessings", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", "preprocessings" ] } }, "status": "Service Unavailable", "code": 503, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-4a1a550f-a27c-45f4-9997-d31e08aefaeb" }, { "id": "90d5591c-24a0-4c45-bf83-4e187b04aff0", "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 \"fileContent\": \"\",\n \"fileName\": \"\",\n \"chunkIndex\": \"\",\n \"totalChunks\": \"\",\n \"requestIdentifier\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/preprocessings", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", "preprocessings" ] } }, "status": "Gateway Timeout", "code": 504, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-90d5591c-24a0-4c45-bf83-4e187b04aff0" } ], "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-cd9f07f1-4ba3-491c-b6a9-4166fe912140" } ], "id": "2d93e459-e8eb-48bc-8843-111557cf4095", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-2d93e459-e8eb-48bc-8843-111557cf4095" }, { "name": "finalisations", "item": [ { "name": "Create a finalisation for a chunked PPTX upload", "id": "2188daef-e549-4148-b3c3-6b3051e0d845", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"fileIdentifier\": \"\",\n \"fileName\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/finalisations", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", "finalisations" ] }, "description": "Concludes a chunked upload identified by `fileIdentifier`. The\nfinalised file must be a `.pptx`, no larger than 200 MB, and no\nmore than 100 pages. Collection-level \u2014 runs before the conversion's\n`callback_id` exists.\n" }, "response": [ { "id": "71844b40-7a3b-4980-9c8d-82c70c25ae90", "name": "File assembled.", "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 \"fileIdentifier\": \"\",\n \"fileName\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/finalisations", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", "finalisations" ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"data\": {\n \"file_id\": \"\",\n \"s3_prefix\": \"\",\n \"s3_bucket\": \"\",\n \"type\": \"\",\n \"size_kb\": \"\",\n \"num_of_pages\": \"\"\n },\n \"success\": \"\"\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-71844b40-7a3b-4980-9c8d-82c70c25ae90" }, { "id": "2f150f26-3d03-4e8b-aa67-2b446368a133", "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 \"fileIdentifier\": \"\",\n \"fileName\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/finalisations", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", "finalisations" ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-2f150f26-3d03-4e8b-aa67-2b446368a133" }, { "id": "9184d1f1-64fc-4500-96e2-0682647763e6", "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 \"fileIdentifier\": \"\",\n \"fileName\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/finalisations", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", "finalisations" ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-9184d1f1-64fc-4500-96e2-0682647763e6" }, { "id": "58c9c535-16cd-4cb8-9609-e637bbaf65a7", "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 \"fileIdentifier\": \"\",\n \"fileName\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/finalisations", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", "finalisations" ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-58c9c535-16cd-4cb8-9609-e637bbaf65a7" }, { "id": "41cfa60a-f942-461f-8fb3-4fe6ea4a9656", "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 \"fileIdentifier\": \"\",\n \"fileName\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/finalisations", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", "finalisations" ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-41cfa60a-f942-461f-8fb3-4fe6ea4a9656" }, { "id": "b62df9bb-999f-4785-951b-630eec417dae", "name": "Uploaded file's extension or MIME type is not accepted. `error.code` is `UNSUPPORTED_FILE_TYPE`.", "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 \"fileIdentifier\": \"\",\n \"fileName\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/finalisations", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", "finalisations" ] } }, "status": "Unsupported Media Type", "code": 415, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-b62df9bb-999f-4785-951b-630eec417dae" }, { "id": "87900de9-c09f-441b-83b8-fe9c14f95620", "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 \"fileIdentifier\": \"\",\n \"fileName\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/finalisations", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", "finalisations" ] } }, "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-87900de9-c09f-441b-83b8-fe9c14f95620" }, { "id": "a056dd51-ef8f-47f0-8b6e-57249fbae3a3", "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 \"fileIdentifier\": \"\",\n \"fileName\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/finalisations", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", "finalisations" ] } }, "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-a056dd51-ef8f-47f0-8b6e-57249fbae3a3" }, { "id": "0e0115c0-ec82-44ba-89bf-ef66109da5a6", "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 \"fileIdentifier\": \"\",\n \"fileName\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/finalisations", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", "finalisations" ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-0e0115c0-ec82-44ba-89bf-ef66109da5a6" }, { "id": "7e2c78fb-ae8f-46d4-b2f4-d79ff8b506df", "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 \"fileIdentifier\": \"\",\n \"fileName\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/finalisations", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", "finalisations" ] } }, "status": "Service Unavailable", "code": 503, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-7e2c78fb-ae8f-46d4-b2f4-d79ff8b506df" }, { "id": "743db923-984a-432e-8b99-befe0f0a1e70", "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 \"fileIdentifier\": \"\",\n \"fileName\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/finalisations", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", "finalisations" ] } }, "status": "Gateway Timeout", "code": 504, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-743db923-984a-432e-8b99-befe0f0a1e70" } ], "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-2188daef-e549-4148-b3c3-6b3051e0d845" } ], "id": "0c420ec6-7d3b-4c2e-b2bd-8c4c024b81ea", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-0c420ec6-7d3b-4c2e-b2bd-8c4c024b81ea" }, { "name": "{callback_id}", "item": [ { "name": "review-suggestions", "item": [ { "name": "Read review suggestions for a template-conversion", "id": "328f8690-10bb-40a5-b36d-e536e5561407", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/review-suggestions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "review-suggestions" ], "variable": [ { "id": "661752fc-31f1-49af-b30b-f8270c5e5882", "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 list of editorial suggestions produced for the\nconverted deck identified by `callback_id`. Each suggestion may\nbe applied via the corresponding PATCH endpoint.\n" }, "response": [ { "id": "a7a33dd9-bf4e-4c9f-b513-3f30104ba828", "name": "Suggestions 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/template-conversions/:callback_id/review-suggestions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "review-suggestions" ], "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 \"callback_id\": \"\",\n \"suggestions\": [\n {\n \"laborum6d\": false\n },\n {\n \"eiusmod9\": \"nisi veniam\",\n \"veniam__\": \"Excepteur laboris est tempor\",\n \"commodo_c62\": 30014497.245433435,\n \"proident_c\": -59380403.0224367\n }\n ],\n \"presentation_name\": \"\"\n },\n \"success\": \"\"\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-a7a33dd9-bf4e-4c9f-b513-3f30104ba828" }, { "id": "a19cfa36-1d12-4de8-9588-1451b25bb3e0", "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/template-conversions/:callback_id/review-suggestions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "review-suggestions" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-a19cfa36-1d12-4de8-9588-1451b25bb3e0" }, { "id": "3dec0320-4b5c-4e38-a12b-eba9791e9f5e", "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/template-conversions/:callback_id/review-suggestions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "review-suggestions" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-3dec0320-4b5c-4e38-a12b-eba9791e9f5e" }, { "id": "2b32e4a6-bb7b-4d99-9d72-e6f65f13b71d", "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/template-conversions/:callback_id/review-suggestions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "review-suggestions" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-2b32e4a6-bb7b-4d99-9d72-e6f65f13b71d" }, { "id": "e478a324-ad31-491c-8392-5dfe1c10ab9d", "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/template-conversions/:callback_id/review-suggestions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "review-suggestions" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-e478a324-ad31-491c-8392-5dfe1c10ab9d" }, { "id": "87afde36-010f-459b-b9dc-81fbcc07d880", "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/template-conversions/:callback_id/review-suggestions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "review-suggestions" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-87afde36-010f-459b-b9dc-81fbcc07d880" }, { "id": "38f7cc1d-a82c-4238-a89a-3c6a227bee01", "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/template-conversions/:callback_id/review-suggestions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "review-suggestions" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-38f7cc1d-a82c-4238-a89a-3c6a227bee01" }, { "id": "d2959ed4-65d1-4cb1-b9fe-f09a19a64172", "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/template-conversions/:callback_id/review-suggestions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "review-suggestions" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-d2959ed4-65d1-4cb1-b9fe-f09a19a64172" }, { "id": "39bbf52d-787b-4f5f-8722-61180cc032f8", "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/template-conversions/:callback_id/review-suggestions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "review-suggestions" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-39bbf52d-787b-4f5f-8722-61180cc032f8" } ], "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-328f8690-10bb-40a5-b36d-e536e5561407" }, { "name": "Update review suggestions on a template-conversion", "id": "852e1915-b65e-4fd6-a9da-55cdcf40ea9c", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "PATCH", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"suggestions\": [\n {\n \"ipsum_5d4\": \"enim Excepteur consequat\",\n \"enim00\": -93000187.4231296\n },\n {\n \"Ut_c\": \"aute sint\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/review-suggestions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "review-suggestions" ], "variable": [ { "id": "6c06cec5-7c33-4a5e-9ce2-33144c1ab0b7", "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": "Applies a subset of editorial suggestions to the converted deck\nidentified by `callback_id`. Kicks off a background pipeline that\nproduces a new derived deck; the response carries a new\n`callback_id` to poll.\n" }, "response": [ { "id": "671bba9c-b933-43a0-ba0d-ed2661501f05", "name": "Pipeline accepted; poll the returned `callback_id`.", "originalRequest": { "method": "PATCH", "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 \"suggestions\": [\n {\n \"ipsum_5d4\": \"enim Excepteur consequat\",\n \"enim00\": -93000187.4231296\n },\n {\n \"Ut_c\": \"aute sint\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/review-suggestions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "review-suggestions" ], "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 \"callback_id\": \"\",\n \"token\": \"\"\n },\n \"success\": \"\"\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-671bba9c-b933-43a0-ba0d-ed2661501f05" }, { "id": "d11f2c66-af58-4bfc-8577-4227209e4529", "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": "PATCH", "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 \"suggestions\": [\n {\n \"ipsum_5d4\": \"enim Excepteur consequat\",\n \"enim00\": -93000187.4231296\n },\n {\n \"Ut_c\": \"aute sint\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/review-suggestions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "review-suggestions" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-d11f2c66-af58-4bfc-8577-4227209e4529" }, { "id": "1f56add7-3455-469b-bdd9-48b04c126bb5", "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": "PATCH", "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 \"suggestions\": [\n {\n \"ipsum_5d4\": \"enim Excepteur consequat\",\n \"enim00\": -93000187.4231296\n },\n {\n \"Ut_c\": \"aute sint\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/review-suggestions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "review-suggestions" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-1f56add7-3455-469b-bdd9-48b04c126bb5" }, { "id": "0746b916-5db4-467f-a21e-3e76644298c9", "name": "Caller is authenticated but not allowed to perform this operation. `error.code` is `FORBIDDEN`.", "originalRequest": { "method": "PATCH", "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 \"suggestions\": [\n {\n \"ipsum_5d4\": \"enim Excepteur consequat\",\n \"enim00\": -93000187.4231296\n },\n {\n \"Ut_c\": \"aute sint\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/review-suggestions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "review-suggestions" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-0746b916-5db4-467f-a21e-3e76644298c9" }, { "id": "f0070ad1-61ce-409e-929e-b487a61d1c95", "name": "Requested endpoint or resource does not exist. `error.code` is\none of `ENDPOINT_NOT_FOUND`, `RESOURCE_NOT_FOUND`, `NOT_FOUND`.\n", "originalRequest": { "method": "PATCH", "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 \"suggestions\": [\n {\n \"ipsum_5d4\": \"enim Excepteur consequat\",\n \"enim00\": -93000187.4231296\n },\n {\n \"Ut_c\": \"aute sint\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/review-suggestions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "review-suggestions" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-f0070ad1-61ce-409e-929e-b487a61d1c95" }, { "id": "3115b02c-d94b-4b3a-8413-a5f728fa66bb", "name": "Request was well-formed but failed semantic validation.\n`error.code` is one of `INVALID_INPUT`, `UNPROCESSABLE_ENTITY`.\n", "originalRequest": { "method": "PATCH", "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 \"suggestions\": [\n {\n \"ipsum_5d4\": \"enim Excepteur consequat\",\n \"enim00\": -93000187.4231296\n },\n {\n \"Ut_c\": \"aute sint\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/review-suggestions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "review-suggestions" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-3115b02c-d94b-4b3a-8413-a5f728fa66bb" }, { "id": "362480a0-b133-4250-8887-969485173d65", "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": "PATCH", "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 \"suggestions\": [\n {\n \"ipsum_5d4\": \"enim Excepteur consequat\",\n \"enim00\": -93000187.4231296\n },\n {\n \"Ut_c\": \"aute sint\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/review-suggestions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "review-suggestions" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-362480a0-b133-4250-8887-969485173d65" }, { "id": "30c56a6e-a899-4682-994f-0cb89ac99f53", "name": "Unexpected server error. `error.code` is `INTERNAL_SERVER_ERROR`.", "originalRequest": { "method": "PATCH", "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 \"suggestions\": [\n {\n \"ipsum_5d4\": \"enim Excepteur consequat\",\n \"enim00\": -93000187.4231296\n },\n {\n \"Ut_c\": \"aute sint\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/review-suggestions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "review-suggestions" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-30c56a6e-a899-4682-994f-0cb89ac99f53" }, { "id": "fd97c40d-7b2a-46e1-aca3-84c54194cc6b", "name": "Service is temporarily unavailable (downstream dependency unhealthy). `error.code` is `SERVICE_UNAVAILABLE` or `EXTERNAL_SERVICE_ERROR`.", "originalRequest": { "method": "PATCH", "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 \"suggestions\": [\n {\n \"ipsum_5d4\": \"enim Excepteur consequat\",\n \"enim00\": -93000187.4231296\n },\n {\n \"Ut_c\": \"aute sint\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/review-suggestions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "review-suggestions" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-fd97c40d-7b2a-46e1-aca3-84c54194cc6b" }, { "id": "4d36f0aa-8018-458c-9ba1-343e1f97929e", "name": "A downstream call timed out. `error.code` is `GATEWAY_TIMEOUT`.", "originalRequest": { "method": "PATCH", "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 \"suggestions\": [\n {\n \"ipsum_5d4\": \"enim Excepteur consequat\",\n \"enim00\": -93000187.4231296\n },\n {\n \"Ut_c\": \"aute sint\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/review-suggestions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "review-suggestions" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-4d36f0aa-8018-458c-9ba1-343e1f97929e" } ], "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-852e1915-b65e-4fd6-a9da-55cdcf40ea9c" } ], "id": "6b156b2f-6e94-4d8f-b3a3-bd50098adf7f", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-6b156b2f-6e94-4d8f-b3a3-bd50098adf7f" }, { "name": "template-changes", "item": [ { "name": "Create a template change on a template-conversion", "id": "44538ec2-75ea-4d55-8611-df04fc68c285", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"templateName\": \"\",\n \"settings\": {\n \"fugiatf8\": -81372985,\n \"eiusmod_36b\": 77209791.62701619,\n \"cillumffd\": -44232291\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/template-changes", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "template-changes" ], "variable": [ { "id": "11c9eb97-46df-427c-b4c5-e7f8bb7a5c38", "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 the conversion pipeline for an already-converted deck\nagainst a new target `templateName`. Returns a new `callback_id`\nto poll.\n" }, "response": [ { "id": "f920687a-cf61-4640-925d-c5837d183785", "name": "Pipeline accepted; poll the returned `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 \"templateName\": \"\",\n \"settings\": {\n \"fugiatf8\": -81372985,\n \"eiusmod_36b\": 77209791.62701619,\n \"cillumffd\": -44232291\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/template-changes", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "template-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 \"callback_id\": \"\",\n \"token\": \"\"\n },\n \"success\": \"\"\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-f920687a-cf61-4640-925d-c5837d183785" }, { "id": "03f49e0f-5db4-4e1c-a6ea-b160e60549a0", "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 \"templateName\": \"\",\n \"settings\": {\n \"fugiatf8\": -81372985,\n \"eiusmod_36b\": 77209791.62701619,\n \"cillumffd\": -44232291\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/template-changes", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "template-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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-03f49e0f-5db4-4e1c-a6ea-b160e60549a0" }, { "id": "62343063-fbb1-46e0-b1d2-4d6431de7272", "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 \"templateName\": \"\",\n \"settings\": {\n \"fugiatf8\": -81372985,\n \"eiusmod_36b\": 77209791.62701619,\n \"cillumffd\": -44232291\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/template-changes", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "template-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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-62343063-fbb1-46e0-b1d2-4d6431de7272" }, { "id": "fc368222-e505-4106-aceb-51c6e09bb864", "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 \"templateName\": \"\",\n \"settings\": {\n \"fugiatf8\": -81372985,\n \"eiusmod_36b\": 77209791.62701619,\n \"cillumffd\": -44232291\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/template-changes", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "template-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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-fc368222-e505-4106-aceb-51c6e09bb864" }, { "id": "852774fe-a126-4d2a-a10c-27b052f41cf4", "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 \"templateName\": \"\",\n \"settings\": {\n \"fugiatf8\": -81372985,\n \"eiusmod_36b\": 77209791.62701619,\n \"cillumffd\": -44232291\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/template-changes", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "template-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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-852774fe-a126-4d2a-a10c-27b052f41cf4" }, { "id": "a49d03a1-715b-4f40-a3be-e5e032e0cf00", "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 \"templateName\": \"\",\n \"settings\": {\n \"fugiatf8\": -81372985,\n \"eiusmod_36b\": 77209791.62701619,\n \"cillumffd\": -44232291\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/template-changes", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "template-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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-a49d03a1-715b-4f40-a3be-e5e032e0cf00" }, { "id": "a8ac5b5f-e74f-4f8f-8f96-4b6f6d85663b", "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 \"templateName\": \"\",\n \"settings\": {\n \"fugiatf8\": -81372985,\n \"eiusmod_36b\": 77209791.62701619,\n \"cillumffd\": -44232291\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/template-changes", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "template-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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-a8ac5b5f-e74f-4f8f-8f96-4b6f6d85663b" }, { "id": "6b61582a-cc7a-4daa-88b5-fa1d1d3ddfa7", "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 \"templateName\": \"\",\n \"settings\": {\n \"fugiatf8\": -81372985,\n \"eiusmod_36b\": 77209791.62701619,\n \"cillumffd\": -44232291\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/template-changes", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "template-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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-6b61582a-cc7a-4daa-88b5-fa1d1d3ddfa7" }, { "id": "62aa1c63-a86a-46d3-80c9-31db1543afdd", "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 \"templateName\": \"\",\n \"settings\": {\n \"fugiatf8\": -81372985,\n \"eiusmod_36b\": 77209791.62701619,\n \"cillumffd\": -44232291\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/template-changes", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "template-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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-62aa1c63-a86a-46d3-80c9-31db1543afdd" }, { "id": "184cd629-eedb-419b-9a01-afb302281bff", "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 \"templateName\": \"\",\n \"settings\": {\n \"fugiatf8\": -81372985,\n \"eiusmod_36b\": 77209791.62701619,\n \"cillumffd\": -44232291\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/template-changes", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "template-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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-184cd629-eedb-419b-9a01-afb302281bff" } ], "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-44538ec2-75ea-4d55-8611-df04fc68c285" } ], "id": "4cd08782-a369-46af-a878-864bf128bdde", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-4cd08782-a369-46af-a878-864bf128bdde" }, { "name": "download", "item": [ { "name": "Read the download URL for a template-conversion", "id": "8b016fcb-8036-408b-95d0-52112bf7932c", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/download", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "download" ], "variable": [ { "id": "b84f16b9-63e5-4c80-b9c2-952045839292", "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 a signed download URL for the converted deck identified\nby `callback_id`. Counted against the `TC_DOWNLOAD` usage limit.\n" }, "response": [ { "id": "f62ac245-78ce-4296-8cde-657ae7b43fc0", "name": "Signed download URL 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/template-conversions/:callback_id/download", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "download" ], "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 \"file_name\": \"\",\n \"message\": \"\"\n },\n \"success\": \"\"\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-f62ac245-78ce-4296-8cde-657ae7b43fc0" }, { "id": "ff6c1657-b88b-42ed-84c5-186969d93173", "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/template-conversions/:callback_id/download", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "download" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-ff6c1657-b88b-42ed-84c5-186969d93173" }, { "id": "8fc8656a-414f-4e3d-9466-75a6f78e5b89", "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/template-conversions/:callback_id/download", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "download" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-8fc8656a-414f-4e3d-9466-75a6f78e5b89" }, { "id": "9e47f49b-e403-4006-949b-503f860c6097", "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/template-conversions/:callback_id/download", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "download" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-9e47f49b-e403-4006-949b-503f860c6097" }, { "id": "3be8a940-0c70-4deb-8995-b56cbf0f8c15", "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/template-conversions/:callback_id/download", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "download" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-3be8a940-0c70-4deb-8995-b56cbf0f8c15" }, { "id": "37be4e38-f46b-4449-970e-1f339e672f9b", "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/template-conversions/:callback_id/download", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "download" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-37be4e38-f46b-4449-970e-1f339e672f9b" }, { "id": "9a74e36d-6a4b-4017-9632-544032129c7b", "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/template-conversions/:callback_id/download", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "download" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-9a74e36d-6a4b-4017-9632-544032129c7b" }, { "id": "aabd92e6-451c-4ad6-a7e0-d58bdddf0c1c", "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/template-conversions/:callback_id/download", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "download" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-aabd92e6-451c-4ad6-a7e0-d58bdddf0c1c" }, { "id": "28dc03b7-66ab-4692-9272-ddce9102bef0", "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/template-conversions/:callback_id/download", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "download" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-28dc03b7-66ab-4692-9272-ddce9102bef0" } ], "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-8b016fcb-8036-408b-95d0-52112bf7932c" } ], "id": "a9c8829d-e684-4756-b3ea-d7a490887894", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-a9c8829d-e684-4756-b3ea-d7a490887894" }, { "name": "comply-metrics", "item": [ { "name": "Create a Comply metrics record on a template-conversion", "id": "9354a6c8-735e-4306-8cac-1525889cbd77", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"veniam_ac1\": -31240036.07096407\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/comply-metrics", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "comply-metrics" ], "variable": [ { "id": "632fb54b-3d18-48ae-9755-756920982bc1", "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": "Records compliance metrics for a converted deck. The body is\nforwarded to the ComplyMetrics service. Typically invoked via a\n`callback_id + token` URL handed back to the caller after a\nconversion.\n" }, "response": [ { "id": "d724b38b-0d8b-420d-85ca-15a61734b8a2", "name": "Metrics recorded.", "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 \"veniam_ac1\": -31240036.07096407\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/comply-metrics", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "comply-metrics" ], "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 \"message\": \"\",\n \"occaecat_f_\": -75124440\n },\n \"success\": \"\"\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-d724b38b-0d8b-420d-85ca-15a61734b8a2" }, { "id": "961d7211-fdf3-4174-9133-a9eab6fb12e8", "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 \"veniam_ac1\": -31240036.07096407\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/comply-metrics", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "comply-metrics" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-961d7211-fdf3-4174-9133-a9eab6fb12e8" }, { "id": "85498320-16d5-420f-b328-75baadd2fa33", "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 \"veniam_ac1\": -31240036.07096407\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/comply-metrics", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "comply-metrics" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-85498320-16d5-420f-b328-75baadd2fa33" }, { "id": "af342351-bf07-4521-9102-2ff34d841ff8", "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 \"veniam_ac1\": -31240036.07096407\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/comply-metrics", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "comply-metrics" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-af342351-bf07-4521-9102-2ff34d841ff8" }, { "id": "ea9a6da8-902c-441b-b352-bd6c789fbc77", "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 \"veniam_ac1\": -31240036.07096407\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/comply-metrics", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "comply-metrics" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-ea9a6da8-902c-441b-b352-bd6c789fbc77" }, { "id": "9a9d8ee2-d613-41a5-b52d-c4f34d62984c", "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 \"veniam_ac1\": -31240036.07096407\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/comply-metrics", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "comply-metrics" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-9a9d8ee2-d613-41a5-b52d-c4f34d62984c" }, { "id": "317a5e8b-94f7-4d15-9810-6266b06d1d89", "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 \"veniam_ac1\": -31240036.07096407\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/comply-metrics", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "comply-metrics" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-317a5e8b-94f7-4d15-9810-6266b06d1d89" }, { "id": "3ef44dc8-5bab-488c-9176-a18897b7d32b", "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 \"veniam_ac1\": -31240036.07096407\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/comply-metrics", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "comply-metrics" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-3ef44dc8-5bab-488c-9176-a18897b7d32b" }, { "id": "d0ffb92a-f13c-4c54-981a-dd6dbaa17cca", "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 \"veniam_ac1\": -31240036.07096407\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/comply-metrics", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "comply-metrics" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-d0ffb92a-f13c-4c54-981a-dd6dbaa17cca" } ], "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-9354a6c8-735e-4306-8cac-1525889cbd77" } ], "id": "45ac7299-4713-4eec-afc9-b3aa25eb1186", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-45ac7299-4713-4eec-afc9-b3aa25eb1186" }, { "name": "reactions", "item": [ { "name": "Upsert a reaction on a template-conversion", "id": "2dbc135c-9283-47ef-b7c2-ae18ffb47d75", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "PUT", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"callback_id\": \"\",\n \"type\": \"liked\",\n \"value\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/reactions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "reactions" ], "variable": [ { "id": "62e9c3bf-687e-4be8-8dc9-cca0a6558719", "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": "Records a like or qualitative feedback against a converted deck.\nWhen `type` is `liked` the `value` must be a boolean; when\n`feedback` the `value` must be a string. Uses PUT (legacy quirk\npreserved from the original endpoint) rather than POST.\n" }, "response": [ { "id": "7e0e1f34-1702-4042-aeeb-ba9d6a7d9fc0", "name": "Reaction/feedback stored.", "originalRequest": { "method": "PUT", "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 \"type\": \"liked\",\n \"value\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/reactions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":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 \"callback_id\": \"\",\n \"type\": \"liked\",\n \"message\": \"\",\n \"warnings\": [\n \"\",\n \"\"\n ]\n },\n \"success\": \"\"\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-7e0e1f34-1702-4042-aeeb-ba9d6a7d9fc0" }, { "id": "dc8363ac-b857-4516-a28a-5bd1247839fb", "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": "PUT", "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 \"type\": \"liked\",\n \"value\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/reactions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-dc8363ac-b857-4516-a28a-5bd1247839fb" }, { "id": "671b26f8-1a3d-481d-b467-3948f6181d73", "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": "PUT", "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 \"type\": \"liked\",\n \"value\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/reactions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-671b26f8-1a3d-481d-b467-3948f6181d73" }, { "id": "7760ee0f-2f67-4660-9d0a-330ddd9be56d", "name": "Caller is authenticated but not allowed to perform this operation. `error.code` is `FORBIDDEN`.", "originalRequest": { "method": "PUT", "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 \"type\": \"liked\",\n \"value\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/reactions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-7760ee0f-2f67-4660-9d0a-330ddd9be56d" }, { "id": "1c98cef3-f1d5-4750-aef9-5a0e006f4bf8", "name": "Requested endpoint or resource does not exist. `error.code` is\none of `ENDPOINT_NOT_FOUND`, `RESOURCE_NOT_FOUND`, `NOT_FOUND`.\n", "originalRequest": { "method": "PUT", "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 \"type\": \"liked\",\n \"value\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/reactions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-1c98cef3-f1d5-4750-aef9-5a0e006f4bf8" }, { "id": "44c58616-689e-46cd-a974-33faf574bc44", "name": "Request was well-formed but failed semantic validation.\n`error.code` is one of `INVALID_INPUT`, `UNPROCESSABLE_ENTITY`.\n", "originalRequest": { "method": "PUT", "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 \"type\": \"liked\",\n \"value\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/reactions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-44c58616-689e-46cd-a974-33faf574bc44" }, { "id": "0a9e3b25-c13c-42fc-bcef-e8178ff4ec9b", "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": "PUT", "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 \"type\": \"liked\",\n \"value\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/reactions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-0a9e3b25-c13c-42fc-bcef-e8178ff4ec9b" }, { "id": "8e5bb11f-6ae7-4d06-9a65-78592da6faa5", "name": "Unexpected server error. `error.code` is `INTERNAL_SERVER_ERROR`.", "originalRequest": { "method": "PUT", "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 \"type\": \"liked\",\n \"value\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/reactions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-8e5bb11f-6ae7-4d06-9a65-78592da6faa5" }, { "id": "f07eeaf4-6f8b-4c04-a79b-0cde2df0af8a", "name": "Service is temporarily unavailable (downstream dependency unhealthy). `error.code` is `SERVICE_UNAVAILABLE` or `EXTERNAL_SERVICE_ERROR`.", "originalRequest": { "method": "PUT", "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 \"type\": \"liked\",\n \"value\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/reactions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-f07eeaf4-6f8b-4c04-a79b-0cde2df0af8a" }, { "id": "1fb6eec1-3e02-4c72-864b-35883a5d7a9b", "name": "A downstream call timed out. `error.code` is `GATEWAY_TIMEOUT`.", "originalRequest": { "method": "PUT", "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 \"type\": \"liked\",\n \"value\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/reactions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-1fb6eec1-3e02-4c72-864b-35883a5d7a9b" } ], "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-2dbc135c-9283-47ef-b7c2-ae18ffb47d75" } ], "id": "226ba28a-b215-42d4-8825-27a5389e6d9e", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-226ba28a-b215-42d4-8825-27a5389e6d9e" }, { "name": "work-area-options", "item": [ { "name": "Read work-area options for a template-conversion slide", "id": "8f98cef6-3d18-4fc6-a75e-ec53027ccb7e", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/work-area-options?slide_index=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "work-area-options" ], "query": [ { "description": "(Required) Zero-based slide index.", "key": "slide_index", "value": "" } ], "variable": [ { "id": "b080d8de-74d8-4084-b369-1c0052c0f753", "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 available work-area adjustment options for the given\nslide of the given conversion job.\n" }, "response": [ { "id": "5d2f5f34-65fb-47e8-899f-0eb647c94fb9", "name": "Work-area options 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/template-conversions/:callback_id/work-area-options?slide_index=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "work-area-options" ], "query": [ { "description": "(Required) Zero-based slide index.", "key": "slide_index", "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 \"callback_id\": \"\",\n \"work_area_adjustments\": [\n {\n \"velit_4\": false,\n \"ullamco_3\": false,\n \"sintb\": -86084008\n },\n {\n \"consequat63e\": -43204441\n }\n ]\n },\n \"success\": \"\"\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-5d2f5f34-65fb-47e8-899f-0eb647c94fb9" }, { "id": "1e9b8e4b-5e7b-4d46-a9c6-06beaa9ecba4", "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/template-conversions/:callback_id/work-area-options?slide_index=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "work-area-options" ], "query": [ { "description": "(Required) Zero-based slide index.", "key": "slide_index", "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-1e9b8e4b-5e7b-4d46-a9c6-06beaa9ecba4" }, { "id": "79cf57f2-333d-493b-96fe-c801cec443e7", "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/template-conversions/:callback_id/work-area-options?slide_index=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "work-area-options" ], "query": [ { "description": "(Required) Zero-based slide index.", "key": "slide_index", "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-79cf57f2-333d-493b-96fe-c801cec443e7" }, { "id": "97d6ee5a-167c-40a4-9d77-cc569047cecc", "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/template-conversions/:callback_id/work-area-options?slide_index=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "work-area-options" ], "query": [ { "description": "(Required) Zero-based slide index.", "key": "slide_index", "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-97d6ee5a-167c-40a4-9d77-cc569047cecc" }, { "id": "68010ce2-4e26-48a8-bced-4a6d708db6a5", "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/template-conversions/:callback_id/work-area-options?slide_index=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "work-area-options" ], "query": [ { "description": "(Required) Zero-based slide index.", "key": "slide_index", "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-68010ce2-4e26-48a8-bced-4a6d708db6a5" }, { "id": "3c7ac393-f771-480f-907e-3a8c895a7278", "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/template-conversions/:callback_id/work-area-options?slide_index=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "work-area-options" ], "query": [ { "description": "(Required) Zero-based slide index.", "key": "slide_index", "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-3c7ac393-f771-480f-907e-3a8c895a7278" }, { "id": "2d528873-b7b6-4367-b55e-88a93b6b60d0", "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/template-conversions/:callback_id/work-area-options?slide_index=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "work-area-options" ], "query": [ { "description": "(Required) Zero-based slide index.", "key": "slide_index", "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-2d528873-b7b6-4367-b55e-88a93b6b60d0" }, { "id": "e7b068c1-ab57-4cfe-8403-2a9da38b34ff", "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/template-conversions/:callback_id/work-area-options?slide_index=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "work-area-options" ], "query": [ { "description": "(Required) Zero-based slide index.", "key": "slide_index", "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-e7b068c1-ab57-4cfe-8403-2a9da38b34ff" }, { "id": "7db1f634-d0be-4e22-b4a7-4f2446f9020d", "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/template-conversions/:callback_id/work-area-options?slide_index=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "work-area-options" ], "query": [ { "description": "(Required) Zero-based slide index.", "key": "slide_index", "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-7db1f634-d0be-4e22-b4a7-4f2446f9020d" } ], "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-8f98cef6-3d18-4fc6-a75e-ec53027ccb7e" } ], "id": "391d00b8-789f-4c8d-9cbf-6ac23a25a08f", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-391d00b8-789f-4c8d-9cbf-6ac23a25a08f" }, { "name": "work-area-adjustments", "item": [ { "name": "Create a work-area adjustment on a template-conversion", "id": "51837e7f-4eae-4260-a8ee-355704a9e0d5", "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_index\": \"\",\n \"selection\": {\n \"esse9\": 10255435.854843229,\n \"dolor_2\": true\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/work-area-adjustments", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "work-area-adjustments" ], "variable": [ { "id": "9a905158-3a50-4cfc-8c88-88836ee55522", "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": "Applies a selected work-area adjustment to the given slide of a\nconversion job.\n" }, "response": [ { "id": "f5c90b3f-c84f-4e68-b926-4c6777c15eeb", "name": "Adjustment 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_index\": \"\",\n \"selection\": {\n \"esse9\": 10255435.854843229,\n \"dolor_2\": true\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/work-area-adjustments", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "work-area-adjustments" ], "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 \"message\": \"\",\n \"occaecat_f_\": -75124440\n },\n \"success\": \"\"\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-f5c90b3f-c84f-4e68-b926-4c6777c15eeb" }, { "id": "4e1471fa-fd59-46b1-9554-7543aabf7a80", "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_index\": \"\",\n \"selection\": {\n \"esse9\": 10255435.854843229,\n \"dolor_2\": true\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/work-area-adjustments", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "work-area-adjustments" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-4e1471fa-fd59-46b1-9554-7543aabf7a80" }, { "id": "fac890d0-1ce3-4dd2-a626-500ae43becbd", "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_index\": \"\",\n \"selection\": {\n \"esse9\": 10255435.854843229,\n \"dolor_2\": true\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/work-area-adjustments", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "work-area-adjustments" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-fac890d0-1ce3-4dd2-a626-500ae43becbd" }, { "id": "c0f553a0-ef65-4550-96bb-d8e94deaed49", "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_index\": \"\",\n \"selection\": {\n \"esse9\": 10255435.854843229,\n \"dolor_2\": true\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/work-area-adjustments", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "work-area-adjustments" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-c0f553a0-ef65-4550-96bb-d8e94deaed49" }, { "id": "18c7c689-ba79-4db3-a49d-25cafb93d626", "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_index\": \"\",\n \"selection\": {\n \"esse9\": 10255435.854843229,\n \"dolor_2\": true\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/work-area-adjustments", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "work-area-adjustments" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-18c7c689-ba79-4db3-a49d-25cafb93d626" }, { "id": "8df4fa73-122b-40b3-89ca-66decedb232f", "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_index\": \"\",\n \"selection\": {\n \"esse9\": 10255435.854843229,\n \"dolor_2\": true\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/work-area-adjustments", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "work-area-adjustments" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-8df4fa73-122b-40b3-89ca-66decedb232f" }, { "id": "2e8c4867-3e84-41dc-8037-9d2ba31111e6", "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_index\": \"\",\n \"selection\": {\n \"esse9\": 10255435.854843229,\n \"dolor_2\": true\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/work-area-adjustments", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "work-area-adjustments" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-2e8c4867-3e84-41dc-8037-9d2ba31111e6" }, { "id": "284066f0-2589-4a9f-8ee5-aa072186664d", "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_index\": \"\",\n \"selection\": {\n \"esse9\": 10255435.854843229,\n \"dolor_2\": true\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/work-area-adjustments", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "work-area-adjustments" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-284066f0-2589-4a9f-8ee5-aa072186664d" }, { "id": "11777a99-a731-4350-9d81-12ca28292236", "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_index\": \"\",\n \"selection\": {\n \"esse9\": 10255435.854843229,\n \"dolor_2\": true\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/work-area-adjustments", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "work-area-adjustments" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-11777a99-a731-4350-9d81-12ca28292236" }, { "id": "2b4b995a-ec5f-48ec-a434-2821d251101f", "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_index\": \"\",\n \"selection\": {\n \"esse9\": 10255435.854843229,\n \"dolor_2\": true\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/work-area-adjustments", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "work-area-adjustments" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-2b4b995a-ec5f-48ec-a434-2821d251101f" } ], "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-51837e7f-4eae-4260-a8ee-355704a9e0d5" } ], "id": "8e0623fc-01a5-48f4-98f5-1a970461d2ba", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-8e0623fc-01a5-48f4-98f5-1a970461d2ba" }, { "name": "layouts", "item": [ { "name": "Read layout options for a template-conversion", "id": "8dab848d-494d-43ef-8f9d-16ca136f0b69", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/layouts?slide_index=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "layouts" ], "query": [ { "description": "Zero-based slide index. If omitted, returns layouts for every slide.", "key": "slide_index", "value": "" } ], "variable": [ { "id": "ef120bfe-a531-4f99-aa65-24e93b349fcf", "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 layout options available for the target template\nand, optionally, the input deck's layouts for the given slide.\n" }, "response": [ { "id": "982994bc-92c5-4897-9783-45f4fbaa78e7", "name": "Layout options 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/template-conversions/:callback_id/layouts?slide_index=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "layouts" ], "query": [ { "description": "Zero-based slide index. If omitted, returns layouts for every slide.", "key": "slide_index", "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 \"callback_id\": \"\",\n \"status\": \"success\",\n \"layouts\": {\n \"target_template_layouts\": [\n {\n \"dolor_f\": -13597922\n },\n {\n \"Lorem573\": \"officia ex velit\"\n }\n ],\n \"input_deck_layouts\": [\n {\n \"mollit_8e\": -43269054.11518798,\n \"quis_00\": 32906604\n },\n {\n \"consequat636\": -98063735,\n \"utb6\": \"proident aute\",\n \"eiusmodb\": false,\n \"irure2\": \"laborum id exercitation magna\"\n }\n ],\n \"nulla6f_\": false,\n \"sit_bdc\": -82340645,\n \"laborum257\": \"officia eu in ad esse\"\n }\n },\n \"success\": \"\"\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-982994bc-92c5-4897-9783-45f4fbaa78e7" }, { "id": "9eaf1317-4d4d-4de6-9bb7-e1b7b1bf91dd", "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/template-conversions/:callback_id/layouts?slide_index=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "layouts" ], "query": [ { "description": "Zero-based slide index. If omitted, returns layouts for every slide.", "key": "slide_index", "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-9eaf1317-4d4d-4de6-9bb7-e1b7b1bf91dd" }, { "id": "49cdcc49-17e4-4ba6-a086-8aa83fe4a154", "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/template-conversions/:callback_id/layouts?slide_index=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "layouts" ], "query": [ { "description": "Zero-based slide index. If omitted, returns layouts for every slide.", "key": "slide_index", "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-49cdcc49-17e4-4ba6-a086-8aa83fe4a154" }, { "id": "cf5c414a-0e08-435b-a9d2-78a717e52d99", "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/template-conversions/:callback_id/layouts?slide_index=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "layouts" ], "query": [ { "description": "Zero-based slide index. If omitted, returns layouts for every slide.", "key": "slide_index", "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-cf5c414a-0e08-435b-a9d2-78a717e52d99" }, { "id": "bd5ab49d-8b55-4653-9c65-d5632b43e7f8", "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/template-conversions/:callback_id/layouts?slide_index=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "layouts" ], "query": [ { "description": "Zero-based slide index. If omitted, returns layouts for every slide.", "key": "slide_index", "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-bd5ab49d-8b55-4653-9c65-d5632b43e7f8" }, { "id": "dccfc794-1881-4ba4-8129-4738662ab6ce", "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/template-conversions/:callback_id/layouts?slide_index=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "layouts" ], "query": [ { "description": "Zero-based slide index. If omitted, returns layouts for every slide.", "key": "slide_index", "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-dccfc794-1881-4ba4-8129-4738662ab6ce" }, { "id": "4fec1da9-c5d5-4909-bfdc-2f43e0cfdfbe", "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/template-conversions/:callback_id/layouts?slide_index=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "layouts" ], "query": [ { "description": "Zero-based slide index. If omitted, returns layouts for every slide.", "key": "slide_index", "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-4fec1da9-c5d5-4909-bfdc-2f43e0cfdfbe" }, { "id": "73a3bd15-76e8-4a88-9b92-ca23b1b2b9b5", "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/template-conversions/:callback_id/layouts?slide_index=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "layouts" ], "query": [ { "description": "Zero-based slide index. If omitted, returns layouts for every slide.", "key": "slide_index", "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-73a3bd15-76e8-4a88-9b92-ca23b1b2b9b5" }, { "id": "07e8c95b-e0ee-4a54-8cab-560a3465c781", "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/template-conversions/:callback_id/layouts?slide_index=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "layouts" ], "query": [ { "description": "Zero-based slide index. If omitted, returns layouts for every slide.", "key": "slide_index", "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-07e8c95b-e0ee-4a54-8cab-560a3465c781" } ], "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-8dab848d-494d-43ef-8f9d-16ca136f0b69" } ], "id": "ceba14bf-4ca0-42a2-aa63-959bb5b4a16c", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-ceba14bf-4ca0-42a2-aa63-959bb5b4a16c" }, { "name": "layout-updates", "item": [ { "name": "Create a layout update on a template-conversion", "id": "68c2eea8-5f65-4a21-8f1c-8f28106db350", "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_index\": \"\",\n \"layout_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/layout-updates", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "layout-updates" ], "variable": [ { "id": "efb44c5b-47c9-4268-a257-f7b8419d5178", "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": "Updates the layout of a slide and re-renders the affected portion\nof the converted deck. Returns a new `callback_id` to poll.\n" }, "response": [ { "id": "ba276092-2525-4e3b-99d3-e6a3b02a2aed", "name": "Pipeline accepted; poll the returned `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 \"slide_index\": \"\",\n \"layout_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/layout-updates", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "layout-updates" ], "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 \"callback_id\": \"\",\n \"token\": \"\"\n },\n \"success\": \"\"\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-ba276092-2525-4e3b-99d3-e6a3b02a2aed" }, { "id": "bb1751e9-57a7-4918-9c1d-9e69c3053365", "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_index\": \"\",\n \"layout_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/layout-updates", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "layout-updates" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-bb1751e9-57a7-4918-9c1d-9e69c3053365" }, { "id": "016a8d21-1386-4e7f-9173-32a6b2a5b258", "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_index\": \"\",\n \"layout_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/layout-updates", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "layout-updates" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-016a8d21-1386-4e7f-9173-32a6b2a5b258" }, { "id": "35561a24-59b8-43ad-8ed9-9e31e19ed6b6", "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_index\": \"\",\n \"layout_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/layout-updates", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "layout-updates" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-35561a24-59b8-43ad-8ed9-9e31e19ed6b6" }, { "id": "96191764-50ec-4c5c-bbc5-61fda0a62c37", "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_index\": \"\",\n \"layout_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/layout-updates", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "layout-updates" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-96191764-50ec-4c5c-bbc5-61fda0a62c37" }, { "id": "988ae8bc-13e4-41bf-afa5-e5fd1e31f567", "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_index\": \"\",\n \"layout_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/layout-updates", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "layout-updates" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-988ae8bc-13e4-41bf-afa5-e5fd1e31f567" }, { "id": "85abaa98-e410-4935-86e1-fc5a0d81e3fa", "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_index\": \"\",\n \"layout_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/layout-updates", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "layout-updates" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-85abaa98-e410-4935-86e1-fc5a0d81e3fa" }, { "id": "7500134b-0941-4249-bfaa-ea053d76e71f", "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_index\": \"\",\n \"layout_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/layout-updates", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "layout-updates" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-7500134b-0941-4249-bfaa-ea053d76e71f" }, { "id": "5950c8a0-0218-447d-8a42-03ad37256a45", "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_index\": \"\",\n \"layout_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/layout-updates", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "layout-updates" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-5950c8a0-0218-447d-8a42-03ad37256a45" }, { "id": "b300c26c-a108-4fea-8954-4c201d5dff6b", "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_index\": \"\",\n \"layout_id\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/layout-updates", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "layout-updates" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-b300c26c-a108-4fea-8954-4c201d5dff6b" } ], "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-68c2eea8-5f65-4a21-8f1c-8f28106db350" } ], "id": "a7d1c0ed-c650-4a04-8b7e-bdb837540b68", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-a7d1c0ed-c650-4a04-8b7e-bdb837540b68" }, { "name": "format-modifications", "item": [ { "name": "settings", "item": [ { "name": "Read available format-modification settings for a template-conversion", "id": "0226beed-005f-4482-bba1-6f8e9c7072b6", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/format-modifications/settings", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "format-modifications", "settings" ], "variable": [ { "id": "29c5b2df-2655-4102-9a6c-ebb9a41be1f7", "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 available formatting controls (font sizes, weight,\nalignment) that may be applied to title/body text in a converted\ndeck.\n" }, "response": [ { "id": "7cad3cee-3e38-401f-8d8b-1036ef86a153", "name": "Settings 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/template-conversions/:callback_id/format-modifications/settings", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "format-modifications", "settings" ], "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 \"callback_id\": \"\",\n \"modify_format_settings\": [\n {\n \"exercitationebf\": \"nisi laborum velit do\",\n \"esseef\": 28055193.826878086\n },\n {\n \"deserunt_f\": false,\n \"minima\": false\n }\n ]\n },\n \"success\": \"\"\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-7cad3cee-3e38-401f-8d8b-1036ef86a153" }, { "id": "440509d1-581b-4a36-8923-76eae630d10b", "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/template-conversions/:callback_id/format-modifications/settings", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "format-modifications", "settings" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-440509d1-581b-4a36-8923-76eae630d10b" }, { "id": "dc392751-8f13-4827-ba15-210e8b29d780", "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/template-conversions/:callback_id/format-modifications/settings", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "format-modifications", "settings" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-dc392751-8f13-4827-ba15-210e8b29d780" }, { "id": "e26cf8ce-d3cc-4462-beb6-736b071ee69d", "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/template-conversions/:callback_id/format-modifications/settings", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "format-modifications", "settings" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-e26cf8ce-d3cc-4462-beb6-736b071ee69d" }, { "id": "a253d052-5ff8-43b8-9a0b-b051f1c398dd", "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/template-conversions/:callback_id/format-modifications/settings", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "format-modifications", "settings" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-a253d052-5ff8-43b8-9a0b-b051f1c398dd" }, { "id": "b5003b38-9984-4281-951b-8ceca1b2aa81", "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/template-conversions/:callback_id/format-modifications/settings", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "format-modifications", "settings" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-b5003b38-9984-4281-951b-8ceca1b2aa81" }, { "id": "011fc7ce-eb85-4c8f-a018-d86680271a81", "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/template-conversions/:callback_id/format-modifications/settings", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "format-modifications", "settings" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-011fc7ce-eb85-4c8f-a018-d86680271a81" }, { "id": "dc3a7296-3596-4f51-9886-9570b693dbc9", "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/template-conversions/:callback_id/format-modifications/settings", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "format-modifications", "settings" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-dc3a7296-3596-4f51-9886-9570b693dbc9" }, { "id": "a43cd79b-5275-4fd4-ab45-37ce3e067e9b", "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/template-conversions/:callback_id/format-modifications/settings", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "format-modifications", "settings" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-a43cd79b-5275-4fd4-ab45-37ce3e067e9b" } ], "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-0226beed-005f-4482-bba1-6f8e9c7072b6" } ], "id": "547ccf17-b087-4908-a930-6bfe9e9425e1", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-547ccf17-b087-4908-a930-6bfe9e9425e1" }, { "name": "Create a format modification on a template-conversion", "id": "c346be20-b56d-4a7d-a7c4-a73754125173", "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 \"modify_format_config\": [\n {\n \"title\": {\n \"anim_01\": 91681615.36303344\n },\n \"body\": {\n \"in4b\": false\n },\n \"voluptate_8c\": true,\n \"velit4f\": -92354730\n },\n {\n \"title\": {\n \"amet_8e\": -85311261.87062043,\n \"nostrud_2d2\": 92888465.19737044\n },\n \"body\": {\n \"Excepteur_01\": -83450025,\n \"ipsum7cc\": -90755389,\n \"consectetur491\": \"Excepteur\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/format-modifications", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "format-modifications" ], "variable": [ { "id": "89a49efb-de80-4f93-a234-235a603eec7e", "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": "Applies a batch of format modifications (title-formatting,\nbody-formatting) to a converted deck and re-renders the affected\nslides. Returns a new `callback_id` to poll.\n" }, "response": [ { "id": "6d451105-6034-4be8-ab74-6438ecd1c01a", "name": "Pipeline accepted; poll the returned `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 \"modify_format_config\": [\n {\n \"title\": {\n \"anim_01\": 91681615.36303344\n },\n \"body\": {\n \"in4b\": false\n },\n \"voluptate_8c\": true,\n \"velit4f\": -92354730\n },\n {\n \"title\": {\n \"amet_8e\": -85311261.87062043,\n \"nostrud_2d2\": 92888465.19737044\n },\n \"body\": {\n \"Excepteur_01\": -83450025,\n \"ipsum7cc\": -90755389,\n \"consectetur491\": \"Excepteur\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/format-modifications", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "format-modifications" ], "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 \"callback_id\": \"\",\n \"token\": \"\"\n },\n \"success\": \"\"\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-6d451105-6034-4be8-ab74-6438ecd1c01a" }, { "id": "4f6cf207-453f-4740-903a-f8358b019456", "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 \"modify_format_config\": [\n {\n \"title\": {\n \"anim_01\": 91681615.36303344\n },\n \"body\": {\n \"in4b\": false\n },\n \"voluptate_8c\": true,\n \"velit4f\": -92354730\n },\n {\n \"title\": {\n \"amet_8e\": -85311261.87062043,\n \"nostrud_2d2\": 92888465.19737044\n },\n \"body\": {\n \"Excepteur_01\": -83450025,\n \"ipsum7cc\": -90755389,\n \"consectetur491\": \"Excepteur\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/format-modifications", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "format-modifications" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-4f6cf207-453f-4740-903a-f8358b019456" }, { "id": "8d2f9d81-a916-4990-bb26-542368cf5335", "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 \"modify_format_config\": [\n {\n \"title\": {\n \"anim_01\": 91681615.36303344\n },\n \"body\": {\n \"in4b\": false\n },\n \"voluptate_8c\": true,\n \"velit4f\": -92354730\n },\n {\n \"title\": {\n \"amet_8e\": -85311261.87062043,\n \"nostrud_2d2\": 92888465.19737044\n },\n \"body\": {\n \"Excepteur_01\": -83450025,\n \"ipsum7cc\": -90755389,\n \"consectetur491\": \"Excepteur\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/format-modifications", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "format-modifications" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-8d2f9d81-a916-4990-bb26-542368cf5335" }, { "id": "600233bf-bc44-4adc-9c54-5ec0a5d16a7d", "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 \"modify_format_config\": [\n {\n \"title\": {\n \"anim_01\": 91681615.36303344\n },\n \"body\": {\n \"in4b\": false\n },\n \"voluptate_8c\": true,\n \"velit4f\": -92354730\n },\n {\n \"title\": {\n \"amet_8e\": -85311261.87062043,\n \"nostrud_2d2\": 92888465.19737044\n },\n \"body\": {\n \"Excepteur_01\": -83450025,\n \"ipsum7cc\": -90755389,\n \"consectetur491\": \"Excepteur\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/format-modifications", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "format-modifications" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-600233bf-bc44-4adc-9c54-5ec0a5d16a7d" }, { "id": "60a84cc8-6cde-4e90-86ce-067ed599011e", "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 \"modify_format_config\": [\n {\n \"title\": {\n \"anim_01\": 91681615.36303344\n },\n \"body\": {\n \"in4b\": false\n },\n \"voluptate_8c\": true,\n \"velit4f\": -92354730\n },\n {\n \"title\": {\n \"amet_8e\": -85311261.87062043,\n \"nostrud_2d2\": 92888465.19737044\n },\n \"body\": {\n \"Excepteur_01\": -83450025,\n \"ipsum7cc\": -90755389,\n \"consectetur491\": \"Excepteur\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/format-modifications", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "format-modifications" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-60a84cc8-6cde-4e90-86ce-067ed599011e" }, { "id": "2580c23f-e045-40a6-af4f-298a7f53a9ae", "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 \"modify_format_config\": [\n {\n \"title\": {\n \"anim_01\": 91681615.36303344\n },\n \"body\": {\n \"in4b\": false\n },\n \"voluptate_8c\": true,\n \"velit4f\": -92354730\n },\n {\n \"title\": {\n \"amet_8e\": -85311261.87062043,\n \"nostrud_2d2\": 92888465.19737044\n },\n \"body\": {\n \"Excepteur_01\": -83450025,\n \"ipsum7cc\": -90755389,\n \"consectetur491\": \"Excepteur\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/format-modifications", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "format-modifications" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-2580c23f-e045-40a6-af4f-298a7f53a9ae" }, { "id": "ed673928-b207-4970-8725-66058b2ccad3", "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 \"modify_format_config\": [\n {\n \"title\": {\n \"anim_01\": 91681615.36303344\n },\n \"body\": {\n \"in4b\": false\n },\n \"voluptate_8c\": true,\n \"velit4f\": -92354730\n },\n {\n \"title\": {\n \"amet_8e\": -85311261.87062043,\n \"nostrud_2d2\": 92888465.19737044\n },\n \"body\": {\n \"Excepteur_01\": -83450025,\n \"ipsum7cc\": -90755389,\n \"consectetur491\": \"Excepteur\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/format-modifications", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "format-modifications" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-ed673928-b207-4970-8725-66058b2ccad3" }, { "id": "c90c0dc9-a4e6-4dae-ad4f-57ff57705caf", "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 \"modify_format_config\": [\n {\n \"title\": {\n \"anim_01\": 91681615.36303344\n },\n \"body\": {\n \"in4b\": false\n },\n \"voluptate_8c\": true,\n \"velit4f\": -92354730\n },\n {\n \"title\": {\n \"amet_8e\": -85311261.87062043,\n \"nostrud_2d2\": 92888465.19737044\n },\n \"body\": {\n \"Excepteur_01\": -83450025,\n \"ipsum7cc\": -90755389,\n \"consectetur491\": \"Excepteur\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/format-modifications", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "format-modifications" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-c90c0dc9-a4e6-4dae-ad4f-57ff57705caf" }, { "id": "80edaa7f-d61c-4172-80b0-67fe5812aca6", "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 \"modify_format_config\": [\n {\n \"title\": {\n \"anim_01\": 91681615.36303344\n },\n \"body\": {\n \"in4b\": false\n },\n \"voluptate_8c\": true,\n \"velit4f\": -92354730\n },\n {\n \"title\": {\n \"amet_8e\": -85311261.87062043,\n \"nostrud_2d2\": 92888465.19737044\n },\n \"body\": {\n \"Excepteur_01\": -83450025,\n \"ipsum7cc\": -90755389,\n \"consectetur491\": \"Excepteur\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/format-modifications", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "format-modifications" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-80edaa7f-d61c-4172-80b0-67fe5812aca6" }, { "id": "762697b7-c318-4913-84d4-621bb5f351d0", "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 \"modify_format_config\": [\n {\n \"title\": {\n \"anim_01\": 91681615.36303344\n },\n \"body\": {\n \"in4b\": false\n },\n \"voluptate_8c\": true,\n \"velit4f\": -92354730\n },\n {\n \"title\": {\n \"amet_8e\": -85311261.87062043,\n \"nostrud_2d2\": 92888465.19737044\n },\n \"body\": {\n \"Excepteur_01\": -83450025,\n \"ipsum7cc\": -90755389,\n \"consectetur491\": \"Excepteur\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions/:callback_id/format-modifications", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions", ":callback_id", "format-modifications" ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-762697b7-c318-4913-84d4-621bb5f351d0" } ], "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-c346be20-b56d-4a7d-a7c4-a73754125173" } ], "id": "434ed1f2-411c-4c9e-9d41-615d48a71ae6", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-434ed1f2-411c-4c9e-9d41-615d48a71ae6" } ], "id": "52af8812-ec93-4ce5-a160-41c848d7d07f", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-52af8812-ec93-4ce5-a160-41c848d7d07f" }, { "name": "Create a template-conversion job", "id": "1634a981-a3ad-49cd-8582-6acacc570b55", "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 \"templateName\": \"\",\n \"fileId\": \"\",\n \"inputDeck\": {\n \"culpa8\": -41159695,\n \"ut558\": \"nisi reprehenderit in\"\n },\n \"includeImageWithoutData\": \"\",\n \"includeImageWithData\": \"\",\n \"includeIcons\": \"\",\n \"includeSpecialColor\": \"\",\n \"settings\": {\n \"ai_mode\": \"\",\n \"work_area_option\": \"\",\n \"modifyFormat\": {\n \"dolor_6\": \"deserunt dolor\",\n \"id2ee\": 19338527\n },\n \"color_preference\": \"\",\n \"content_formatting\": \"\"\n },\n \"modifyFormat\": {\n \"exercitation_2\": \"proident dolor labore dolore magna\",\n \"irure21f\": -17037198.734769315\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions" ] }, "description": "Kicks off a pipeline that applies the target brand template\n(`templateName`) to the input PowerPoint (`fileId` or\n`inputDeck`). Returns a `callback_id` to poll. Counted against\nthe `TC_START` usage limit.\n\nSubsequent calls in the same conversion lifecycle: poll the v2\nstatus endpoint at\n`GET /api/v2/template-converter/status/{callback_id}` until the\npipeline reaches a terminal state.\n" }, "response": [ { "id": "93e5a770-dc0a-47bf-8879-cfca94686b44", "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 \"templateName\": \"\",\n \"fileId\": \"\",\n \"inputDeck\": {\n \"culpa8\": -41159695,\n \"ut558\": \"nisi reprehenderit in\"\n },\n \"includeImageWithoutData\": \"\",\n \"includeImageWithData\": \"\",\n \"includeIcons\": \"\",\n \"includeSpecialColor\": \"\",\n \"settings\": {\n \"ai_mode\": \"\",\n \"work_area_option\": \"\",\n \"modifyFormat\": {\n \"dolor_6\": \"deserunt dolor\",\n \"id2ee\": 19338527\n },\n \"color_preference\": \"\",\n \"content_formatting\": \"\"\n },\n \"modifyFormat\": {\n \"exercitation_2\": \"proident dolor labore dolore magna\",\n \"irure21f\": -17037198.734769315\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions" ] } }, "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 \"presentation_name\": \"\",\n \"status\": \"in_progress\"\n },\n \"success\": \"\"\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-93e5a770-dc0a-47bf-8879-cfca94686b44" }, { "id": "48965438-b118-4aef-b8a3-4330c36c4c88", "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 \"templateName\": \"\",\n \"fileId\": \"\",\n \"inputDeck\": {\n \"culpa8\": -41159695,\n \"ut558\": \"nisi reprehenderit in\"\n },\n \"includeImageWithoutData\": \"\",\n \"includeImageWithData\": \"\",\n \"includeIcons\": \"\",\n \"includeSpecialColor\": \"\",\n \"settings\": {\n \"ai_mode\": \"\",\n \"work_area_option\": \"\",\n \"modifyFormat\": {\n \"dolor_6\": \"deserunt dolor\",\n \"id2ee\": 19338527\n },\n \"color_preference\": \"\",\n \"content_formatting\": \"\"\n },\n \"modifyFormat\": {\n \"exercitation_2\": \"proident dolor labore dolore magna\",\n \"irure21f\": -17037198.734769315\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions" ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-48965438-b118-4aef-b8a3-4330c36c4c88" }, { "id": "a5f85fa6-84ad-4cfc-bee9-a7ff04be7da6", "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 \"templateName\": \"\",\n \"fileId\": \"\",\n \"inputDeck\": {\n \"culpa8\": -41159695,\n \"ut558\": \"nisi reprehenderit in\"\n },\n \"includeImageWithoutData\": \"\",\n \"includeImageWithData\": \"\",\n \"includeIcons\": \"\",\n \"includeSpecialColor\": \"\",\n \"settings\": {\n \"ai_mode\": \"\",\n \"work_area_option\": \"\",\n \"modifyFormat\": {\n \"dolor_6\": \"deserunt dolor\",\n \"id2ee\": 19338527\n },\n \"color_preference\": \"\",\n \"content_formatting\": \"\"\n },\n \"modifyFormat\": {\n \"exercitation_2\": \"proident dolor labore dolore magna\",\n \"irure21f\": -17037198.734769315\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions" ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-a5f85fa6-84ad-4cfc-bee9-a7ff04be7da6" }, { "id": "a48ae8f7-2edc-4f8f-bc74-d5be200f329c", "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 \"templateName\": \"\",\n \"fileId\": \"\",\n \"inputDeck\": {\n \"culpa8\": -41159695,\n \"ut558\": \"nisi reprehenderit in\"\n },\n \"includeImageWithoutData\": \"\",\n \"includeImageWithData\": \"\",\n \"includeIcons\": \"\",\n \"includeSpecialColor\": \"\",\n \"settings\": {\n \"ai_mode\": \"\",\n \"work_area_option\": \"\",\n \"modifyFormat\": {\n \"dolor_6\": \"deserunt dolor\",\n \"id2ee\": 19338527\n },\n \"color_preference\": \"\",\n \"content_formatting\": \"\"\n },\n \"modifyFormat\": {\n \"exercitation_2\": \"proident dolor labore dolore magna\",\n \"irure21f\": -17037198.734769315\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions" ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-a48ae8f7-2edc-4f8f-bc74-d5be200f329c" }, { "id": "7f62393b-7fba-4110-ab54-47a1304b12cf", "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 \"templateName\": \"\",\n \"fileId\": \"\",\n \"inputDeck\": {\n \"culpa8\": -41159695,\n \"ut558\": \"nisi reprehenderit in\"\n },\n \"includeImageWithoutData\": \"\",\n \"includeImageWithData\": \"\",\n \"includeIcons\": \"\",\n \"includeSpecialColor\": \"\",\n \"settings\": {\n \"ai_mode\": \"\",\n \"work_area_option\": \"\",\n \"modifyFormat\": {\n \"dolor_6\": \"deserunt dolor\",\n \"id2ee\": 19338527\n },\n \"color_preference\": \"\",\n \"content_formatting\": \"\"\n },\n \"modifyFormat\": {\n \"exercitation_2\": \"proident dolor labore dolore magna\",\n \"irure21f\": -17037198.734769315\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions" ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-7f62393b-7fba-4110-ab54-47a1304b12cf" }, { "id": "923dd5ce-2935-4c0b-a51b-719a65e534d3", "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 \"templateName\": \"\",\n \"fileId\": \"\",\n \"inputDeck\": {\n \"culpa8\": -41159695,\n \"ut558\": \"nisi reprehenderit in\"\n },\n \"includeImageWithoutData\": \"\",\n \"includeImageWithData\": \"\",\n \"includeIcons\": \"\",\n \"includeSpecialColor\": \"\",\n \"settings\": {\n \"ai_mode\": \"\",\n \"work_area_option\": \"\",\n \"modifyFormat\": {\n \"dolor_6\": \"deserunt dolor\",\n \"id2ee\": 19338527\n },\n \"color_preference\": \"\",\n \"content_formatting\": \"\"\n },\n \"modifyFormat\": {\n \"exercitation_2\": \"proident dolor labore dolore magna\",\n \"irure21f\": -17037198.734769315\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions" ] } }, "status": "Conflict", "code": 409, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-923dd5ce-2935-4c0b-a51b-719a65e534d3" }, { "id": "6ef4381a-a59a-4938-a09a-2d10951d3c10", "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 \"templateName\": \"\",\n \"fileId\": \"\",\n \"inputDeck\": {\n \"culpa8\": -41159695,\n \"ut558\": \"nisi reprehenderit in\"\n },\n \"includeImageWithoutData\": \"\",\n \"includeImageWithData\": \"\",\n \"includeIcons\": \"\",\n \"includeSpecialColor\": \"\",\n \"settings\": {\n \"ai_mode\": \"\",\n \"work_area_option\": \"\",\n \"modifyFormat\": {\n \"dolor_6\": \"deserunt dolor\",\n \"id2ee\": 19338527\n },\n \"color_preference\": \"\",\n \"content_formatting\": \"\"\n },\n \"modifyFormat\": {\n \"exercitation_2\": \"proident dolor labore dolore magna\",\n \"irure21f\": -17037198.734769315\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions" ] } }, "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-6ef4381a-a59a-4938-a09a-2d10951d3c10" }, { "id": "91dd56d2-dff6-4633-bea3-e25c316c054b", "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 \"templateName\": \"\",\n \"fileId\": \"\",\n \"inputDeck\": {\n \"culpa8\": -41159695,\n \"ut558\": \"nisi reprehenderit in\"\n },\n \"includeImageWithoutData\": \"\",\n \"includeImageWithData\": \"\",\n \"includeIcons\": \"\",\n \"includeSpecialColor\": \"\",\n \"settings\": {\n \"ai_mode\": \"\",\n \"work_area_option\": \"\",\n \"modifyFormat\": {\n \"dolor_6\": \"deserunt dolor\",\n \"id2ee\": 19338527\n },\n \"color_preference\": \"\",\n \"content_formatting\": \"\"\n },\n \"modifyFormat\": {\n \"exercitation_2\": \"proident dolor labore dolore magna\",\n \"irure21f\": -17037198.734769315\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions" ] } }, "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-91dd56d2-dff6-4633-bea3-e25c316c054b" }, { "id": "21eb9421-15bf-4d48-8a5e-a209ed79a3c8", "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 \"templateName\": \"\",\n \"fileId\": \"\",\n \"inputDeck\": {\n \"culpa8\": -41159695,\n \"ut558\": \"nisi reprehenderit in\"\n },\n \"includeImageWithoutData\": \"\",\n \"includeImageWithData\": \"\",\n \"includeIcons\": \"\",\n \"includeSpecialColor\": \"\",\n \"settings\": {\n \"ai_mode\": \"\",\n \"work_area_option\": \"\",\n \"modifyFormat\": {\n \"dolor_6\": \"deserunt dolor\",\n \"id2ee\": 19338527\n },\n \"color_preference\": \"\",\n \"content_formatting\": \"\"\n },\n \"modifyFormat\": {\n \"exercitation_2\": \"proident dolor labore dolore magna\",\n \"irure21f\": -17037198.734769315\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions" ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-21eb9421-15bf-4d48-8a5e-a209ed79a3c8" }, { "id": "36179e59-6959-4488-a3f6-714c5bb9f5e2", "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 \"templateName\": \"\",\n \"fileId\": \"\",\n \"inputDeck\": {\n \"culpa8\": -41159695,\n \"ut558\": \"nisi reprehenderit in\"\n },\n \"includeImageWithoutData\": \"\",\n \"includeImageWithData\": \"\",\n \"includeIcons\": \"\",\n \"includeSpecialColor\": \"\",\n \"settings\": {\n \"ai_mode\": \"\",\n \"work_area_option\": \"\",\n \"modifyFormat\": {\n \"dolor_6\": \"deserunt dolor\",\n \"id2ee\": 19338527\n },\n \"color_preference\": \"\",\n \"content_formatting\": \"\"\n },\n \"modifyFormat\": {\n \"exercitation_2\": \"proident dolor labore dolore magna\",\n \"irure21f\": -17037198.734769315\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions" ] } }, "status": "Service Unavailable", "code": 503, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-36179e59-6959-4488-a3f6-714c5bb9f5e2" }, { "id": "cf7a8db8-db22-48a5-a42c-b234b5d851d4", "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 \"templateName\": \"\",\n \"fileId\": \"\",\n \"inputDeck\": {\n \"culpa8\": -41159695,\n \"ut558\": \"nisi reprehenderit in\"\n },\n \"includeImageWithoutData\": \"\",\n \"includeImageWithData\": \"\",\n \"includeIcons\": \"\",\n \"includeSpecialColor\": \"\",\n \"settings\": {\n \"ai_mode\": \"\",\n \"work_area_option\": \"\",\n \"modifyFormat\": {\n \"dolor_6\": \"deserunt dolor\",\n \"id2ee\": 19338527\n },\n \"color_preference\": \"\",\n \"content_formatting\": \"\"\n },\n \"modifyFormat\": {\n \"exercitation_2\": \"proident dolor labore dolore magna\",\n \"irure21f\": -17037198.734769315\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/v1/template-conversions", "host": [ "{{baseUrl}}" ], "path": [ "api", "v1", "template-conversions" ] } }, "status": "Gateway Timeout", "code": 504, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"success\": \"\",\n \"data\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-cf7a8db8-db22-48a5-a42c-b234b5d851d4" } ], "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-1634a981-a3ad-49cd-8582-6acacc570b55" } ], "id": "757fc946-55da-4e85-976d-fa3131d1898f", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-757fc946-55da-4e85-976d-fa3131d1898f" } ], "id": "93c728e1-fced-481f-aafb-c8f67c12a3f4", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-93c728e1-fced-481f-aafb-c8f67c12a3f4" }, { "name": "v2", "item": [ { "name": "template-converter", "item": [ { "name": "status", "item": [ { "name": "{callback_id}", "item": [ { "name": "Poll a template-conversion job (strict status mapping)", "id": "d54cd079-0191-4146-a792-f51d80ffb953", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/api/v2/template-converter/status/:callback_id?source=nexus", "host": [ "{{baseUrl}}" ], "path": [ "api", "v2", "template-converter", "status", ":callback_id" ], "query": [ { "description": "Pass `nexus` to include the full `outputs` blob in the response (intended for Prezent's Nexus front-end).", "key": "source", "value": "nexus" } ], "variable": [ { "id": "868e416d-3a39-4fc3-a0d7-ef6d40ea9fbc", "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": "v2 polling endpoint with **strict HTTP-status mapping**: returns\n**HTTP 200 only when the conversion has completed successfully**.\nWhile the pipeline is still running the status is `in_progress`\nand the response is **HTTP 202**. On workflow failure the\nendpoint returns a `4xx` or `5xx` with the standard error\nenvelope.\n\nUse this endpoint instead of the v1 polling endpoint\n(`/api/v1/template-converter/status/{callbackId}`) whenever\npossible \u2014 agents can rely on the HTTP status alone to branch on\nsuccess vs failure, without inspecting body fields.\n" }, "response": [ { "id": "a02608ec-09d9-4581-920a-5092bfcaa77e", "name": "Conversion completed successfully.", "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/v2/template-converter/status/:callback_id?source=nexus", "host": [ "{{baseUrl}}" ], "path": [ "api", "v2", "template-converter", "status", ":callback_id" ], "query": [ { "description": "Pass `nexus` to include the full `outputs` blob in the response (intended for Prezent's Nexus front-end).", "key": "source", "value": "nexus" } ], "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 \"callback_id\": \"\",\n \"status\": \"success\",\n \"presentation_name\": \"\",\n \"template_name\": \"\",\n \"outputs\": {\n \"in_6\": 66727868.21058744,\n \"dolorf\": \"laboris veniam culpa aute\"\n }\n },\n \"success\": \"\"\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-a02608ec-09d9-4581-920a-5092bfcaa77e" }, { "id": "75b35e77-adff-40f5-a4b3-99f76f2548cf", "name": "Conversion is still in progress.", "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/v2/template-converter/status/:callback_id?source=nexus", "host": [ "{{baseUrl}}" ], "path": [ "api", "v2", "template-converter", "status", ":callback_id" ], "query": [ { "description": "Pass `nexus` to include the full `outputs` blob in the response (intended for Prezent's Nexus front-end).", "key": "source", "value": "nexus" } ], "variable": [ { "key": "callback_id" } ] } }, "status": "Accepted", "code": 202, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"data\": {\n \"callback_id\": \"\",\n \"status\": \"in_progress\",\n \"presentation_name\": \"\",\n \"template_name\": \"\",\n \"progress\": {\n \"exercitation_5\": \"deserunt non\"\n }\n },\n \"success\": \"\"\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-75b35e77-adff-40f5-a4b3-99f76f2548cf" }, { "id": "bb8dbb46-fcb0-4e99-9e2e-40ddf675d533", "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/v2/template-converter/status/:callback_id?source=nexus", "host": [ "{{baseUrl}}" ], "path": [ "api", "v2", "template-converter", "status", ":callback_id" ], "query": [ { "description": "Pass `nexus` to include the full `outputs` blob in the response (intended for Prezent's Nexus front-end).", "key": "source", "value": "nexus" } ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-bb8dbb46-fcb0-4e99-9e2e-40ddf675d533" }, { "id": "c0a5c469-7d91-4657-a8e1-048fabe05a94", "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/v2/template-converter/status/:callback_id?source=nexus", "host": [ "{{baseUrl}}" ], "path": [ "api", "v2", "template-converter", "status", ":callback_id" ], "query": [ { "description": "Pass `nexus` to include the full `outputs` blob in the response (intended for Prezent's Nexus front-end).", "key": "source", "value": "nexus" } ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-c0a5c469-7d91-4657-a8e1-048fabe05a94" }, { "id": "41bcbf0b-5d30-43c8-85f9-0e398e40ba38", "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/v2/template-converter/status/:callback_id?source=nexus", "host": [ "{{baseUrl}}" ], "path": [ "api", "v2", "template-converter", "status", ":callback_id" ], "query": [ { "description": "Pass `nexus` to include the full `outputs` blob in the response (intended for Prezent's Nexus front-end).", "key": "source", "value": "nexus" } ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-41bcbf0b-5d30-43c8-85f9-0e398e40ba38" }, { "id": "c6e6e93d-0c09-4132-a8a4-0cd1fd018007", "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/v2/template-converter/status/:callback_id?source=nexus", "host": [ "{{baseUrl}}" ], "path": [ "api", "v2", "template-converter", "status", ":callback_id" ], "query": [ { "description": "Pass `nexus` to include the full `outputs` blob in the response (intended for Prezent's Nexus front-end).", "key": "source", "value": "nexus" } ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-c6e6e93d-0c09-4132-a8a4-0cd1fd018007" }, { "id": "ae42b4af-abd1-48ab-b59f-88f29f5b9833", "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/v2/template-converter/status/:callback_id?source=nexus", "host": [ "{{baseUrl}}" ], "path": [ "api", "v2", "template-converter", "status", ":callback_id" ], "query": [ { "description": "Pass `nexus` to include the full `outputs` blob in the response (intended for Prezent's Nexus front-end).", "key": "source", "value": "nexus" } ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-ae42b4af-abd1-48ab-b59f-88f29f5b9833" }, { "id": "1f0eda45-4a7e-4c5d-b04b-1ac02786800f", "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/v2/template-converter/status/:callback_id?source=nexus", "host": [ "{{baseUrl}}" ], "path": [ "api", "v2", "template-converter", "status", ":callback_id" ], "query": [ { "description": "Pass `nexus` to include the full `outputs` blob in the response (intended for Prezent's Nexus front-end).", "key": "source", "value": "nexus" } ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-1f0eda45-4a7e-4c5d-b04b-1ac02786800f" }, { "id": "aead5d07-722f-4c32-959c-82f1004a3311", "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/v2/template-converter/status/:callback_id?source=nexus", "host": [ "{{baseUrl}}" ], "path": [ "api", "v2", "template-converter", "status", ":callback_id" ], "query": [ { "description": "Pass `nexus` to include the full `outputs` blob in the response (intended for Prezent's Nexus front-end).", "key": "source", "value": "nexus" } ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-aead5d07-722f-4c32-959c-82f1004a3311" }, { "id": "e5979726-d5c5-4acc-b461-5630a93e4ed2", "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/v2/template-converter/status/:callback_id?source=nexus", "host": [ "{{baseUrl}}" ], "path": [ "api", "v2", "template-converter", "status", ":callback_id" ], "query": [ { "description": "Pass `nexus` to include the full `outputs` blob in the response (intended for Prezent's Nexus front-end).", "key": "source", "value": "nexus" } ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-e5979726-d5c5-4acc-b461-5630a93e4ed2" }, { "id": "799dce94-467b-4573-9506-dc8b65163616", "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/v2/template-converter/status/:callback_id?source=nexus", "host": [ "{{baseUrl}}" ], "path": [ "api", "v2", "template-converter", "status", ":callback_id" ], "query": [ { "description": "Pass `nexus` to include the full `outputs` blob in the response (intended for Prezent's Nexus front-end).", "key": "source", "value": "nexus" } ], "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\": null,\n \"error\": {\n \"code\": \"UNAUTHORIZED\",\n \"message\": \"\",\n \"details\": {\n \"commodo7\": \"labore ipsum dolore veniam enim\",\n \"cillum_d1\": 64733070\n }\n }\n}", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-799dce94-467b-4573-9506-dc8b65163616" } ], "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-d54cd079-0191-4146-a792-f51d80ffb953" } ], "id": "312f6405-8f40-4770-894e-e1595aaf530b", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-312f6405-8f40-4770-894e-e1595aaf530b" } ], "id": "d1b21032-fe44-4cad-894d-f70623e29876", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-d1b21032-fe44-4cad-894d-f70623e29876" } ], "id": "5616af84-ff8b-4ea4-8e4c-30e487b13625", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-5616af84-ff8b-4ea4-8e4c-30e487b13625" } ], "id": "151b408f-9c37-4c9b-81fc-2f0b427152b5", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-151b408f-9c37-4c9b-81fc-2f0b427152b5" } ], "id": "a7463ee9-0c56-44b2-9513-7ac6161a6f55", "createdAt": "2026-07-28T02:40:34.000Z", "updatedAt": "2026-07-28T02:40:34.000Z", "uid": "35240-a7463ee9-0c56-44b2-9513-7ac6161a6f55" } ], "auth": { "type": "bearer", "bearer": [ { "key": "token", "value": "{{bearerToken}}", "type": "string" } ] }, "variable": [ { "key": "baseUrl", "value": "https://api.prezent.ai" } ] }