Returns a resource object of type schema_menu_item.
1GET https://site-api.datocms.com/schema-menu-items/:schema_menu_item_id HTTP/1.12Authorization: Bearer YOUR-API-TOKEN3Accept: application/json4X-Api-Version: 3
1curl -g 'https://site-api.datocms.com/schema-menu-items/:schema_menu_item_id' \2 \3 -H "Authorization: Bearer YOUR-API-TOKEN" \4 -H "Accept: application/json" \5 -H "X-Api-Version: 3"
1await fetch(2 "https://site-api.datocms.com/schema-menu-items/:schema_menu_item_id",3 {4 headers: {5 Authorization: "Bearer YOUR-API-TOKEN",6 Accept: "application/json",7 "X-Api-Version": "3",8 },9 },10);
1HTTP/1.1 200 OK2Content-Type: application/json3Cache-Control: cache-control: max-age=0, private, must-revalidate4X-RateLimit-Limit: 305X-RateLimit-Remaining: 286 7{8 "data": {9 "type": "schema_menu_item",10 "id": "uinr2zfqQLeCo_1O0-ao-Q",11 "relationships": {12 "item_type": {13 "data": {14 "type": "item_type",15 "id": "DxMaW10UQiCmZcuuA-IkkA"16 }17 },18 "parent": {19 "data": null20 },21 "children": {22 "data": [23 {24 "type": "schema_menu_item",25 "id": "uinr2zfqQLeCo_1O0-ao-Q"26 }27 ]28 }29 },30 "attributes": {31 "label": "Posts",32 "position": 1,33 "kind": "item_type"34 }35 }36}