一键导入
ollang-order-cancel
Cancel an active Ollang order. Use when the user wants to cancel a translation, captioning, or dubbing order that hasn't been completed yet.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Cancel an active Ollang order. Use when the user wants to cancel a translation, captioning, or dubbing order that hasn't been completed yet.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Master skill for the Ollang translation platform. Routes to the right Ollang sub-skill based on intent — upload files, create orders, check status, manage revisions, run QC, browse projects and folders. Use when the user mentions Ollang or wants to perform any translation/captioning/dubbing workflow.
Manage custom translation instructions — create, list, update, and delete per-account guidelines that guide AI translators. Use when the user wants to set up or modify translation preferences, rules, or constraints for their account.
Create a translation order on the Ollang platform. Supports closed captions, subtitles, document translation, AI dubbing, and studio dubbing. Use when the user wants to start a translation, captioning, or dubbing job.
List and browse Ollang folders with pagination and search. Use when the user wants to see their folder structure, find a folder ID, or organize projects into folders.
Request or cancel human review for an Ollang order. Human review assigns a professional linguist to review AI-generated translations. Use when the user wants to upgrade an order to human review or cancel an in-progress human review.
Retrieve details of a specific Ollang order by its ID, including status, languages, documents, and QC results. Use when the user wants to check the status or details of an order.
基于 SOC 职业分类
| name | ollang-order-cancel |
| description | Cancel an active Ollang order. Use when the user wants to cancel a translation, captioning, or dubbing order that hasn't been completed yet. |
Cancel an active order. Only eligible orders (not yet completed or already cancelled) can be cancelled.
All requests require the X-Api-Key header. The API key is read from the OLLANG_API_KEY environment variable. If not set, instruct the user to run: export OLLANG_API_KEY=<your-api-key> (get it from https://lab.ollang.com).
POST https://api-integration.ollang.com/integration/orders/cancel/{orderId}
| Parameter | Type | Required | Description |
|---|---|---|---|
orderId | string | Yes | The unique order identifier to cancel |
No request body required.
curl -X POST https://api-integration.ollang.com/integration/orders/cancel/ORDER_ID \
-H "X-Api-Key: $OLLANG_API_KEY"
OLLANG_API_KEY environment variable. If not set, tell the user to set it with: export OLLANG_API_KEY=<your-api-key>orderId if not provided400 - Order is not eligible for cancellation (wrong status)401 - Invalid or missing API key403 - Access denied404 - Order not found409 - Order already cancelled