# test alert push destination — NCM API

Sends a test payload to an alert push destination, so you can confirm your webhook receiver is reachable and parsing correctly. Write-only: POST the destination to test, then check your own endpoint for the delivery. Configure the destination itself under alert push destinations.

Base URL: https://www.cradlepointecm.com/api/v2

### POST /test_alert_push_destinations/

Create a new Test Alert Push Destination

<p>This operation creates a new Test Alert Push Destination.</p>

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| X-ECM-API-ID | header | string | yes | <strong>ECM API app Id</strong> |
| X-ECM-API-KEY | header | string | yes | <strong>ECM API app key</strong> |
| X-CP-API-ID | header | string | yes | <strong>Cradlepoint API app Id</strong> |
| X-CP-API-KEY | header | string | yes | <strong>Cradlepoint API access key</strong> |

**Request body**

**Example request**

```bash
curl -X POST "https://www.cradlepointecm.com/api/v2/test_alert_push_destinations/" \
  -H "X-CP-API-ID: <cp-api-id>" \
  -H "X-CP-API-KEY: <cp-api-key>" \
  -H "X-ECM-API-ID: <ecm-api-id>" \
  -H "X-ECM-API-KEY: <ecm-api-key>" \
  -H "Content-Type: application/json" \
  -d '{ ... }'
```

**Response 200** — No response was specified
