list_objects Method


What does it do?

The method will return a list of Objects (files) that belong to the user being authenticated in the request.

How do you use it?

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

Required Parameters

This method has no Required Parameters

Modifiers

Modifiers are additional fields added to the POST request that effect the outcome. The fields are optional.

Example Response

        {
            "status":"ok",
            "objects":
            [
                {
                    "object_id":"65937",
                    "file_name":"some_image_file.jpg"
                },
                {
                    "object_id":"41277",
                    "file_name":"anothervideo.mpg"
                }
            ]
            
        }
    

Response Descriptions