Skip to main content
PUT
/
issues
/
{id}
Update an issue
curl --request PUT \
  --url https://restapi.deepdub.ai/api/v1/issues/{id} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "additionalComments": "Confirmed the mispronunciation reproduces with seed=42"
}
'
{
  "id": "iss_12345abcde",
  "state": "open",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "generationId": "<string>",
  "generatedText": "<string>",
  "problemWord": "<string>",
  "voicePromptId": "<string>",
  "additionalComments": "<string>",
  "problemSeconds": 123
}
All fields in the request body are optional — only fields you include will be updated.

Authorizations

x-api-key
string
header
required

API key for authentication. Must start with dd- prefix.

Headers

x-api-key
string
default:dd-00000000000000000000000065c9cbfe
required

API Key

Path Parameters

id
string
required

Issue ID

Body

application/json

Payload for updating an existing issue. All fields are optional.

generationId
string
generatedText
string
problemWord
string
voicePromptId
string
additionalComments
string
problemAudioFile
string

Optional base64-encoded audio clip to attach to the issue

problemSeconds
number

Response

Updated issue

Issue details

id
string
Example:

"iss_12345abcde"

state
string

Current state of the issue (e.g., open, in progress, resolved)

Example:

"open"

createdAt
string<date-time>
updatedAt
string<date-time>
generationId
string
generatedText
string
problemWord
string
voicePromptId
string
additionalComments
string
problemSeconds
number