Choose a record
Add a fictional case above. Its case number is the value your caller or application will submit.
GN-04 · MOCK CRM TEST ENVIRONMENT
Add fictional CRM cases here, then let an IVR flow look them up from the caller’s DTMF input.
CASE DIRECTORY
API QUICKSTART
No account or API key is required. Send a case number and receive a small JSON response indicating whether that case exists.
Add a fictional case above. Its case number is the value your caller or application will submit.
Call the endpoint with caseNumber as a query parameter. No request body is needed.
Branch your flow using the Boolean found field. Case details are included when it is true.
GET https://cases.sazrika.org/api/cases?caseNumber=1001
curl "https://cases.sazrika.org/api/cases?caseNumber=1001"
CASE FOUND · HTTP 200
{
"found": true,
"case": {
"caseNumber": "1001",
"subject": "Test connectivity case",
"status": "Open",
"contactName": "Firstname Lastname"
}
}CASE NOT FOUND · HTTP 200
{
"found": false,
"case": null
}IVR RECIPE
https://cases.sazrika.org/api/casescaseNumberAccept: application/json$.found