Reterminate Service
Reterminate Service
The ReterminateService
performs a Connect to a prefixed service number. This can also have the
Mobile Location Indicator (MoLI) appended.
If append_moli
is 1
, then the processing is as follows:
- Perform an unconditional termination to
<prefix>
+<Toll-Free-Number>
+<MoLI>
The <prefix>
is the routing_prefix
value configured for this operation, e.g. 502
.
The Toll-Free-Number is the Toll-Free Service Number as dialled by the caller. The
three MoLI digits are appended to the connection string when returning back to the
controlling switch. If no valid MoLI was received, then a configurable Missing MoLI
value (e.g. 000
) is appended instead.
Note that Geographic Routing for MoLI uses a MoLI marker (which is typically *
) as
a prefix for MoLI digits. That MoLI marker is not sent by this operation.
If append_moli
is 0
(or absent), then the processing is as follows:
- Perform an unconditional termination to
<prefix>
+<Toll-Free-Number>
The ReterminateService
operation has no exits.
Config Parameters
The ReterminateService
operation config
attributes are as follows.
Parameter | Type | Description |
---|---|---|
routing_prefix
|
Digits |
[Required] These are the routing digits (e.g. 502 ) prepended to the address for the onwards connection.
|
append_moli
|
Integer |
If present, this must be 1 (Append MoLI) or 0 (Do not Append MoLI).(Default = 0 )
|
missing_moli
|
Digits |
This is the value we use for the MoLI region if append_moli is 1 but MoLI is not present.
This can be any digit string (including the empty string). The GUI may limit the options for
this parameter, e.g. to either 000 or the empty string.(Default = 000 )
|
Example Operation
Here is an example ReterminateService
operation in JSON representation.
{
"id": 5,
"type": "ReterminateService",
"base_node": 13,
"config": {
"routing_prefix": "502",
"append_moli": 1,
"missing_moli": "000"
},
"exits": []
}
In this example, the returned connection string will be prefixed with the digits 502
, and suffixed
with the three-digit MoLI string or 000
if no MoLI information was provided.
Exits
This operation does not support any exits.