Cognite · Example Payload

Cognite Events Create Example

Industrial IoTManufacturingIndustrial DataDigital TwinAsset ManagementTime SeriesIndustrial AI

Cognite Events Create Example is an example object payload from Cognite, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://api.cognitedata.com/{project}/events",
    "headers": {
      "Authorization": "Bearer <access_token>",
      "Content-Type": "application/json"
    },
    "body": {
      "items": [
        {
          "externalId": "work-order-2024-00145",
          "startTime": 1706745600000,
          "endTime": 1706832000000,
          "type": "work_order",
          "subtype": "planned_maintenance",
          "description": "Scheduled preventive maintenance for Pump Unit 01 - bearing replacement",
          "dataSetId": 1234567890,
          "assetIds": [6192931774716896],
          "source": "SAP PM",
          "metadata": {
            "workOrderNumber": "4500123456",
            "priority": "medium",
            "assignedTo": "maintenance_team_a",
            "estimatedDuration": "8h"
          }
        }
      ]
    }
  },
  "response": {
    "status": 200,
    "body": {
      "items": [
        {
          "id": 5534782910123456,
          "externalId": "work-order-2024-00145",
          "startTime": 1706745600000,
          "endTime": 1706832000000,
          "type": "work_order",
          "subtype": "planned_maintenance",
          "description": "Scheduled preventive maintenance for Pump Unit 01 - bearing replacement",
          "dataSetId": 1234567890,
          "assetIds": [6192931774716896],
          "source": "SAP PM",
          "metadata": {
            "workOrderNumber": "4500123456",
            "priority": "medium",
            "assignedTo": "maintenance_team_a",
            "estimatedDuration": "8h"
          },
          "createdTime": 1706745200000,
          "lastUpdatedTime": 1706745200000
        }
      ]
    }
  }
}