Configuration

Enabling Orbit will incur fees based on the number of devices that use Orbit, and the number of requests made. Refer to the Pricing & Fee Schedule for more information.

Soracom Orbit settings are found in Soracom Air for Cellular group settings.

To configure Orbit, open the settings page of the group that you want to configure.

Underneath the Basic Settings tab, click the SORACOM Orbit panel to expand its settings.

Orbit configuration

Enable Orbit by switching the option to ON.

You can then set the configuration parameters for the service.


Parameters


Advanced Configuration

Orbit can also be configured through the Soracom API or CLI by using the SoracomOrbit namespace.

Configuration Structure

"SoracomOrbit": {
  "enabled": true|false,
  "codeSrn": "srn:soracom:OP0012345678:g:Soralet:my-soralet/1",
  "contentType": "text/plain"|"application/json"|"application/octet-stream",
  "direction": [
    "uplink",
    "downlink"
  ],
  "useMetadata": true|false,
  "useLocation": true|false
}

Parameters

Enable or disable Orbit:

Modify the Soracom Resource Name (SRN) of the Soralet to use, including module version:

Modify the data processing behavior:

Modify the data processing direction:

Enable or disable Metadata Service access:

Enable or disable Simple Location Service access:

Sample Configuration

[
  {
    "key": "enabled",
    "value": true
  },
  {
    "key": "codeSrn",
    "value": "srn:soracom:OP0012345678:g:Soralet:my-soralet/1"
  },
  {
    "key": "contentType",
    "value": "application/json"
  },
  {
    "key": "direction",
    "value": [
      "uplink",
      "downlink"
    ]
  },
  {
    "key": "useLocation",
    "value": true
  },
  {
    "key": "useMetadata",
    "value": true
  }
]