GET /image/{id}

Scope

console_ro

Accept

image/*, application/json

This URL retrieves an image uploaded via POST /image by the same user. The id is the unique identifier provided by the POST /image response.

If the image exists and belongs to the user the server sends 200 OK and the image. If the image does not exist the server returns 404 Not Found.

Note

Images which have not been saved with an ad are removed after 30 minutes.

Example

GET /image/9beac3db90c27aa8476cb880a362ceba/b2c11184b33bdd3e12a1f46152d37a89.jpg
Accept: image/*, application/json

200 OK
Content-Type: image/jpg

...image bytes...