Deletes a project associated with the account API key used.

Note that this effectively deletes sending history, metrics, templates, and other project-specific configuration information.

Request Fields

These are passed in as arguments at the top level of the request.

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.

* 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"
  }
}