Skip to content

Search Images

Tool name: list-email-editor-images

Lists the images in a KlickTipp account's image library -- the files the email editor's file manager shows -- sorted by path, with the public URL, path, file name, MIME type, size and upload time of each. The URL is what an image block takes in update-email-editor-image-block (field src); a placeholder in that field resolves to nothing. The search matches file names and folder paths, not what a picture shows; dimensions are not part of a listing. Paged by cursor. Reads the account the access token belongs to, or one of its subaccounts when an account ID is given. To add a picture that is not in the library: open-email-editor-image-upload opens a form the user picks a file in, upload-email-editor-image-from-url adds one from a public URL.

Input schema

limitnull or integer, [ 1 .. 100 ]

Images per page, 1 to 100; default 20

Default:null
cursornull or string, <= 1000 characters

nextCursor of the previous page; omit for the first page

Default:null
accountIdnull or integer, >= 1

User ID of the account; omit for the account the access token works in

Default:null
Input example
{ "limit": null, "cursor": null, "accountId": null }

Output schema

accountIdintegerrequired
countintegerrequired
hasNextPagebooleanrequired
nextCursorstring or nullrequired
imagesArray of objectsrequired
Output example
{ "accountId": 0, "count": 0, "hasNextPage": true, "nextCursor": "string", "images": [ { "url": "string", "path": "string", "fileName": "string", "mimeType": "string", "sizeBytes": 0, "uploadedAt": "string", "width": 0, "height": 0 } ] }