album.crop.delete

bearer

Delete a folder crop rule (re-renders the folder)

Parameters

Passed by name in the params object.

Name Type Required Description
album_id string yes Folder UUID
code string yes Crop code to delete

Result

Returns jobResult:

Field Type Description
job_id * integer

Errors

Code Message When
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": "album.crop.delete",
  "params": {
    "album_id": "018f3a80-1c2d-7e00-9a00-0b1c2d3e4f50",
    "code": "hero"
  }
}

Response:

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "job_id": 4242
  }
}

curl

curl -s https://peinture.gumeniuk.com/rpc \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"album.crop.delete","params":{"album_id":"018f3a80-1c2d-7e00-9a00-0b1c2d3e4f50","code":"hero"}}'

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: "album.crop.delete", params: {"album_id":"018f3a80-1c2d-7e00-9a00-0b1c2d3e4f50","code":"hero"},
  }),
});
const { result, error } = await res.json();

Go

body := []byte(`{"jsonrpc":"2.0","id":1,"method":"album.crop.delete","params":{"album_id":"018f3a80-1c2d-7e00-9a00-0b1c2d3e4f50","code":"hero"}}`)
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)

Try it

Sends a real request to /rpc from your browser. Paste a bearer token above — a JWT access token or a personal access token (pnt_…).