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_idstringrequiredThe ID of the tracking domain to delete.
Response Fields
objectstringAlways "tracking_domain".
idstringThe tracking domain ID.
deletedbooleanAlways true.
curl -X DELETE 'https://api.postflare.app/tracking-domains/a1b2c3d4-1234-5678-abcd-000000000001' \
-H 'Authorization: Bearer re_xxxxxxxxx'Response
{
"object": "tracking_domain",
"id": "a1b2c3d4-1234-5678-abcd-000000000001",
"deleted": true
}