Test an IVR number with roastmyivr.com APIs
git clone https://github.com/isaachamid/roastmyivr.git
cd roastmyivr
https://developer.roastmyivr.com/
rename .env.example file to .env file and put your ROST IVR credentials
npm install
npm start
HTTP Method | URL |
---|---|
POST | http://localhost:3000/ivr/start |
Body (application/json):
{
"telephoneNumber": "61XXXXXXXXX",
"findHiddenMenus": true,
"webhookUrl": "string"
}
HTTP Method | URL |
---|---|
GET | http://localhost:3000/ivr/:ivrId |
HTTP Method | URL |
---|---|
PATCH | http://localhost:3000/ivr/:ivrId/terminate |
Body (application/json):
{
"task": "FailProcess"
}
OR
Body (application/json):
{
"task": "GenerateReportImmediately"
}
OR
Body (application/json):
{
"task": "GenerateReportAsSoonAsPossible"
}
HTTP Method | URL |
---|---|
PATCH | http://localhost:3000/ivr/:ivrId/cancel-retry |