List note records from a repo, with optional pagination.
Parameters
Output
Encoding
application/jsoncursor
string
Optional
No description available.
notes
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": [
"notes"
],
"properties": {
"notes": {
"type": "array",
"items": {
"ref": "#noteView",
"type": "ref"
}
},
"cursor": {
"type": "string",
"maxLength": 100
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"repo"
],
"properties": {
"repo": {
"type": "string",
"format": "at-identifier"
},
"limit": {
"type": "integer",
"maximum": 100,
"minimum": 1
},
"cursor": {
"type": "string",
"maxLength": 100
}
}
},
"description": "List note records from a repo, with optional pagination."
}