Get All Email Campaigns
GET
/email-campaigns
Email Marketing
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://rest.clicksend.com/v3/email-campaigns'
Response Response Example
{
"data": {
"current_page": 1,
"data": [
{
"abuse_count": 0,
"click_count": 0,
"custom_string": "",
"date_added": "1455586793",
"email_campaign_id": 64,
"from_email_address_id": 2,
"from_name": "Test name",
"hard_bounce_count": 0,
"list_id": 443,
"name": "test email",
"open_count": 5,
"schedule": "",
"send_count": 0,
"soft_bounce_count": 0,
"status": "Sent",
"subaccount_id": 1038,
"subject": "My test subject",
"template_id": 24,
"unsubscribe_count": 0,
"user_id": 1201
},
{
"abuse_count": 0,
"click_count": 0,
"custom_string": "",
"date_added": "1455586848",
"email_campaign_id": 65,
"from_email_address_id": 2,
"from_name": "Test name",
"hard_bounce_count": 0,
"list_id": 443,
"name": "test email",
"open_count": 0,
"schedule": "",
"send_count": 0,
"soft_bounce_count": 0,
"status": "Queued",
"subaccount_id": 1038,
"subject": "My test subject",
"template_id": 24,
"unsubscribe_count": 0,
"user_id": 1201
}
],
"from": 1,
"last_page": 1,
"next_page_url": null,
"per_page": 15,
"prev_page_url": null,
"to": 5,
"total": 5
},
"http_code": 200,
"response_code": "SUCCESS",
"response_msg": "Here are your email campaigns"
}
Request
None