# Set Call Postal

{% hint style="warning" %}
This API endpoint requires the **plus** 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 [Set Call Postal API endpoint](https://docs.sonoransoftware.com/cad/api-integration/api-endpoints/emergency/dispatch-and-emergency-calls/update-call-postal).

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

### Parameters

| Property | Type    | Description                |
| -------- | ------- | -------------------------- |
| `callId` | Integer | Call ID to add the note to |
| `postal` | Integer | Postal to add to the call  |
