IPQualityScore
Use approved IPQualityScore risk checks before a phone workflow continues.
Description
AIM AI can be configured to request selected IP, email, phone, or URL risk signals. Thresholds, permitted purpose, automated decisions, storage, and human escalation are confirmed before implementation.
Authentication
- An IPQualityScore API key is required.
- Exact products, thresholds, and approved actions are confirmed during workflow scoping.
Supported Actions (4)
These are the operations this integration can perform after the required credentials and permissions are approved.
- IP lookup (reputation check)
- Email validation
- Phone validation
- URL scan
Examples
Use these representative payloads as a technical starting point, then replace the sample values with the approved workflow data.
Representative workflow configuration for IPQualityScore - IP Lookup.
{
"automationType": "ipqualityscore",
"nodeId": "ipqs-ip-lookup-001",
"nodeParams": {
"action": "ip_lookup",
"params": {
"ip": "8.8.8.8",
"apiKey": "YOUR_IPQS_API_KEY"
}
}
}Representative workflow configuration for IPQualityScore - Email Validate.
{
"automationType": "ipqualityscore",
"nodeId": "ipqs-email-validate-001",
"nodeParams": {
"action": "email_validate",
"params": {
"email": "test@example.com",
"apiKey": "YOUR_IPQS_API_KEY"
}
}
}Representative workflow configuration for IPQualityScore - Phone Validate.
{
"automationType": "ipqualityscore",
"nodeId": "ipqs-phone-validate-001",
"nodeParams": {
"action": "phone_validate",
"params": {
"phone": "+14155552671",
"apiKey": "YOUR_IPQS_API_KEY"
}
}
}Representative workflow configuration for IPQualityScore - URL Scan.
{
"automationType": "ipqualityscore",
"nodeId": "ipqs-url-scan-001",
"nodeParams": {
"action": "url_scan",
"params": {
"url": "https://example.com",
"apiKey": "YOUR_IPQS_API_KEY"
}
}
}