Cellsite Routing
Cellsite Routing
The CellsiteRouting
selects an exit according to the value of the service key
supplied in the initial DP.
The CellsiteRouting
operation must have at least one cellsite exit configured.
Config Parameters
The CellsiteRouting
operation config
attributes are as follows.
Parameter | Type | Description |
---|---|---|
cellsites
|
Array of String |
[Required] The cellsite Array is an Array of cellsite names. This Array must contain two or more Strings, the first String in the Array must be the `No match found` entry.
|
Example Operation
Here is an example CellsiteRouting
operation in JSON representation.
{
"type": "CellsiteRouting",
"id": "7",
"base_node": "7",
"exits": [ 1, 3, 6 ],
"config": {
"cellsites": ["No match found", "WLG", "MSTN"]
}
}
The index for each cellsite matches the index for their corrosponding exit in the exits Array.
In this example, calls from cellsite WLG
will proceed down exit index 1
to operation ID 3
, while calls
from cellsite MSTN
will proceed down exit index 2
to operation ID 6
and all other calls will
exit down exit index 0
to operation ID 1
.
Exits
The first exit is always the “No match found” exit.
Exit Index | Name | Description |
---|---|---|
`0` | Exit #1 (No match found) |
[Required]
All CellsiteRouting operations must have a no match exit.
|
1
|
Exit #1 |
[Required]
All CellsiteRouting operations must have at least one cellsite exit configured.
|
2
|
Exit #3 + | Additional exits may be present. |