Difference between revisions of "API Assets List"

From unroole CMS wiki
Jump to: navigation, search
(Optional Paramaters)
m (Optional Paramaters)
Line 55: Line 55:
 
| [[API Asset Fields]]
 
| [[API Asset Fields]]
 
| List of comma separated fields to be returned in the response.
 
| List of comma separated fields to be returned in the response.
 +
|-
 +
| page
 +
| 1
 +
| Depends on query
 +
| Integer
 +
| The current pages to display based on the limit.
 
|-
 
|-
 
| url_time_limit
 
| url_time_limit

Revision as of 09:51, 29 November 2013

Summary

Allows querying for a list of assets. The query is a wildcard search on the asset's:

  • id
  • name
  • description
  • content_type
  • type
  • file_name
  • upload_id
  • tags

URI

https://api.unroole.com/accounts/[account-id]/assets

HTTP Method

GET

Required Paramaters

Paramater Default Maximum Length Accepted Values Description
token API Persistence Token that identifies this user and its permissions.

Optional Paramaters

Paramater Default Maximum Length Accepted Values Description
search string The search terms to be used in the query.
limit 500 The maximum number of assets to return.
fields id, name, file_name, url API Asset Fields List of comma separated fields to be returned in the response.
page 1 Depends on query Integer The current pages to display based on the limit.
url_time_limit 60 The length of time (in seconds) that the asset url will be accessible for if the asset is private. This only applies to the response.

Response

Field Type Description
http_status integer API Status Code
http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html
error Rails default
assets array of API Asset Fields List of files that matched the search query
result_length integer Total number of results that could be returned. This may not be the number of assets in the response, as it is truncated by limit parameter.

Examples

All assets on an account

Parameters Values
token 1f0qpLwoV5oIcfnU2yvO

All pdfs on an account

Parameters Values
token 1f0qpLwoV5oIcfnU2yvO
search pdf
fields id,name,description,file_name,content_type,file_size,updated_at,created_at,type,video_id,dimensions,upload_id,private,sharable,editable,printable,used,tags,url,styles

Search by mime type

Parameters Values
token 1f0qpLwoV5oIcfnU2yvO
search audio
fields id,name,description,file_name,content_type,file_size,updated_at,created_at,type,video_id,dimensions,upload_id,private,sharable,editable,printable,used,tags,url,styles

Search by tag and name returning first 3 matches

result_length is 7 because there are 7 assets that can be returned, but the user requested only for 3

Parameters Values
token 1f0qpLwoV5oIcfnU2yvO
search space
limit 3
fields id,name,description,file_name,content_type,file_size,updated_at,created_at,type,video_id,dimensions,upload_id,private,sharable,editable,printable,used,tags,url,styles