Cellsite Routing

Cellsite Routing

The CellsiteRouting selects an exit according to the cellsite which the caller’s mobile location ID is mapped to in platform configuration.

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.

    {
        "id": "7",
        "type": "CellsiteRouting",
        "config": {
            "cellsites": ["No match found", "WLG", "MSTN"]
        },
        "exits": [ 1, 3, 6 ]
    }

The exit index for each cellsite is the same as its index within the cellsites array.

In this example, calls from cellsite WLG will be routed via exit index 1 to the operation with ID 3. Likewise, calls from cellsite MSTN will be routed via exit index 2 to the operation with ID 6. All other calls will be routed via exit index 0 to the operation with ID 1.

Exits

The first exit is always the “No match” exit.

Exit Index Name Description
0 Exit #1 (No match) [Required] All CellsiteRouting operations must have a "No match" exit.
1 Exit #2 [Required] All CellsiteRouting operations must have at least one cellsite exit configured.
2 Exit #3 + Additional exits may be present.