Skip to content

Latest commit

 

History

History
72 lines (61 loc) · 1.32 KB

put-images.md

File metadata and controls

72 lines (61 loc) · 1.32 KB

http://api.molis.io/v1/images

Batch update images.

  • HTTP method: PUT
  • Token required: Yes

Parameters

All parameters are optional, unless otherwise indicated.

Name Description Example
token required OAuth token ?token=ABC123

Request fields

The endpoint expects an array of objects with the following fields:

Name Description Type Example / possible value
id required Id of the image to update String "c76ea9d013cb47a1b85ae773578ab089"
tags required Updated array of object's with tag id Array
[
  {
    "id":"0b0497eedeb14c8eb6aaae22d0170eff"
  },
  {
    "id":"0d5de286f32741e580a4aa2ba6cc3648"
  }
]

Response fields

An array of created image objects.

Examples

todo

Errors (endpoint specific)

Error for not existing image id

[
  {
    "id":"bb8ce3f6c0844ecb939627c30f0a9160", // not existing
    "error":"image_error"
  }
]