POST /プロジェクト/{projectId}/querys/bulk-convert
curl \
--request POST 'http://127.0.0.1:8278/api/v1/project/{projectId}/queries/bulk-convert' \
--header "Content-Type: application/json" \
--data '{"language":"JAVA","queries":["string"],"attemptTypedEntities":true}'
リクエスト例
{
"language": "JAVA",
"queries": [
"string"
],
"attemptTypedEntities": true
}
応答の例(200)
{
"pendingQueries": [
"string"
],
"runningQueries": [
"string"
],
"completedQueries": [
"string"
],
"failedQueries": [
"string"
]
}
応答の例(497)
{
"jobId": "string",
"message": "string",
"description": "string",
"timestamp": "2025-05-04T09:42:00Z"
}