Contacts
Delete a contact
Delete a contact by ID
DELETE
/v1/contacts
Bearer*
curl --request DELETE \
--url https://api.useplunk.com/v1/contacts \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: "application/json"' \
--data '{
"id": "<id>"
}'
Body
idrequired
string
The ID of the contact you want to delete.
Headers
Content-Typerequired
string
application/json
Response
{
"success": true,
"id": "80d74d13-16eb-48c5-bc2b-aae6fd5865cc",
"email": "hello@useplunk.com",
"subscribed": true,
"data": {
"project": "Plunk"
},
"createdAt": "2021-01-01T00:00:00.000Z",
"updatedAt": "2021-01-01T00:00:00.000Z"
}
curl --request DELETE \
--url https://api.useplunk.com/v1/contacts \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: "application/json"' \
--data '{
"id": "<id>"
}'
{
"success": true,
"id": "80d74d13-16eb-48c5-bc2b-aae6fd5865cc",
"email": "hello@useplunk.com",
"subscribed": true,
"data": {
"project": "Plunk"
},
"createdAt": "2021-01-01T00:00:00.000Z",
"updatedAt": "2021-01-01T00:00:00.000Z"
}