Upload a Custom Prompt

Upload a custom prompt.

Request URL

POST {base_url}/{api_path}/custom_prompt/upload?access_token={access_token}

Request parameters

Parameter Required Type Description
file Yes File The custom prompt file.
Note: Only a file in ".wav", ".mp3" or ".gsm" format is supported, and the file size must not exceed 8MB.
is_check Yes String The operation mode.

Valid value:

  • ask: Check whether the filename of the custom prompt already exists.
  • force: Upload the custom prompt file.
    Note: If no duplicate filename exists, add the custom prompt directly; otherwise, overwrite the existing one.

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.
exist_type String The type of the existing custom prompt.
  • specify: Custom prompt selected from a storage device.
  • tts: Custom prompt generated via Text-to-Speech feature.
  • record: Custom prompt recorded by an extension or uploaded from local storage.

Examples

Request example

  • Check whether the filename of the custom prompt "demo.wav" already exists.
    POST /openapi/v1.0/custom_prompt/upload?access_token=8MW5SHkimQ5XFufE93ErtTzKmNfc5UHp HTTP/1.1  
    Host: 192.168.5.150:8088
    Content-Type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW
    
    ------WebKitFormBoundary7MA4YWxkTrZu0gW
    Content-Disposition: form-data; name="file"; filename="/D:/prompt/demo.wav"
    Content-Type: audio/wav
    
    (binary data)
    ------WebKitFormBoundary7MA4YWxkTrZu0gW
    Content-Disposition: form-data; name="is_check"
    
    ask
    ------WebKitFormBoundary7MA4YWxkTrZu0gW--
    Figure 1. Request example 1 in Postman
  • Upload the custom prompt file "demo.wav".
    POST /openapi/v1.0/custom_prompt/upload?access_token=8MW5SHkimQ5XFufE93ErtTzKmNfc5UHp HTTP/1.1  
    Host: 192.168.5.150:8088
    Content-Type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW
    
    ------WebKitFormBoundary7MA4YWxkTrZu0gW
    Content-Disposition: form-data; name="file"; filename="/D:/prompt/demo.wav"
    Content-Type: audio/wav
    
    (binary data)
    ------WebKitFormBoundary7MA4YWxkTrZu0gW
    Content-Disposition: form-data; name="is_check"
    
    force
    ------WebKitFormBoundary7MA4YWxkTrZu0gW--
    Figure 2. Request example 2 in Postman

Response example

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