Skip to content

Update Item

POST
/admin/content/{collectionId}/items/{itemId}
curl --request POST \
--url http://localhost:9000/admin/content/example/items/example \
--header 'Content-Type: application/json' \
--data '{ "title": "example", "slug": "example", "creator_id": "example", "body": "example", "status": "example", "published_at": "example", "metadata": {} }'
collectionId
required
string
itemId
required
string
Media type application/json
object
title
string
slug
string
creator_id
string
nullable
body
string
nullable
status
string
published_at
string
nullable
metadata
object
key
additional properties
any
Example generated
{
"title": "example",
"slug": "example",
"creator_id": "example",
"body": "example",
"status": "example",
"published_at": "example",
"metadata": {}
}

OK

Media type application/json
object
Example generated
{}