Create
Creates a campaign.
The thumbnails
and proof
will not be populated
immediately since they are renedered in the background, you should check
periodically for them until they are available.
Form Data Parameters
The postage class of the mail piece, either first_class
or standard
The size of the postcard (height x width), one of:
self_mailer_6x18
- self mailer with the size of6in x 18in
self_mailer_12x9
- self mailer with the size of12in x 9in
postcard_6x11
- postcard with the size of6in x 11in
postcard_6x9
- postcard with the size of6in x 9in
postcard_4x6
- postcard with the size of4in x 6in
letter
- letter with the size of8.5in x 11in
The designs of the postcard / letter, each can be either a file
or an url
in any of the following formats:
- HTML file containing the contents of the mailpiece.
- Image file matching the size of the mailpiece at 300dpi plus the bleed.
- PDF file matching the size of the mailpiece plus the bleed.
The CSV file containing the addresses to send to with the following columns
(in order): Name,Address,City,State,Zip
.
If the Name
column is empty the name will default to Current Resident
The name of one of the recipients.
The address of one of the recipients.
The city of one of the recipients.
The state of one of the recipients.
The zip of one of the recipients.
The sender's name for the return address.
The sender's company name for the return address.
The sender's street address.
The sender's city.
The sender's state.
The sender's zip code in either ZIP5 or ZIP5+ZIP4 format.
false
Controls whether or not to send a copy of the mail piece to the sender's address. If true
the total number of mailpieces will be increased by 1.
The JSON representation of the property filters.
The key of any additional information (metadata) to store with the campaign. For examples check the Making Requests page.
The value of the additional information (metadata) to store with the campaign. For examples check the Making Requests page.
curl -X POST https://api.realmailers.com/v1/campaigns \
-H 'Authorization: Bearer YOUR_API_KEY' \
-F "postage_class"="first_class" \
-F "size"="postcard_4x6" \
-F "designs[]"="https://www.example.com/front.jpg" \
-F "designs[]"="https://www.example.com/back.jpg" \
-F "sender[name]"="JOHN SMITH" \
-F "sender[address_line1]"="20 W 34TH ST" \
-F "sender[address_city]"="NEW YORK" \
-F "sender[address_state]"="NY" \
-F "sender[address_zip]"="10001"
{
scheduled_at: Timestamp(ISO8601)
created_at: Timestamp(ISO8601)
updated_at: Timestamp(ISO8601)
sent_at: Timestamp(ISO8601)
expected_delivery_date: String
send_copy_to_sender: Boolean
recipient_count: Number
property_filter: JSON
postage_class: String
template_id: Number
status: String
price: String
proof: URL
size: Size
id: Number
thumbnails: Array(URL)
designs: Array(URL)
exposed_addresses: Array({
address_country: String
address_line1: String
address_state: String
address_city: String
address_zip: String
variables: JSON
company: String
name:String
})
sender: {
address_country: String
address_line1: String
address_state: String
address_city: String
address_zip: String
variables: JSON
company: String
name:String
}
meta_data: {
key: String
}
}