DELETE
/
email_blasts
/
{id}
curl --request DELETE \
  --url https://api.pocketflows.com/email_blasts/{id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "id": "<string>",
  "name": "<string>",
  "email_template": "<string>",
  "one_off_email_template": "<string>",
  "subject": "<string>",
  "template_json": "<any>",
  "enrolled_customers": [
    "<string>"
  ],
  "excluded_customers": [
    "<string>"
  ],
  "segment": "<string>",
  "email_address": "<string>",
  "status": "<string>",
  "scheduled_at": "<string>"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

id
string
required

The ID of the email blast

Response

200 - application/json

The deleted EmailBlast object

The response is of type object.