Render the outreach email as it will appear to a recipient
POST
/admin/outreach/preview
const url = 'http://localhost:8000/api/v1/admin/outreach/preview';const options = {method: 'POST', 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 POST \ --url http://localhost:8000/api/v1/admin/outreach/preview \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”Rendered HTML
Not an admin