Delete generation job

DELETE /generation/jobs/{id}

删除指定题目生成任务。

Path parameters

  • id string Required

    Format should match the following pattern: ^gen-.

Responses

  • 200 application/json

    generation deleted

    Hide response attributes Show response attributes object
    • id string

      Format should match the following pattern: ^gen-.

    • object string

      Value is generation.

    • deleted boolean
  • 404 application/json

    generation not found

DELETE /generation/jobs/{id}
curl \
 --request DELETE 'https://api.kuaichuti.net/v1/generation/jobs/{id}' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "id": "gen-67d79d01e88e5d44933749cd",
  "object": "generation",
  "deleted": true
}
Response examples (404)
{
  "error": {
    "type": "invalid_request_error",
    "message": "No such Generation job: invalid"
  }
}