Project Email Addresses
List all project email addresses
Email Templates
- The Email Template object
- GETList all email templates for a business
- POSTCreate an email template
- POSTCreate a new email template using AI
- POSTCopy a project email template into a specific business
- GETRetrieve an email template
- GETPreview an email template
- GETPreview an email template as an image
- POSTUpdate an email template
- DELDelete an email template
Email Template Embeds
Project Email Templates
Business Email Addresses
Project Email Addresses
Emails
SMS Templates
SMS Template Embeds
SMS Messages
Business Phone Numbers
Project Phone Numbers
Campaigns
- The Campaign object
- The Campaign Execution object
- GETList all campaigns
- POSTCreate a campaign
- GETRetrieve a campaign
- GETView a campaign interactively
- GETPreview a campaign
- GETPreview a campaign as an image
- POSTUpdate a campaign
- POSTStart a campaign
- POSTStop a campaign
- DELDelete a campaign
- GETGet the executions of a campaign
Campaign Embeds
Triggers
Project Email Addresses
List all project email addresses
GET
/
project_email_addresses
curl --request GET \
--url https://api.pocketflows.com/project_email_addresses \
--header 'Authorization: Basic <encoded-value>'
{
"project_email_addresses": [
{
"id": "<string>",
"email_address": "<string>",
"display_name": "<string>"
}
]
}
Authorizations
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Response
200 - application/json
An object with key `project_email_addresses` which maps to an array of `ProjectEmailAddress` objects
curl --request GET \
--url https://api.pocketflows.com/project_email_addresses \
--header 'Authorization: Basic <encoded-value>'
{
"project_email_addresses": [
{
"id": "<string>",
"email_address": "<string>",
"display_name": "<string>"
}
]
}