Create a new list for the authenticated user.
Input
Encoding
application/jsondescription
string
Optional
Optional description of the list.
maxLength: 500 bytesname
string
Required
The name of the list.
maxLength: 100 bytesOutput
Encoding
application/jsoncid
string
Required
No description available.
uri
stringat-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
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,
"description": "The name of the list."
},
"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",
"format": "at-uri"
}
}
},
"encoding": "application/json"
},
"description": "Create a new list for the authenticated user."
}