Reorder items in a list.
Input
Encoding
application/jsonitemUris
array
Required
Item URIs in the new desired order
listUri
string
Required
AT-URI of the list
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": [
"listUri",
"itemUris"
],
"properties": {
"listUri": {
"type": "string",
"description": "AT-URI of the list"
},
"itemUris": {
"type": "array",
"items": {
"type": "string"
},
"description": "Item URIs in the new desired order"
}
}
},
"encoding": "application/json"
},
"description": "Reorder items in a list."
}