Show examples in:
Javascript HTTP
Endpoint info
Available examples

Content Management API > Plugin

Delete a plugin

Returns

Returns a resource object of type plugin.

Examples

1
DELETE https://site-api.datocms.com/plugins/:plugin_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/plugins/:plugin_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("https://site-api.datocms.com/plugins/:plugin_id", {
2
method: "DELETE",
3
headers: {
4
Authorization: "Bearer YOUR-API-TOKEN",
5
Accept: "application/json",
6
"X-Api-Version": "3",
7
},
8
});
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": "plugin",
10
"id": "RMAMRffBRlmBuDlQsIWZ0g",
11
"attributes": {
12
"name": "5 stars",
13
"description": "A better rating experience!",
14
"url": "https://cdn.rawgit.com/datocms/extensions/master/samples/five-stars/extension.js",
15
"parameters": {
16
"devMode": true
17
},
18
"package_name": "datocms-plugin-star-rating-editor",
19
"package_version": "0.0.4",
20
"permissions": [
21
"currentUserAccessToken"
22
]
23
},
24
"meta": {
25
"version": "2"
26
}
27
}
28
}