Retrieve a summary of spam flags that have been removed across carriers within a specified time period. This endpoint provides counts of flags removed for AT&T, Rogers/Bell, T-Mobile, Verizon, and Total flags removed.
Request
Your API Key (LoginId from your DNCScrub account)
Query Parameters
Number of days to look back. Minimum is 1, maximum is 90. Defaults to 7.
Example Request
curl --location --request GET \
'https://dataapi.dncscrub.com/v1.5/TrustCall/FlagsRemovedSummary?days=30' \
--header 'loginId: YOUR_API_KEY'
{
"Att": 5,
"Tmobile": 12,
"Verizon": 8,
"RogersBell": 0,
"Total": 25
}
Response Fields
Number of AT&T flags removed in the specified period. For Canadian accounts, this will be 0.
Number of T-Mobile flags removed in the specified period
Number of Verizon flags removed in the specified period
Number of Rogers/Bell flags removed in the specified period. For US accounts, this will be 0.
Total number of flags removed across all supported carriers in the specified period
Error Responses
| Status | Description |
|---|
| 400 Bad Request | Invalid days parameter (must be between 1 and 90) |
| 401 Unauthorized | Invalid or missing API key |