Create a new book list.
Input
Encoding
application/jsondescription
string
Optional
Optional description of the list
maxLength: 500 bytesname
string
Required
The name of the list
maxLength: 100 bytesminLength: 1 bytesordered
boolean
Optional
Whether the list is ordered
tags
array
Optional
Optional tags
Output
Encoding
application/jsoncid
string
Required
No description available.
uri
string
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": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"maxLength": 100,
"minLength": 1,
"description": "The name of the list"
},
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 50
},
"description": "Optional tags"
},
"ordered": {
"type": "boolean",
"description": "Whether the list is ordered"
},
"description": {
"type": "string",
"maxLength": 500,
"description": "Optional description of the list"
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"required": [
"uri",
"cid"
],
"properties": {
"cid": {
"type": "string"
},
"uri": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"description": "Create a new book list."
}