Searching accounts...
No match found
Try lowering the threshold or using a different search term.
API Documentation
Endpoint: fuzzy_match_api.php
GET Request Example:
GET /fuzzy_match_api.php?name=Acme&threshold=60&algorithm=all
POST Request Example:
{
"name": "Acme Corporation",
"threshold": 60,
"algorithm": "all"
}
Response Format (Single Best Match):
{
"success": true,
"data": {
"salesforce_id": "001XXXXXXXXXXXX",
"account_name": "Acme Corporation",
"account_number": "ACC-12345",
"type": "Customer",
"industry": "Technology",
"phone": "555-0123",
"website": "https://acme.com",
"last_modified_date": "2024-11-20 14:30:00",
"match_score": 95,
"algorithm_scores": {
"levenshtein": 90,
"jaro_winkler": 95,
"soundex": 100
}
},
"meta": {
"search_query": "Acme Corporation",
"algorithm": "all",
"threshold": 50,
"execution_time_ms": 45.2
}
}
No Match Response:
{
"success": true,
"data": null,
"meta": {...}
}