Delete a Custom Prompt

Delete a custom prompt.

Request URL

GET {base_url}/{api_path}/custom_prompt/delete?file={file}&access_token={access_token}

Request parameters

Parameter Required Type Description
file Yes String The filename of the prompt, including the file extension (e.g., "welcome.wav").
Note: You can query the filename of the prompt using Search Custom Prompts.

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/custom_prompt/delete?file=doc_demo_prompt_v2.wav&access_token=gwakjgu9ZBUfz36wql4ndsVKkryI0kdj HTTP/1.1
Host: 192.168.5.150:8088

Response example

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