connection_type_targeting

NameModifier & DefaultsTypeDescription
connection_type_targetingDefault:
Targeting Object with type = ALL and value = [] (empty collection)

(If you create a new Campaign and omit this field, the above default is applied.)
Targeting Object

The targeting object should contain the list of targeted connection types.

Currently supports a single value only: "WIFI"

Note: Use the Dictionary to fetch the latest, up-to-date enum values.

Target Connection Types:

WIFI
The connection types to target/exclude in the campaign.

See: Connection Type Targeting

The connection_type_targeting field is updated directly via the campaigns endpoint - and the targeted collection is stored directly in the value property:

{
   // other Campaign fields...
   "connection_type_targeting": {
      "type": "ALL",
      "value": [],
      "href": null
   },
   "href": null
}
{
   // other Campaign fields...
   "connection_type_targeting": {
      "type": "INCLUDE",
      "value": [
         "WIFI"
      ],
      "href": null
   }
}

πŸ“˜

The href property is always null.