Connectivity Management Platform event

Connectivity Management Platforms can integrate with LiveObjects 'Message routing' capability to route their own events and messages.

Orange Connectivity Management Platforms events

Orange Connectivity Management Platforms is also known as 'Portail M2M', 'Conecta IoT', 'Simply IoT'…​

Here is the description of the Orange Connectivity Management Platforms events that can be routed through LiveObjects:

Field Description

type

connectivityManagementPlatformEvent. The type is set by Live Objects platform.

version

Version number. See the existing versions in the summary.

timestamp

The timestamp of the event (ISO-8601 format) provided by the CMP platform.

created

The date when the event has been routed to LiveObjects (ISO-8601 format).

id

The unique identifier for the event, useful for tracking and correlation.

issuer

Information regarding the trigger of the event.

issuer.cenId

Orange CMP account identifier.

issuer.subscriptionId

Orange CMP line identifier.

payload

The content of the event. Can include various fields depending on the event type : 'msisdn', 'country'…​

payloadType

Identify the event type. You can use this field as a filter into your action policy. Available types : 'prepaid_bucket'.

payloadVersion

Identify the schema version of the event.

Here is an example:

Connectivity Management Platform event example:
{
  "type": "connectivityManagementPlatformEvent",
  "version": 1,
  "id": "evt-12345-abcde-67890",
  "timestamp": "2025-10-01T10:30:45Z",
  "issuer": {
    "subscriptionId": "sub-001-abc123",
    "cenId": "cen-456-def789"
  },
  "payloadType": "prepaid_bucket",
  "payloadVersion": "1.0.0",
  "payload": {
      "recordType": "Alerting",
      "msisdn": "337000007245112",
      "date": "2021-11-24T15:32:28Z",
      "bucketCapacity": 60,
      "thresholdValue": 48,
      "zone": "National UE SA",
      "country": "FRANCE",
      "levelAlerting": "80%"
  },
  "created": "2025-10-01T10:30:46Z"
}