DELETE
/
integration
/
revision
/
{orderId}
/
{revId}
curl -X DELETE "https://api-integration.ollang.com/integration/revision/60b8d6f1e1b9b1d8c6c0d8e1/rev_60b8d6f1e1b9b1d8c6c0d8e2" \
  -H "X-Api-Key: <your-api-key>"
No content - Revision deleted successfully

Delete a specific revision request that is no longer needed or was created in error. This action is irreversible, so use it carefully to remove revision requests that are no longer relevant.

curl -X DELETE "https://api-integration.ollang.com/integration/revision/60b8d6f1e1b9b1d8c6c0d8e1/rev_60b8d6f1e1b9b1d8c6c0d8e2" \
  -H "X-Api-Key: <your-api-key>"

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

orderId
string
required

The unique identifier of the order that contains the revision you want to delete. This should be a valid order ID that you have access to.

revId
string
required

The unique identifier of the specific revision request you want to delete. This should be a valid revision ID that belongs to the specified order.

Response

This endpoint returns no content on successful deletion (HTTP 204 status code). The absence of an error response indicates that the revision was successfully deleted.

No content - Revision deleted successfully