Images
+ Attributes (Image create data)
Section:
Group Images. Base URL:https://api.instance_name.meiro.io/.
Images [/sdk/images]
Store new image [POST]
-
Attributes (Image create data)
-
Request (application/json)
-
Headers
X-Access-Token: 1234567890abcdef
-
-
Response 200 (application/json)
{
"url": "https://image.url"
}Update existing image [PUT]
-
Attributes (Image create data)
-
Request (application/json)
-
Headers
X-Access-Token: 1234567890abcdef
-
-
Response 200 (application/json)
{
"url": "https://image.url"
}Image [/sdk/images/{filename}]
Copy image [POST]
-
Attributes (Image copy data)
-
Request (application/json)
-
Headers
X-Access-Token: 1234567890abcdef
-
-
Response 200 (application/json)
{
"url": "https://image.url"
}- Response 400 (application/json)
{
"message": "File {filename} doesn't exist"
}- Response 400 (application/json)
{
"message": "File {name} already exists"
}Delete image [DELETE]
- Response 200 (application/json)
{
"url": "https://image.url"
}- Response 400 (application/json)
{
"message": "File {filename} doesn't exist"
}