Stop a running bulk query conversion job

DELETE /project/{projectId}/queries/bulk-convert

Stop a running bulk query conversion job

Path parameters

  • projectId string Required

    Project ID

    Format should match the following pattern: ^[A-Za-z0-9\-]+$.

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • pendingQueries array[string] Required
    • runningQueries array[string] Required
    • completedQueries array[string] Required
    • failedQueries array[string] Required
  • 404 application/json

    Not found

    Hide response attributes Show response attributes object
    • jobId string

      Format should match the following pattern: ^[A-Za-z0-9\-]+$.

    • message string Required
    • description string
    • timestamp string(date-time) Required
DELETE /project/{projectId}/queries/bulk-convert
curl \
 --request DELETE 'http://127.0.0.1:8278/api/v1/project/{projectId}/queries/bulk-convert'
Response examples (200)
{
  "pendingQueries": [
    "string"
  ],
  "runningQueries": [
    "string"
  ],
  "completedQueries": [
    "string"
  ],
  "failedQueries": [
    "string"
  ]
}
Response examples (404)
{
  "jobId": "string",
  "message": "string",
  "description": "string",
  "timestamp": "2025-05-04T09:42:00Z"
}