Skip to content

NRM API

All API requests must include an API key in the header:

X-ApiKey: YOUR_API_KEY_HERE

If the key is missing or invalid, the server will return a 401 Unauthorized response.

https://app.outboundani.com/nrm

Submits a request for a specific ANI to be remedated.

  • Method: POST
  • URL: /remedate.php
  • Headers:
    • X-ApiKey: YOUR_API_KEY_HERE
    • Content-Type: application/json

Body Schema:

type Payload = {
ani: string;
};

Body Example:

{
"ani": "1234567890"
}

Success Response:

{
"status": "recieved request",
"ani": "1234567890"
}
Terminal window
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" }'