List the authenticated user's drafts.
Parameters
Output
Encoding
application/jsoncursor
string
Optional
Pagination cursor for the next page.
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."
},
"drafts": {
"type": "array",
"items": {
"ref": "at.unthread.document.putDraft#draftView",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Maximum number of drafts to return."
},
"cursor": {
"type": "string",
"description": "Pagination cursor from a previous response."
}
}
},
"description": "List the authenticated user's drafts."
}