Here you can see if the folder has a parent and which dept it has in the tree which can be used to render a tree with different levels.
Listing files
The files can be listed from a folder on the endpoint:
GET https://api.mediaflow.com/1/folder/{{id}}/files?fields=id,name,filename,filesize, type,smallPreview,thumbPreview,mark,uploaded,uploadedby,gdprstatus,gdprtype,mediaid,alttext&type=any&processed=true
This will give you an array of files from the folder like this:
You can search the files by a text query on the endpoint:
GET https://api.mediaflow.com/1/search/file?query=xxxx&fields=id,name,filename,filesize, type,smallPreview,thumbPreview,mark,uploaded,uploadedby,gdprstatus,gdprtype,mediaid,alttext
The 0 in the url means that you want to download the original image. But you can specify the id for a specific format from Mediaflow. You can use the format endpoint to get a list of all available formats:
https://api.mediaflow.com/1/format
If you use -1 instead of an id this means you want a custom format. This can be used with a cropper to specify how you want to crop the image. So you also need to send a few query parameters for this to work.
w = Width of the format you want to output
h = Height of the format you want to output
sh = Height of the surface you are scaling against
sw = Width of the surface you are scaling against
x1 = X coordinate on the left edge
x2 = X coordinate in the right edge
y1 = Y coordinate at the top
y2 = Y coordinate at the bottom
stretch = is set to 1 if the image is to be stretched to the specified format
If you add all these parameters to a download link, it might look something like this: