Get Item label
GET
/v1/labelmaker/item/{id}
const url = 'https://example.com/api/v1/labelmaker/item/example';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 https://example.com/api/v1/labelmaker/item/example \ --header 'Authorization: <Authorization>'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
Item ID
Query Parameters
Section titled “Query Parameters ” print
boolean
Print this label, defaults to false
Responses
Section titled “ Responses ”Image/png
Media type application/json
string
Example generated
example