PRINT ON DEMAND
CREATE YOUR OWN PRODUCTS!
UPLOAD YOUR FILES AND MOCK THEM UP ON A VARIETY OF ITEMS. SHIP ANYWHERE IN THE USA!
(COMING SOON)
const ewlApiUrl = 'https://ewl.printify.com/'; const ewlApiKey = 'fyul_01KQZJWFFW4GS41RAW1WMHZR39.a4ba043dd8592b81aabba5b0bd67947c'; // const external_customer_id = '12345'; async function getJwtToken() { const response = await fetch(`${ewlApiUrl}/api/v1/authorize`, { method: 'POST', headers: { 'Authorization': `Bearer ${ewlApiKey}`, 'Content-Type': 'application/json', }, body: JSON.stringify({ scopes: ['platform_admin'], external_customer_id, selling_region: 'worldwide', display_currency: 'USD', }), }); if (!response.ok) { throw new Error(`Request failed: ${response.status} ${response.statusText}`); } const data = await response.json(); return { token: data.data.token, }; }