curl --request GET \
--url https://app.loops.so/api/v1/contacts/suppression \
--header 'Authorization: Bearer <token>'{
"contact": {
"id": "cll6b3i8901a9jx0oyktl2m4u",
"email": "adam@loops.so",
"userId": null
},
"isSuppressed": true,
"removalQuota": {
"limit": 0,
"remaining": 0
}
}
Check if a contact is suppressed by email address or user ID.
curl --request GET \
--url https://app.loops.so/api/v1/contacts/suppression \
--header 'Authorization: Bearer <token>'{
"contact": {
"id": "cll6b3i8901a9jx0oyktl2m4u",
"email": "adam@loops.so",
"userId": null
},
"isSuppressed": true,
"removalQuota": {
"limit": 0,
"remaining": 0
}
}
400 Bad Request will be returned.
If no contact is found, a 404 Not Found will be returned.
{
"contact": {
"id": "cll6b3i8901a9jx0oyktl2m4u",
"email": "adam@loops.so",
"userId": null
},
"isSuppressed": true,
"removalQuota": {
"limit": 0,
"remaining": 0
}
}
Was this page helpful?