Update an existing book list.
Input
Encoding
application/jsondescription
string
Optional
New description
maxLength: 500 bytesname
string
Optional
New name for the list
maxLength: 100 bytesminLength: 1 bytesordered
boolean
Optional
Whether the list is ordered
tags
array
Optional
New tags
uri
string
Required
AT-URI of the list to update
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": [
"uri"
],
"properties": {
"uri": {
"type": "string",
"description": "AT-URI of the list to update"
},
"name": {
"type": "string",
"maxLength": 100,
"minLength": 1,
"description": "New name for the list"
},
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 50
},
"description": "New tags"
},
"ordered": {
"type": "boolean",
"description": "Whether the list is ordered"
},
"description": {
"type": "string",
"maxLength": 500,
"description": "New description"
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"required": [
"uri",
"cid"
],
"properties": {
"cid": {
"type": "string"
},
"uri": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"description": "Update an existing book list."
}