GET
/api/v1/context/:identifier?type=email|phone|stripe_customer_idGet relationship context
Auth: Bearer
Request
Path:
identifier = URL-encoded email/phone/customer id
Query:
type = email (default) | phone | stripe_customer_idResponse
{
"lookup": { "type": "email", "identifier": "jane@acme.com" },
"contact_profile": { "id": "...", "summary": "..." },
"financials": { "lifetime_value": 12400 },
"recent_interactions": [],
"workflows": []
}curl
curl -sS \
-H "Authorization: Bearer $SONDEX_API_KEY" \
"https://sondexai.com/api/v1/context/jane%40acme.com?type=email"