curl --request POST \
--url https://app.loops.so/api/v1/contacts/delete \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>",
"userId": "<string>"
}
'{
"success": true,
"message": "Contact deleted."
}
Delete a contact by email address or user ID.
curl --request POST \
--url https://app.loops.so/api/v1/contacts/delete \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>",
"userId": "<string>"
}
'{
"success": true,
"message": "Contact deleted."
}
email or userId value.
userId value.404 Not Found will be returned. All other errors will be 400 Bad Request.
{
"success": true,
"message": "Contact deleted."
}
Was this page helpful?