Show examples in:
Javascript HTTP
Endpoint info
Available examples

Content Management API > Schema Menu Item

Delete a schema menu item

Returns

Returns a resource object of type schema_menu_item.

Examples

1
DELETE https://site-api.datocms.com/schema-menu-items/:schema_menu_item_id HTTP/1.1
2
Authorization: Bearer YOUR-API-TOKEN
3
Accept: application/json
4
X-Api-Version: 3
Terminal window
1
curl -g 'https://site-api.datocms.com/schema-menu-items/:schema_menu_item_id' \
2
-X DELETE \
3
-H "Authorization: Bearer YOUR-API-TOKEN" \
4
-H "Accept: application/json" \
5
-H "X-Api-Version: 3"
1
await fetch(
2
"https://site-api.datocms.com/schema-menu-items/:schema_menu_item_id",
3
{
4
method: "DELETE",
5
headers: {
6
Authorization: "Bearer YOUR-API-TOKEN",
7
Accept: "application/json",
8
"X-Api-Version": "3",
9
},
10
},
11
);
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
}