- Joined
- Dec 12, 2024
- Messages
- 3
- Reaction score
- 0
We need to activate a script for remote meter reading for a new customer.
The system is currently running on Calliope and works according to the following flow:
1. Play the audio message idrotelaudio/benvenuti.
2. Forward the call to the IVR IdrotelIVR.
3. Play the audio message idrotelaudio/per_iniziare_prema_il_tasto_cancelletto.
4. If the caller presses #, route the call to CHECK_UTENTE_1ST; otherwise, hang up.
5. Play the audio message idrotelaudio/componga_il_codice_idrotel and wait for a parameter (PARAM1), which is a 9-digit customer code.
6. Perform an HTTP request to:
http://192.168.0.117:9290/default.aspx?arg1=%UNIQUE_ID%&arg2=%CALLER_NUM%&arg3=%PARAM1%
7. UNIQUE_ID is a unique identifier for the call, CALLER_NUM is the caller’s phone number, and PARAM1 is the entered customer code.
8. Based on the response, route the call to CHECK_LETTURA_1ST.
9. Play the audio message idrotelaudio/fornisca_la_lettura_del_contatore and wait for a parameter (PARAM1), which is a numeric value from 1 to 10 digits (meter reading).
10. Perform a second HTTP request to:
http://192.168.0.117:9290/default.aspx?arg1=%UNIQUE_ID%&arg2=%CALLER_NUM%&arg4=%PARAM1%
11. UNIQUE_ID is the unique call identifier, CALLER_NUM is the caller’s phone number, and PARAM1 is the entered meter reading.
12. In case of a successful response, play the audio message idrotelaudio/lettura_acquisita.
13. Hang up the call.
The system is currently running on Calliope and works according to the following flow:
1. Play the audio message idrotelaudio/benvenuti.
2. Forward the call to the IVR IdrotelIVR.
3. Play the audio message idrotelaudio/per_iniziare_prema_il_tasto_cancelletto.
4. If the caller presses #, route the call to CHECK_UTENTE_1ST; otherwise, hang up.
5. Play the audio message idrotelaudio/componga_il_codice_idrotel and wait for a parameter (PARAM1), which is a 9-digit customer code.
6. Perform an HTTP request to:
http://192.168.0.117:9290/default.aspx?arg1=%UNIQUE_ID%&arg2=%CALLER_NUM%&arg3=%PARAM1%
7. UNIQUE_ID is a unique identifier for the call, CALLER_NUM is the caller’s phone number, and PARAM1 is the entered customer code.
8. Based on the response, route the call to CHECK_LETTURA_1ST.
9. Play the audio message idrotelaudio/fornisca_la_lettura_del_contatore and wait for a parameter (PARAM1), which is a numeric value from 1 to 10 digits (meter reading).
10. Perform a second HTTP request to:
http://192.168.0.117:9290/default.aspx?arg1=%UNIQUE_ID%&arg2=%CALLER_NUM%&arg4=%PARAM1%
11. UNIQUE_ID is the unique call identifier, CALLER_NUM is the caller’s phone number, and PARAM1 is the entered meter reading.
12. In case of a successful response, play the audio message idrotelaudio/lettura_acquisita.
13. Hang up the call.