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."
}
Documentation Index
Fetch the complete documentation index at: https://loops.so/docs/llms.txt
Use this file to discover all available pages before exploring further.
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?