image.delete
bearer / PAT
Delete an image
Soft-deletes the image and asynchronously purges its objects from storage.
Parameters
Passed by name in the params object.
| Name | Type | Required | Description |
|---|---|---|---|
id |
string | yes | Image UUID |
Result
Returns an empty object {} on success.
Errors
| Code | Message | When |
|---|---|---|
2002 |
validation_failed |
Malformed request; see error.data. |
2001 |
not_found |
No such resource owned by the caller. |
See the error reference for the full catalog, including the authentication codes.
Example
Request:
{
"jsonrpc": "2.0",
"id": 1,
"method": "image.delete",
"params": {
"id": "018f3a7d-2b8c-7f1a-a4d5-6e7f8a9b0c1d"
}
}
Response:
{
"jsonrpc": "2.0",
"id": 1,
"result": {}
}
curl
curl -s https://peinture.gumeniuk.com/rpc \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"image.delete","params":{"id":"018f3a7d-2b8c-7f1a-a4d5-6e7f8a9b0c1d"}}'
JavaScript
const res = await fetch("https://peinture.gumeniuk.com/rpc", {
method: "POST",
headers: {
"Content-Type": "application/json",
"Authorization": `Bearer ${token}`,
},
body: JSON.stringify({
jsonrpc: "2.0", id: 1, method: "image.delete", params: {"id":"018f3a7d-2b8c-7f1a-a4d5-6e7f8a9b0c1d"},
}),
});
const { result, error } = await res.json();
Go
body := []byte(`{"jsonrpc":"2.0","id":1,"method":"image.delete","params":{"id":"018f3a7d-2b8c-7f1a-a4d5-6e7f8a9b0c1d"}}`)
req, _ := http.NewRequest("POST", "https://peinture.gumeniuk.com/rpc", bytes.NewReader(body))
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", "Bearer "+token)
resp, err := http.DefaultClient.Do(req)