Input Schema
{
"body_fields": {
"$defs": {
"ContactRequest": {
"properties": {
"default_region": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "ISO country code hint",
"title": "Default Region"
},
"email": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Email address",
"title": "Email"
},
"phone": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Phone number",
"title": "Phone"
}
},
"title": "ContactRequest",
"type": "object"
}
},
"properties": {
"contacts": {
"description": "List of contacts",
"items": {
"$ref": "#/$defs/ContactRequest"
},
"title": "Contacts",
"type": "array"
}
},
"required": [
"contacts"
],
"title": "ContactBatchRequest",
"type": "object"
},
"body_type": "json",
"discoverable": true,
"header_fields": null,
"method": "POST",
"query_params": null,
"type": "http"
}
Output Schema
{
"$defs": {
"ContactResult": {
"properties": {
"email": {
"anyOf": [
{
"$ref": "#/$defs/EmailResult"
},
{
"type": "null"
}
],
"default": null
},
"phone": {
"anyOf": [
{
"$ref": "#/$defs/PhoneResult"
},
{
"type": "null"
}
],
"default": null
},
"reasons": {
"items": {
"type": "string"
},
"title": "Reasons",
"type": "array"
},
"risk_score": {
"title": "Risk Score",
"type": "integer"
}
},
"required": [
"risk_score",
"reasons"
],
"title": "ContactResult",
"type": "object"
},
"EmailResult": {
"properties": {
"deliverable_domain": {
"title": "Deliverable Domain",
"type": "boolean"
},
"flags": {
"additionalProperties": true,
"title": "Flags",
"type": "object"
},
"normalized": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Normalized"
},
"reasons": {
"items": {
"type": "string"
},
"title": "Reasons",
"type": "array"
},
"risk_score": {
"title": "Risk Score",
"type": "integer"
}
},
"required": [
"normalized",
"deliverable_domain",
"flags",
"risk_score",
"reasons"
],
"title": "EmailResult",
"type": "object"
},
"PhoneResult": {
"properties": {
"e164": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "E164"
},
"flags": {
"additionalProperties": true,
"title": "Flags",
"type": "object"
},
"reasons": {
"items": {
"type": "string"
},
"title": "Reasons",
"type": "array"
},
"region": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Region"
},
"risk_score": {
"title": "Risk Score",
"type": "integer"
},
"type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Type"
}
},
"required": [
"e164",
"region",
"type",
"flags",
"risk_score",
"reasons"
],
"title": "PhoneResult",
"type": "object"
}
},
"properties": {
"count": {
"title": "Count",
"type": "integer"
},
"results": {
"items": {
"$ref": "#/$defs/ContactResult"
},
"title": "Results",
"type": "array"
}
},
"required": [
"results",
"count"
],
"title": "ContactBatchResult",
"type": "object"
}