Options

The options field is a dictionary which key is the option code and which value is a dictionary containing its configuration.

Covage platform handles 6 types of options:

  • portability

  • grt

  • unlisted number

  • internal cabling

  • demarcation device

  • contract term

  • enni redundancy

Note

The availability of option depends on the product chosen for the service. You can get the availables options on the product with a call to products api.

For internal_cabling option, the available values are: 0-5m, 5-60m, 60m+.

For grt option, some products get a default value. If grt option is not enabled, this default value will take effect.

For contract_term option, all products get a default value. If contract_term option is not enabled, this default value will take effect.

For enni_redundancy option, the available values are: active_standby. If enni_redundancy option is enabled, you have to pick 2 ENNI services (instead of one if the option is not enabled).

Example

{
    "portability": {
        "enabled": true,
        "rio_code": "1234",
        "prefix_code": "1255",
        "contract_ref": "kosc1",
        "operator_code": "kosc2"
    },
    "grt": {
        "enabled": true,
        "value": "4h_24_7",
        "default_value": "4h_bhbd"
    },
    "unlisted_number": {
        "enabled": true
    },
    "internal_cabling": {
        "enabled": true,
        "internal_cabling_length": "5-60m"
    },
    "demarcation_device": {
        "enabled": true
    },
    "contract_term": {
        "enabled": true,
        "value": "36_months",
        "default_value": "12_months"
    },
    "enni_redundancy": {
        "enabled": true,
        "value": "active_standby"
    }
}