Delete a System Prompt

Delete the system prompt of a specified language.

Note: The English and Chinese system prompts cannot be deleted.

Request URL

GET {base_url}/{api_path}/system_prompt/delete?language={language}&access_token={access_token}

Request parameters

Parameter Required Type Description
language Yes String The language code of the system prompt (e.g., "sound-en_Au_Female").
Note:
  • You can query the language codes of the available system prompts using Query System Prompt List.
  • The system prompts of language codes sound-en and sound-zh cannot be deleted.

Response parameters

Parameter Type Description
errcode Integer Returned error code.
  • 0: Succeed.
  • Non-zero value: Failed.
Note: You can check the error code and error message in Error Code and Error Message.
errmsg String Returned message.
  • SUCCESS: Succeed.
  • FAILURE: Failed.

Example

Request example

GET /openapi/v1.0/system_prompt/delete?language=sound-zh&access_token=gwakjgu9ZBUfz36wql4ndsVKkryI0kdj HTTP/1.1
Host: 192.168.5.150:8088

Response example

HTTP/1.1 200 OK
{
  "errcode": 0,
  "errmsg": "SUCCESS"
}