Maximize productivity with personalized, automated calling

Voice Self-Service for your growing business needs

List Files

The fileSystem API allows you to retrieve a listing of files (e.g recordings or prompts) saved on your system.

Params

apiKey Required The user specific API key.

Example CURL Command
Copy the command and replace with your {apiKey}.

curl --request GET -H "Content-Type:application/xml;charset=UTF-8" "https://api.nimblevox.com/fileSystem?apiKey={apiKey}"

Example XML Response

<files>
   <file fileName="recordings/crickets2.wav" lastModified="1355934528000"/>
     <file fileName="prompts/voice.wav" lastModified="1355933260000"/>
 </files>

Example JSON Response

{"files"[{"fileName":"recordings/voice.wav","lastModified":1355935371000}]}

Response Field Definitions

Element Name Description
fileName The location and name of the file.
lastModified The last time (Unix timestamp in milliseconds) the file was modified.

Questions?