Skip to main content
GET
/
campaigns
/
{campaignId}
curl --request GET \
  --url 'https://api.autosend.com/v1/campaigns/60d5ec49f1b2c72d9c8b4567' \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "campaignId": "60d5ec49f1b2c72d9c8b4567",
    "name": "Spring Sale Newsletter",
    "subject": "Don't miss our Spring Sale!",
    "previewText": "Up to 50% off this weekend only",
    "status": "draft",
    "sendMode": "immediate",
    "from": {
      "email": "[email protected]",
      "name": "Example Team"
    },
    "replyTo": "[email protected]",
    "templateId": "60d5ec49f1b2c72d9c8b1234",
    "toLists": ["60d5ec49f1b2c72d9c8b0001"],
    "excludeLists": [],
    "unsubscribeGroupId": "60d5ec49f1b2c72d9c8b0099",
    "trackingClick": true,
    "trackingOpen": true,
    "scheduledAt": null,
    "timezone": "America/New_York",
    "createdAt": "2026-03-01T10:00:00.000Z",
    "updatedAt": "2026-03-15T14:30:00.000Z"
  }
}
curl --request GET \
  --url 'https://api.autosend.com/v1/campaigns/60d5ec49f1b2c72d9c8b4567' \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "campaignId": "60d5ec49f1b2c72d9c8b4567",
    "name": "Spring Sale Newsletter",
    "subject": "Don't miss our Spring Sale!",
    "previewText": "Up to 50% off this weekend only",
    "status": "draft",
    "sendMode": "immediate",
    "from": {
      "email": "[email protected]",
      "name": "Example Team"
    },
    "replyTo": "[email protected]",
    "templateId": "60d5ec49f1b2c72d9c8b1234",
    "toLists": ["60d5ec49f1b2c72d9c8b0001"],
    "excludeLists": [],
    "unsubscribeGroupId": "60d5ec49f1b2c72d9c8b0099",
    "trackingClick": true,
    "trackingOpen": true,
    "scheduledAt": null,
    "timezone": "America/New_York",
    "createdAt": "2026-03-01T10:00:00.000Z",
    "updatedAt": "2026-03-15T14:30:00.000Z"
  }
}

Authorizations

Authorizations
string | header
required
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

campaignId
string
required
The id of the campaign to retrieve.

Response

Returns the full campaign object for the given ID.
success
boolean
Indicates whether the request was successful.
data
object
The campaign object.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer , where is your auth token.

Path Parameters

campaignId
string
required

Id of the campaign.

Response

Campaign returned successfully.

success
boolean
Example:

true

data
object