Update email tracking defaults

Updates one or both organization email tracking defaults and returns the complete saved policy. Recipient opt-out still takes precedence.

PATCH
/v1/email/tracking/defaults

Updates one or both organization email tracking defaults and returns the complete saved policy. Recipient opt-out still takes precedence.

x-api-key<token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

opens?boolean
clicks?boolean

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X PATCH "https://example.com/v1/email/tracking/defaults" \  -H "Content-Type: application/json" \  -d '{}'
{  "opens": true,  "clicks": true}

Related