Play a Custom Prompt
Retrieve the playback resource URL of the specified custom prompt, then access the URL to download the prompt and play locally.
Request URL
GET {base_url}/{api_path}/custom_prompt/play?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.
Note: You can check the error code and
error message in Error Code and Error Message.
|
| errmsg | String | Returned message.
|
| file | String | The filename of the custom prompt. |
| play_resource_url | String | The playback resource URL of the custom prompt. |
Example
Request example
GET /openapi/v1.0/custom_prompt/play?file=doc_demo_prompt.wav&access_token=gwakjgu9ZBUfz36wql4ndsVKkryI0kdj HTTP/1.1
Host: 192.168.5.150:8088
Response example
HTTP/1.1 200 OK
{
"errcode": 0,
"errmsg": "SUCCESS",
"file": "doc_demo_prompt.wav",
"play_resource_url": "/api/download/CustomPrompt-3xxxxx7-download-20260914172717-wVBfNL7WIlYWSzPH.wav"
}
Combine the playback resource URL with the {base_url}. Then use the complete link to download the prompt file and play locally.
Play link format
{base_url}/{play_resource_url}
Play link example
https://192.168.5.150:8088/api/download/CustomPrompt-3xxxxx7-download-20260914165139-x7E92Gab952IwoXB.wav