Show examples in:
Javascript HTTP
Endpoint info
Available examples

Content Management API > Schema Menu Item

Create a new schema menu item

Body parameters

id string Optional

RFC 4122 UUID of schema menu item expressed in URL-safe base64 format

Example: "uinr2zfqQLeCo_1O0-ao-Q"
type string Required

Must be exactly "schema_menu_item". JSON API type field

attributes.label null, string Required

The label of the schema menu item (only present when the schema menu item is not linked to an item type)

Example: "Posts"
attributes.kind enum Required

Indicates if the schema menu item refers to an item type or a modular block

Example: "item_type"
item_type Optional
modular_block Optional
attributes.position integer Optional

Ordering index

Example: 1
relationships.item_type.data Optional

Item type associated with the menu item

relationships.parent.data Optional

Parent schema menu item

Returns

Returns a resource object of type schema_menu_item.

Examples

1
POST https://site-api.datocms.com/schema-menu-items HTTP/1.1
2
Authorization: Bearer YOUR-API-TOKEN
3
Accept: application/json
4
X-Api-Version: 3
5
Content-Type: application/vnd.api+json
6
7
{
8
"data": {
9
"type": "schema_menu_item",
10
"attributes": {
11
"label": "Posts",
12
"kind": "item_type"
13
}
14
}
15
}
Terminal window
1
curl -g 'https://site-api.datocms.com/schema-menu-items' \
2
-X POST \
3
-H "Authorization: Bearer YOUR-API-TOKEN" \
4
-H "Accept: application/json" \
5
-H "X-Api-Version: 3" \
6
-H "Content-Type: application/vnd.api+json" \
7
--data-binary '{"data":{"type":"schema_menu_item","attributes":{"label":"Posts","kind":"item_type"}}}'
1
await fetch("https://site-api.datocms.com/schema-menu-items", {
2
method: "POST",
3
headers: {
4
Authorization: "Bearer YOUR-API-TOKEN",
5
Accept: "application/json",
6
"X-Api-Version": "3",
7
"Content-Type": "application/vnd.api+json",
8
},
9
body: JSON.stringify({
10
data: {
11
type: "schema_menu_item",
12
attributes: { label: "Posts", kind: "item_type" },
13
},
14
}),
15
});
1
HTTP/1.1 200 OK
2
Content-Type: application/json
3
Cache-Control: cache-control: max-age=0, private, must-revalidate
4
X-RateLimit-Limit: 30
5
X-RateLimit-Remaining: 28
6
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": null
20
},
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
}