Get widget image
GET
/v1/widget/image/{image_name}
const url = 'https://example.com/v1/widget/image/example';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/v1/widget/image/example \ --header 'Authorization: Bearer <token>'Return the image associated with a widget.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”image_name
required
string
Responses
Section titled “Responses”No response body