Delete a contact
DELETE
/v1/contacts/{contact_id}
await bird.contacts.delete("con_01krdgeqcxet5s7t44vh8rt9mg");client.contacts.delete("con_01krdgeqcxet5s7t44vh8rt9mg")if err := client.Contacts.Delete(context.Background(), "con_123"); err != nil {
log.Fatal(err)
}$bird->contacts->delete('con_01krdgeqcxet5s7t44vh8rt9mg');bird contacts delete <contact-id> --yescurl -X DELETE "https://us1.platform.bird.com/v1/contacts/{contact_id}" \
-H "Authorization: Bearer $TOKEN"Deletes a contact permanently and removes it from every audience it belongs to. Suppression records for the address are not affected: an unsubscribed or bounced address stays suppressed even after the contact is deleted.
Parâmetros
contact_id
string
ID of the contact to delete (con_-prefixed).