EmailOctopus logo

API > Campaigns > Get All Campaigns

GET https://emailoctopus.com/api/1.6/campaigns

Get details of all campaigns.

Parameters
api_key (string) Your API key.
limit (integer) The number of records to return per page, up to a maximum of 100. Defaults to 100.
page (integer) A specific page to return records from. Defaults to 1.
200 (success) returns
data (array of structs)

Details of each campaign:

id (string) The identifier of the campaign.
status (string) The status of the campaign (DRAFT/SENDING/SENT/ERROR).
name (string) The name of the campaign.
subject (string) The subject of the campaign.
to (array) The ids of the lists the campaign was sent to.
from (struct)

The sender of the campaign:

name (string) The name the campaign was sent from.
email_address (string) The email address the campaign was sent from.
content (struct)

The content of the campaign:

html (string) The campaign's HTML content.
plain_text (string) The campaign's plain text content.
created_at (string) When the campaign was created, in ISO 8601 format.
sent_at (string) When the campaign was sent, in ISO 8601 format.
paging (struct)

URLs to navigate the results:

previous (nullable string) A link for the immediate previous page of results.
next (nullable string) A link for the immediate next page of results.
Non-200 (error) returns

Details of the error:

code (string) The error code.
message (string) A description of the error.
Method-specific error codes
None.
API-wide error codes
INVALID_PARAMETERS Parameters are missing or invalid.
API_KEY_INVALID Your API key is invalid.
UNAUTHORISED You're not authorised to perform that action.
NOT_FOUND The requested endpoint does not exist.
UNKNOWN An unknown error has occurred.
Example request
/api/1.6/campaigns?api_key=00000000-0000-0000-0000-000000000000
Example response
                        
                            {
                                "data": [
                                    {
                                        "id": "00000000-0000-0000-0000-000000000000",
                                        "status": "SENT",
                                        "name": "Foo",
                                        "subject": "Bar",
                                        "to": [
                                            "00000000-0000-0000-0000-000000000001",
                                            "00000000-0000-0000-0000-000000000002"
                                        ],
                                        "from": {
                                            "name": "John Doe",
                                            
                                            "email_address": "john.doe@gmail.com"
                                            
                                        },
                                        "content": {
                                            "html": "<html>Foo Bar<html>",
                                            "plain_text": "Foo Bar"
                                        },
                                        "created_at": "2024-04-15T08:40:55+00:00",
                                        "sent_at": "2024-04-16T08:40:55+00:00"
                                    },
                                    {
                                        "id": "00000000-0000-0000-0000-000000000003",
                                        "status": "SENT",
                                        "name": "Bar",
                                        "subject": "Foo",
                                        "to": [
                                            "00000000-0000-0000-0000-000000000004",
                                            "00000000-0000-0000-0000-000000000005"
                                        ],
                                        "from": {
                                            "name": "Jane Doe",
                                            
                                            "email_address": "jane.doe@gmail.com"
                                            
                                        },
                                        "content": {
                                            "html": "<html>Bar Foo<html>",
                                            "plain_text": "Bar Foo"
                                        },
                                        "created_at": "2024-04-17T08:40:55+00:00",
                                        "sent_at": "2024-04-18T08:40:55+00:00"
                                    }
                                ],
                                "paging": {
                                    "next": null,
                                    "previous": null
                                }
                            }
                        
                    
Code sample
copy