API is in Alpha and may change at any time.
API Resources > Emergency
Close Call
This endpoint allows you to close calls.
Close Call
POST api/v1/emergency/close_call
Request Body
| Name | Type | Description | Default | 
|---|---|---|---|
| call_id | number | Call ID | Required | 
| status | string | Status of Call. List of all status codes options. | Required | 
Example Call
                        
                            
{
"call_id": 123456,
"status": "CLO"
}
                        
                    
                    Responses
200 A successful call.
                        
                            
{
    "success": true,
    "message": "Call closed.",
    "data": []
}
                        
                    
                    200 with validation errors.
                        
                            
{
    "success": false,
    "message": "Validation errors",
    "data": {
        "call_id": [
            "The call id field is required.",
            "The call id must be a number."
        ],
        "status": [
            "The status field is required."
        ],
    }
}
                        
                    
                    200 with call not found.
                        
                            
{
    "success": false,
    "message": "Call not found.",
    "data": []
}
                        
                    
                    200 with status code not found.
                        
                            
{
    "success": false,
    "message": "Status code not found.",
    "data": []
}
                        
                    
                    To update the call status use the Edit Call endpoint.
Status Codes
- CLR - Clear; Needs Report
- CLO - Close; No Report
- CLO-RPT - Report Made
- CLO-SB - Unable To Locate Complaintant
- CLO-SC - Unable To Locate Address
- CLO-SD - Unable To Locate Suspect
- CLO-SL - Verbal Warning
- CLO-SLW - Written Warning
- CLO-SM - Citation Issued
- CLO-SN - Person Arrested
- CLO-SO - Made Contact
- CLO-SR - Other
- CLO-TEST - Test Call Cleared
Still have questions?
Still have questions? Talk to support.