NRM API
Authentication
Section titled “Authentication”All API requests must include an API key in the header:
X-ApiKey: YOUR_API_KEY_HEREIf the key is missing or invalid, the server will return a 401 Unauthorized response.
Base URL
Section titled “Base URL”https://app.outboundani.com/nrmEndpoints
Section titled “Endpoints”Remedate ANI
Section titled “Remedate ANI”Submits a request for a specific ANI to be remedated.
- Method:
POST - URL:
/remedate.php - Headers:
X-ApiKey: YOUR_API_KEY_HEREContent-Type: application/json
Body Schema:
type Payload = { ani: string;};Body Example:
{ "ani": "1234567890"}Success Response:
{ "status": "recieved request", "ani": "1234567890"}Example
Section titled “Example”curl -X POST \ https://app.outboundani.com/nrm/remedate.php \ -H 'X-ApiKey: YOUR_API_KEY_HERE' \ -H 'Content-Type: application/json' \ -d '{ "ani": "1234567890" }'