Send a personalized outreach email to an audience
POST
/admin/outreach/send
const url = 'http://localhost:8000/api/v1/admin/outreach/send';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/send \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”Sent
Not an admin
Validation error