List the authenticated user's draft VODs, newest first.
Parameters
Output
Encoding
application/jsoncursor
string
Optional
Pagination cursor for the next page, if more results exist.
drafts
array
Required
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"drafts"
],
"properties": {
"cursor": {
"type": "string",
"description": "Pagination cursor for the next page, if more results exist."
},
"drafts": {
"type": "array",
"items": {
"ref": "place.stream.vod.draftDefs#draftView",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Number of drafts to return."
},
"cursor": {
"type": "string",
"description": "Pagination cursor from a previous response."
}
}
},
"description": "List the authenticated user's draft VODs, newest first."
}