Skip to main content
POST
https://dataapi.dncscrub.com
/
v1.5
/
TrustCall
/
Remove
Remove Phone Numbers
curl --request POST \
  --url https://dataapi.dncscrub.com/v1.5/TrustCall/Remove \
  --header 'Content-Type: <content-type>' \
  --header 'loginId: <loginid>'
[
  {
    "Phone": "5039367187",
    "Response": "Phone number removed from monitor"
  },
  {
    "Phone": "8084565302",
    "Response": "Phone number removed from monitor"
  }
]
Remove phone numbers from TrustCall monitoring. Removed numbers will no longer be tracked for carrier spam scores.

Request

Headers

loginId
string
required
Your API Key (LoginId from your DNCScrub account)
Content-Type
string
required
Must be application/json

Request Body

The request body is a JSON array of 10-digit phone number strings:
["5039367187", "8084565302"]

Example Request

curl --location --request POST \
  'https://dataapi.dncscrub.com/v1.5/TrustCall/Remove' \
  --header 'loginId: YOUR_API_KEY' \
  --header 'Content-Type: application/json' \
  --data-raw '["5039367187", "8084565302"]'
[
  {
    "Phone": "5039367187",
    "Response": "Phone number removed from monitor"
  },
  {
    "Phone": "8084565302",
    "Response": "Phone number removed from monitor"
  }
]

Response Fields

Phone
string
The phone number that was removed
Response
string
Status message indicating the result of the remove operation

Error Responses

400 Bad Request
Invalid request body or phone number format
401 Unauthorized
Invalid or missing API key