The method will return a list of Objects (files) that belong to the user being authenticated in the request.
A list of objects are returned in an array labeled "objects", if there are no files, than the objects listing will be present, but empty.
The Object ID can be used in with other methods to modify the results. For example, in conjuction with the get_object method
This method has no Required Parameters
Modifiers are additional fields added to the POST request that effect the outcome. The fields are optional.
&filter_file_extension=mp3|wav|oggWill result in only files with the .mp3, .wav, and .ogg extensions
{
"status":"ok",
"objects":
[
{
"object_id":"65937",
"file_name":"some_image_file.jpg"
},
{
"object_id":"41277",
"file_name":"anothervideo.mpg"
}
]
}