Updates an existing project.

Request Fields

Key Type Description
id string
Required*
A project ID returned by list_projects or obtained by a previous create_project call.
uid string
Required*
An identifier to refer to this project on subsequent API calls.
label string
Optional
A name for this project.
group string
Optional
A grouping label used to organize one or more projects into logical groups.
open_tracking boolean
Optional
Set to true to engage open tracking by default for email sent through this project. This requires introducing an invisible tracking element in all sent emails.
click_tracking boolean
Optional
Set to true to engage open tracking by default for email sent through this project. This requires introducing an invisible tracking element in all sent emails.
unsubscribe_header boolean
Optional
Set to true to to add a List-Unsubscribe header on all email sent through this project.

* One of id or uid must be supplied in order to identify which project to update. If both are supplied the id key has priority and the project’s uid will be changed to the supplied value.

Request Example

{
  "api_key" : "__ACCOUNT_API__KEY__",
  "arguments": {
    "uid": "example-project",
    "label": "Example Project",
    "group": "Examples",
    "click_tracking": true
  }
}