Skip to content

Remote API Wav name

Matthew Martin edited this page Mar 9, 2022 · 1 revision

/x-pam/wav/[wavfile_name]

GET

Downloads the wav file

HTTP Status Code: 200

Body: audio/wav

HTTP Status Code: 404

Returned if the file cannot be found

Body: application/json

{
    "code": 404,
    "success": false,
    "wav": wavfile_name
}

DELETE

Deletes the wav file

HTTP Status Code: 200

The wav file has been deleted

HTTP Status Code: 404

Returned if the file cannot be found

Body: application/json

{
    "code": 404,
    "success": false,
    "wav": wavfile_name
}