# Remove 911

{% hint style="warning" %}
This API endpoint requires the **Standard** version of Sonoran CAD or higher. For more information, see our [pricing ](https://docs.sonoransoftware.com/cad/pricing/faq)page.
{% endhint %}

This framework export handles the [Remove Emergency Call API endpoint](https://docs.sonoransoftware.com/cad/api-integration/api-endpoints/emergency/dispatch-and-emergency-calls/remove-911).

```javascript
function remove911(callId) {
  exports["sonorancad"].performApiRequest({
    serverId: GetConvar("sonoran_serverId", 1),
    callId: callId
  }, "REMOVE_911", function(_) {
  });
}
```

### Parameters

| Property | Type    | Description       |
| -------- | ------- | ----------------- |
| `callId` | Integer | Call ID to remove |
