Sorry, no results found for "".
Must be exactly "schema_menu_item"
.
JSON API type field
The label of the schema menu item (only present when the schema menu item is not linked to an item type)
"Posts"
Ordering index
1
Indicates if the schema menu item refers to an item type or a modular block
"item_type"
Item type associated with the menu item
Parent schema menu item
Underlying schema menu items
Returns a resource object of type schema_menu_item.
PUT https://site-api.datocms.com/schema-menu-items/:schema_menu_item_id HTTP/1.1Authorization: Bearer YOUR-API-TOKENAccept: application/jsonX-Api-Version: 3Content-Type: application/vnd.api+json
{ "data": { "type": "schema_menu_item", "id": "uinr2zfqQLeCo_1O0-ao-Q" }}
curl -g 'https://site-api.datocms.com/schema-menu-items/:schema_menu_item_id' \ -X PUT \ -H "Authorization: Bearer YOUR-API-TOKEN" \ -H "Accept: application/json" \ -H "X-Api-Version: 3" \ -H "Content-Type: application/vnd.api+json" \ --data-binary '{"data":{"type":"schema_menu_item","id":"uinr2zfqQLeCo_1O0-ao-Q"}}'
await fetch( "https://site-api.datocms.com/schema-menu-items/:schema_menu_item_id", { method: "PUT", headers: { Authorization: "Bearer YOUR-API-TOKEN", Accept: "application/json", "X-Api-Version": "3", "Content-Type": "application/vnd.api+json", }, body: JSON.stringify({ data: { type: "schema_menu_item", id: "uinr2zfqQLeCo_1O0-ao-Q" }, }), },);
HTTP/1.1 200 OKContent-Type: application/jsonCache-Control: cache-control: max-age=0, private, must-revalidateX-RateLimit-Limit: 30X-RateLimit-Remaining: 28
{ "data": { "type": "schema_menu_item", "id": "uinr2zfqQLeCo_1O0-ao-Q", "relationships": { "item_type": { "data": { "type": "item_type", "id": "DxMaW10UQiCmZcuuA-IkkA" } }, "parent": { "data": null }, "children": { "data": [ { "type": "schema_menu_item", "id": "uinr2zfqQLeCo_1O0-ao-Q" } ] } }, "attributes": { "label": "Posts", "position": 1, "kind": "item_type" } }}