Get sticker image
GET
/api/stickers/{stickerId}/image
const url = 'http://localhost:3001/api/stickers/example/image';const options = {method: 'GET', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url http://localhost:3001/api/stickers/example/image \ --header 'Authorization: <Authorization>'Retrieve the actual sticker image data from MeshStorage
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”stickerId
required
string
Sticker ID
Responses
Section titled “Responses”OK
string format: binary
string format: binary
Bad Request
object
error
string
success
boolean
object
error
string
success
boolean
Unauthorized
object
error
string
success
boolean
object
error
string
success
boolean
Not Found
object
error
string
success
boolean
object
error
string
success
boolean
Internal Server Error
object
error
string
success
boolean
object
error
string
success
boolean
