Get All Media
To obtain all media of a project (Media section)
Request
Response
GET https://mburger.cloud/api/media
curl https://mburger.cloud/api/media
-H "Accept: application/json"
-H "X-MBurger-Token: <token>"
-H "X-MBurger-Version: 3"
Name | Type | Required | Description |
image_format | string | No | Specify which image dimension to include in response. Values are thumb, medium, large and original. Default is medium. |
When successful, a HTTP 200 and JSON like this is returned:
{
"status_code": 0,
"body": [
{
"id": 1,
"url": "https://cdn.mburger.cloud/storage/1/conversions/image-medium.jpg",
"size": 12302,
"mime_type": "image/jpeg"
}
]
}
Last modified 2yr ago