Documentation Index Fetch the complete documentation index at: https://api-docs.ollang.com/llms.txt
Use this file to discover all available pages before exploring further.
Rerun an existing order to regenerate the translation. This endpoint triggers a new translation process using the current AI models and any updated settings. The original order will be processed again, and the results will replace the previous translation.
cURL
JavaScript
Python
PHP
Go
Java
curl -X POST "https://api-integration.ollang.com/integration/orders/60b8d6f1e1b9b1d8c6c0d8e1/rerun" \
-H "X-Api-Key: <your-api-key>" \
-H "Content-Type: application/json" \
-d '{}'
Authorizations
This endpoint requires API key authentication. Include your API key in the request header:
Header name : X-Api-Key
Header value : Your API key from the Ollang dashboard
Format : X-Api-Key: your-api-key-here
You can obtain your API key from your Ollang dashboard .
Path Parameters
The unique identifier of the order you want to rerun. The order must be in a
completed or delivered state to be eligible for rerun.
Request Body
The request body is optional. You can send an empty object {} to rerun the order with default settings.
Response
Indicates whether the rerun was initiated successfully.
A message describing the result of the rerun request.
The ID of the order being rerun. This is the same as the input orderId.
{
"success" : true ,
"message" : "Order rerun initiated successfully" ,
"orderId" : "60b8d6f1e1b9b1d8c6c0d8e1"
}