Blacklist Alliance
Check approved phone numbers against Blacklist Alliance data before outreach.
Description
AIM AI can be configured to request a Blacklist Alliance result before a defined outbound step. List selection, permitted purpose, complaint handling, storage, and human escalation are confirmed before implementation.
Authentication
- A Blacklist Alliance API key is required.
- Exact lookup purpose, data handling, and approved actions are confirmed during workflow scoping.
Supported Actions (5)
These are the operations this integration can perform after the required credentials and permissions are approved.
- Lookup single phone number
- Bulk lookup (up to \~1MB payload)
- NEE single (evaluate complaints)
- NEE group (evaluate group of numbers)
- API stats
Examples
Use these representative payloads as a technical starting point, then replace the sample values with the approved workflow data.
Representative workflow configuration for Blacklist Alliance - Lookup Single.
{
"automationType": "blacklist_alliance",
"nodeId": "bla-lookup-001",
"nodeParams": {
"action": "lookup_single",
"params": {
"phone": "+17022918207",
"apiKey": "YOUR_BLACKLIST_ALLIANCE_API_KEY",
"ver": "1",
"resp": "json"
}
}
}Representative workflow configuration for Blacklist Alliance - Bulk Lookup.
{
"automationType": "blacklist_alliance",
"nodeId": "bla-bulk-lookup-001",
"nodeParams": {
"action": "bulk_lookup",
"params": {
"apiKey": "YOUR_BLACKLIST_ALLIANCE_API_KEY",
"phones": ["2223334444", "9999999999"]
}
}
}Representative workflow configuration for Blacklist Alliance - NEE Single.
{
"automationType": "blacklist_alliance",
"nodeId": "bla-nee-single-001",
"nodeParams": {
"action": "nee_single",
"params": {
"apiKey": "YOUR_BLACKLIST_ALLIANCE_API_KEY",
"phone": "2223334444"
}
}
}Representative workflow configuration for Blacklist Alliance - NEE Group.
{
"automationType": "blacklist_alliance",
"nodeId": "bla-nee-group-001",
"nodeParams": {
"action": "nee_group",
"params": {
"apiKey": "YOUR_BLACKLIST_ALLIANCE_API_KEY",
"phones": ["2223334444", "9999999999"]
}
}
}Representative workflow configuration for Blacklist Alliance - API Stats.
{
"automationType": "blacklist_alliance",
"nodeId": "bla-apistats-001",
"nodeParams": {
"action": "api_stats",
"params": {
"apiKey": "YOUR_BLACKLIST_ALLIANCE_API_KEY"
}
}
}