Skip to main content

Unsubscribe API

The Unsubscribe API allows users to stop following a specific domain, effectively halting the delivery of all associated signals and updates to that user.

Endpoint Details:

Input Parameters

Required Headers:

HeaderValue TypeRequiredDescription
Admin-Api-keystringyesAdmin-level API key of the organization
Content-TypestringyesMust be application/json

Request Body Parameters:

ParameterTypeRequiredDescription
domainstringyesCompany Domain which needs to be unsubscribed

Sample

Request

curl --location 'https://signals.smarte.pro/signals/domains/unsubscribe' \
--header "Api-Key":"mIGxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxHJY=",
'Content-Type: application/json' \
--data '{
"domain":"nividous.com"
}'

Response

{
"status": "success",
"message": "Domain successfully unfollowed."
}