Delete Tracking Domain

Delete a tracking domain by ID.

DELETE/tracking-domains/{tracking_domain_id}

Requires a full_access API key.

Path Parameters

tracking_domain_idstringrequired

The ID of the tracking domain to delete.

Response Fields

objectstring

Always "tracking_domain".

idstring

The tracking domain ID.

deletedboolean

Always true.

curl -X DELETE 'https://api.postflare.app/tracking-domains/a1b2c3d4-1234-5678-abcd-000000000001' \
  -H 'Authorization: Bearer re_xxxxxxxxx'

Response

Response
{
  "object": "tracking_domain",
  "id": "a1b2c3d4-1234-5678-abcd-000000000001",
  "deleted": true
}