Links

Get Projects

Get Project List

get
https://api.dyntube.com/v1/
projects
Get a list of projects. You can filter or sort projects based on optional query string.
Parameters
Query
page
Integer
Page number
size
Integer
Page size
planType
Integer
Type of the plan
sort
String
Sort order of the results. See details below.
projectId
String
Id of the project
Responses
200: OK
Response will create a list of videos and a pager.
400: Bad Request
If there is something wrong
401: Unauthorized
If unauthorized

Sorting of results

The sorting order of the projects would be a query parameter sort with a value. the format of the value would be field:1 for ascending order and field:-1 for descending order.
# Here are examples to sort by "Created" date.
#Sort by date created descending:
https://api.dyntube.com/v1/projects?sort=Created:-1
#Sort by date created ascending:
https://api.dyntube.com/v1/projects?sort=Created:1