Alert Webhook Event Schema

🚧

Versioning Update

We have released an updated version of these Alert Webhook 2.0 payloads. All previously created Webhooks will continue to use the previous payload versions across all trigger types, while any new Webhooks will use the new updated payloads documented below.

Note - An alert trigger must be included in the list of triggers below to support new Alert Webhook 2.0 payloads.

Alert incidents can trigger an alert incident webhook payload 2.0 to be sent to a desired webhook address. These alert incidents are triggered by the alerts that you have configured in the Samsara dashboard. See the Alerts Webhook guide for more details on creating and configuring webhook 2.0 in alerts.

Below documents the alert triggers and supported webhook 2.0 payloads.

Alert Incident Webhook Payload

All alert incident webhook 2.0 payloads follow a similar structure:

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "happenedAtTime": "2019-06-13T19:08:25Z",
    "resolvedAtTime": "2019-06-13T19:08:25Z",
    "updatedAtTime": "2019-06-13T19:08:25Z",
    "incidentUrl": "cloud.samsara.com",
    "isResolved": true,
    "conditions": [
      {
        "description": "Alert name",
        "details": {
          "geofenceEntry": {
            "driver": {
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                },
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                },
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ],
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "id": "45646",
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                },
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                },
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                },
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ]
            },
            "vehicle": {
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD",
                  "numberValues": [867, 5309],
                  "stringValues": ["HQ", "Leased"]
                },
                {
                  "id": "494123",
                  "name": "Compliance/ELD",
                  "numberValues": [867, 5309],
                  "stringValues": ["HQ", "Leased"]
                }
              ],
              "externalIds": {
                "maintenanceId": "250020"
              },
              "id": "494123",
              "name": "Fleet Truck #1",
              "serial": "GFRV-43N-VGX",
              "staticAssignedDriver": {
                "id": "0987",
                "name": "Driver Name"
              },
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                },
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                },
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                },
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ]
            }
          }
        },
        "triggerId": 5016
      }
    ]
  }
}

Base Reference

Property NameDescription
configurationId
string
Unique ID of alert configuration.
happenedAtTime
string
Time and date that the alert incident occurred in RFC 3339.
resolvedAtTime
string
Time and date that the alert incident was resolved in RFC 3339.
updatedAtTime
string
Time and date that the alert incident data was last updated in RFC 3339.
incidentUrl
string
Url of alert incident in the cloud dashboard.
isResolved
boolean
Indicates whether the incident is resolved or not.
conditions
object array
An array of conditions associated with the incident.
    description
    string
Descriptive name of the condition.
    details
    object
Unique object representing the granular details of the condition. This object will have trigger specific field nested inside.
    triggerId
    integer
Unique identifier describing the type of condition being represented.

The details object will vary depending on the trigger conditions of the incident. The below Generic Details Object Reference table shows the generic fields that may be supported for a given condition. See the “Details Object Reference” of each trigger in the complete list below for the specific Details Object schema.

Generic Details Object Reference

Property NameDescription
cameraDevice
object
The camera associated with the alert. This string is only returned if the alert has a workforce camera associated with the event.
driver
object
A driver associated with the alert. This object is only returned if the alert has a driver associated with the event.
    attributes
    object array
[beta] Attributes associated with this entity.
        id
        string
The Samsara ID of the attribute
        name
        string
The name of the attribute
        numberValues
        number array
Number values that are associated with this attribute
        stringValues
        string array
String values that are associated with this attribute
    externalIds
    object
A map of external ids
    id
    string
ID of the driver
    name
    string
Name of the driver
    tags
    object array
The list of tags associated with the Driver.
        id
        string
ID of the tag
        name
        string
Name of the tag.
        parentTagId
        string
If this tag is part a hierarchical tag tree, this is the ID of the parent tag, otherwise this will be omitted.
machineInput
object
The machine input associated with the alert. This string is only returned if the alert has machine input associated with the event.
sensor
object
The sensor associated with the alert. This object is only returned if the alert has a sensor associated with the event.
cameraStream
object
The camera stream associated with the alert. This object is only returned if the alert has a stream associated with the event.
trailer
object
A trailer associated with with the alert. This object is only returned if the alert has a trailer associated with the event. Note: Triggers that apply to drivers do no support trailer details in the payload
    attributes
    object array
List of attributes associated with the entity
        id
        string
Id of the attribute
        name
        string
Name of the attribute
        numberValues
        number array
List of number values associated with the attribute
        stringValues
        string array
List of string values associated with the attribute.
    externalIds
    object
A map of external ids
    id
    string
The unique Samsara ID of the Trailer. This is automatically generated when the Trailer object is created. It cannot be changed.
    name
    string
The human-readable name of the Trailer. This is set by a fleet administrator and will appear in both Samsara’s cloud dashboard as well as the Samsara Driver mobile app. By default, this name is the serial number of the Samsara Asset Gateway. It can be set or updated through the Samsara Dashboard or through the API at any time.
    tags
    object array
The list of tags associated with the Trailer.
        id
        string
ID of the tag
        name
        string
Name of the tag.
        parentTagId
        string
If this tag is part a hierarchical tag tree, this is the ID of the parent tag, otherwise this will be omitted.
    trailerSerialNumber
    string
The serial number of the trailer.
vehicle
object
A vehicle associated with the alert. This object is only returned if the alert has a vehicle associated with the event. Note: Triggers that apply to drivers do no support vehicle details in the payload
    attributes
    object array
List of attributes associated with the entity
        id
        string
Id of the attribute
        name
        string
Name of the attribute
        numberValues
        number array
List of number values associated with the attribute
        stringValues
        string array
List of string values associated with the attribute.
    externalIds
    object
A map of external ids
    id
    string
ID of the vehicle
    name
    string
Name of the vehicle
    serial
    string
The serial number of the gateway installed on the asset.
    staticAssignedDriver
    object
Current driver of the vehicle. Note: this parameter includes all assignment sources, not just static assignments.
        id
        string
ID of the driver.
        name
        string
Name of the driver.
    tags
    object array
The list of tags associated with the Vehicle.
        id
        string
ID of the tag
        name
        string
Name of the tag.
        parentTagId
        string
If this tag is part a hierarchical tag tree, this is the ID of the parent tag, otherwise this will be omitted.

Ambient Temperature

Details Object Reference

See Generic Reference

TriggerId: 1003

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "ambientTemperature":{
            "triggerId": 1003,
            "description": "Ambient Temperature",
            "details": {
              "vehicle": null,
              "trailer": null,
              "driver": null,
              "sensor": {
                "id": "12345",
                "name": "My Test Widget",
                "pinnedDeviceId": "0",
                "product": {
                  "shortName": "EM21"
                }
              }
           	}
        }
      }
    ]
  }
}

Asset Engine Off

Details Object Reference

See Generic Reference

TriggerId: 1022

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1022,
        "description": "Asset Engine Off",
        "details": {
          "engineOff":{
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Asset Engine On

Details Object Reference

See Generic Reference

TriggerId: 1021

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1021,
        "description": "Asset Engine On",
        "details": {
          "engineOn":{
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
        	}	
        }
      }
    ]
  }
}

Asset starts moving

Details Object Reference

See Generic Reference

TriggerId: 1013

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1013,
        "description": "Asset starts moving",
        "details": {
          "deviceMovement": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
        	}	
        }
      }
    ]
  }
}

Asset stops moving

Details Object Reference

See Generic Reference

TriggerId: 1031

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1031,
        "description": "Asset stops moving",
        "details": {
          "assetStartsMoving": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                "id": "123a",
                "name": "JobID",
                "numberValues": [10, 817, 92],
                "stringValues": ["w92", "0052f-43", "abc"]
              }
            ]
          }
          }
        }
      }
    ]
  }
}

Camera Connector Disconnected

Details Object Reference

See Generic Reference

TriggerId: 1046

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1046,
        "description": "Camera Connector Disconnected",
        "details": {
          "cameraConnectorDisconected": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Camera Stream Issue

Details Object Reference

See Generic Reference

TriggerId: 1039

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1039,
        "description": "Camera Stream Issue",
        "details": {
          "cameraStreamIssue": {
            "cameraDevice": {
              "id": "1",
              "name": "Camera 1",
              "sites": [
                {
                  "id": "13815dfd-9ced-5079-be39-8ea60ae48544",
                  "name": "Site with 1 Camera"
                }
              ]
            },
            "vehicle": null,
            "trailer": null,
            "driver": null
          }
        }
      }
    ]
  }
}

Cell Signal Loss

Details Object Reference

See Generic Reference

TriggerId: 1033

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1033,
        "description": "Cell Signal Loss",
        "details": {
          "cellSignalLoss": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Cloud Backup Upload Issue

Details Object Reference

See Generic Reference

TriggerId: 1048

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1048,
        "description": "Cloud Backup Upload Issue",
        "details": {
          "cloudBackupUploadIssue": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Dashcam Disconnected

Details Object Reference

See Generic Reference

TriggerId: 1012

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1022,
        "description": "Dashcam Disconnected",
        "details": {
          "dashcamDisconnected":{
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

DVIR Submitted for Asset

Details Object Reference

See Webhook 2.0 Reference

TriggerId: 5005

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5005,
        "description": "DVIR Submitted for Asset",
        "details": {
          "dvirSubmittedDevice": {
            "driver": {
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "id": "45646",
              "name": "Driver Bob"
            },
            "dvir": {
              "authorSignature": {
                "signatoryUser": {
                  "id": "938172",
                  "name": "Joe Driver"
                },
                "signedAtTime": "2020-01-27T07:06:25Z",
                "type": "driver"
              },
              "defects": [
                {
                  "comment": "Air compressor not working",
                  "createdAtTime": "2020-01-27T07:06:25Z",
                  "defectType": "Air Compressor",
                  "id": "18",
                  "isResolved": false,
                  "mechanicNotes": "Extremely large oddly shaped hole in passenger side window.",
                  "mechanicNotesUpdatedAtTime": "2020-01-27T07:06:25Z",
                  "resolvedAtTime": "2020-01-27T07:06:25Z",
                  "resolvedBy": {
                    "id": "8172",
                    "name": "Jane Mechanic",
                    "type": "mechanic"
                  },
                  "trailer": {
                    "externalIds": {
                      "maintenanceId": "250020"
                    },
                    "id": "494123",
                    "name": "Fleet Truck #1"
                  },
                  "vehicle": {
                    "externalIds": {
                      "maintenanceId": "250020"
                    },
                    "gateway": {
                      "model": "VG34",
                      "serial": "GFRV-43N-VGX"
                    },
                    "id": "494123",
                    "licensePlate": "6SAM123",
                    "name": "Fleet Truck #1",
                    "vin": "1GBJ6P1B2HV112765"
                  }
                },
                {
                  "comment": "Air compressor not working",
                  "createdAtTime": "2020-01-27T07:06:25Z",
                  "defectType": "Air Compressor",
                  "id": "18",
                  "isResolved": false,
                  "mechanicNotes": "Extremely large oddly shaped hole in passenger side window.",
                  "mechanicNotesUpdatedAtTime": "2020-01-27T07:06:25Z",
                  "resolvedAtTime": "2020-01-27T07:06:25Z",
                  "resolvedBy": {
                    "id": "8172",
                    "name": "Jane Mechanic",
                    "type": "mechanic"
                  },
                  "trailer": {
                    "externalIds": {
                      "maintenanceId": "250020"
                    },
                    "id": "494123",
                    "name": "Fleet Truck #1"
                  },
                  "vehicle": {
                    "externalIds": {
                      "maintenanceId": "250020"
                    },
                    "gateway": {
                      "model": "VG34",
                      "serial": "GFRV-43N-VGX"
                    },
                    "id": "494123",
                    "licensePlate": "6SAM123",
                    "name": "Fleet Truck #1",
                    "vin": "1GBJ6P1B2HV112765"
                  }
                }
              ],
              "endTime": "2020-01-27T07:06:25Z",
              "formattedLocation": "350 Rhode Island St Ste. 400S, San Francisco, CA 94103",
              "hasDefects": false,
              "id": "12345",
              "mechanicNotes": "Replaced headlight on passenger side.",
              "needsCorrection": false,
              "odometerMeters": 91823,
              "safetyStatus": "unsafe",
              "secondSignature": {
                "signatoryUser": {
                  "id": "938172",
                  "name": "Joe Driver"
                },
                "signedAtTime": "2020-01-27T07:06:25Z",
                "type": "driver"
              },
              "startTime": "2020-01-27T07:06:25Z",
              "thirdSignature": {
                "signatoryUser": {
                  "id": "938172",
                  "name": "Joe Driver"
                },
                "signedAtTime": "2020-01-27T07:06:25Z",
                "type": "driver"
              },
              "trailer": {
                "externalIds": {
                  "maintenanceId": "250020"
                },
                "id": "494123",
                "name": "Fleet Truck #1"
              },
              "type": "mechanic"
            },
            "vehicle": {
              "externalIds": {
                "maintenanceId": "250020"
              },
              "gateway": {
                "model": "VG34",
                "serial": "GFRV-43N-VGX"
              },
              "id": "494123",
              "licensePlate": "6SAM123",
              "name": "Fleet Truck #1",
              "vin": "1GBJ6P1B2HV112765"
            }
          }
        }
      }
    ]
  }
}

Data Input Value

Details Object Reference

See Generic Reference

TriggerId: 1015

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1015,
        "description": "Data Input Value",
        "details": {
          "dataInputValue": {
            "machineInput": {
              "id": "1",
              "name": "testMachineInput"
            },           
            "vehicle": null,
            "trailer": null,
            "driver": null
          }
        }
      }
    ]
  }
}

Driver Action - Message Sent

Details Object Reference

Note: Vehicle and trailer fields will be null and are not yet supported for driver based alert triggers

See Generic Reference

TriggerId: 5010

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5010,
        "description": "Driver Action - Message Sent",
        "details": {
          "driverMessageSent": {
            "vehicle": null,
            "trailer": null,
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Driver App Sign In

Details Object Reference

Note: Vehicle and trailer fields will be null and are not yet supported for driver based alert triggers

See Generic Reference

TriggerId: 5012

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5012,
        "description": "Driver App Sign In",
        "details": {
          "driverAppSignIn": {
            "vehicle": null,
            "trailer": null,
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Driver App Sign Out

Details Object Reference

Note: Vehicle and trailer fields will be null and are not yet supported for driver based alert triggers

See Generic Reference

TriggerId: 5013

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5013,
        "description": "Driver App Sign Out",
        "details": {
          "driverAppSignOut": {
            "vehicle": null,
            "trailer": null,
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

[Beta] Driver Document Submitted

Details Object Reference

See Webhook 2.0 Reference

TriggerId: 5009

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5009,
        "description": "Driver Document Submitted",
        "details": {
          "driverDocumentSubmitted": {
            "document": {
              "conditionalFieldSections": [
                {
                  "conditionalFieldFirstIndex": 5083143870897228000,
                  "conditionalFieldLastIndex": 2770896918544835600,
                  "triggeringFieldIndex": 8389989517472915000,
                  "triggeringFieldValue": "Optiona 1"
                },
                {
                  "conditionalFieldFirstIndex": 5083143870897228000,
                  "conditionalFieldLastIndex": 2770896918544835600,
                  "triggeringFieldIndex": 8389989517472915000,
                  "triggeringFieldValue": "Optiona 1"
                },
                {
                  "conditionalFieldFirstIndex": 5083143870897228000,
                  "conditionalFieldLastIndex": 2770896918544835600,
                  "triggeringFieldIndex": 8389989517472915000,
                  "triggeringFieldValue": "Optiona 1"
                }
              ],
              "createdAtTime": "1976-03-06T08:22:53Z",
              "documentType": {
                "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                "name": "Fleet Truck List"
              },
              "fields": [
                {
                  "label": "Load weight",
                  "type": "photo",
                  "value": {
                    "barcodeValue": [
                      {
                        "barcodeType": "org.gs1.EAN-13",
                        "barcodeValue": "0853883003114"
                      },
                      {
                        "barcodeType": "org.gs1.EAN-13",
                        "barcodeValue": "0853883003114"
                      },
                      {
                        "barcodeType": "org.gs1.EAN-13",
                        "barcodeValue": "0853883003114"
                      },
                      {
                        "barcodeType": "org.gs1.EAN-13",
                        "barcodeValue": "0853883003114"
                      }
                    ],
                    "dateTimeValue": {
                      "dateTime": "1984-10-23T07:14:29Z"
                    },
                    "multipleChoiceValue": [
                      {
                        "selected": false,
                        "value": "Yes"
                      },
                      {
                        "selected": false,
                        "value": "Yes"
                      },
                      {
                        "selected": false,
                        "value": "Yes"
                      }
                    ],
                    "numberValue": 123.456,
                    "photoValue": [
                      {
                        "id": "f5271458-21f9-4a9f-a290-780c6d8840ff",
                        "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                      },
                      {
                        "id": "f5271458-21f9-4a9f-a290-780c6d8840ff",
                        "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                      }
                    ],
                    "scannedDocumentValue": [
                      {
                        "id": "f5271458-21f9-4a9f-a290-780c6d8840ff",
                        "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                      },
                      {
                        "id": "f5271458-21f9-4a9f-a290-780c6d8840ff",
                        "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                      },
                      {
                        "id": "f5271458-21f9-4a9f-a290-780c6d8840ff",
                        "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                      }
                    ],
                    "signatureValue": {
                      "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                      "name": "John Smith",
                      "signedAtTime": "1996-01-30T06:14:20Z",
                      "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                    },
                    "stringValue": "Red Truck"
                  }
                },
                {
                  "label": "Load weight",
                  "type": "photo",
                  "value": {
                    "barcodeValue": [
                      {
                        "barcodeType": "org.gs1.EAN-13",
                        "barcodeValue": "0853883003114"
                      },
                      {
                        "barcodeType": "org.gs1.EAN-13",
                        "barcodeValue": "0853883003114"
                      },
                      {
                        "barcodeType": "org.gs1.EAN-13",
                        "barcodeValue": "0853883003114"
                      },
                      {
                        "barcodeType": "org.gs1.EAN-13",
                        "barcodeValue": "0853883003114"
                      }
                    ],
                    "dateTimeValue": {
                      "dateTime": "1984-10-23T07:14:29Z"
                    },
                    "multipleChoiceValue": [
                      {
                        "selected": false,
                        "value": "Yes"
                      },
                      {
                        "selected": false,
                        "value": "Yes"
                      },
                      {
                        "selected": false,
                        "value": "Yes"
                      }
                    ],
                    "numberValue": 123.456,
                    "photoValue": [
                      {
                        "id": "f5271458-21f9-4a9f-a290-780c6d8840ff",
                        "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                      },
                      {
                        "id": "f5271458-21f9-4a9f-a290-780c6d8840ff",
                        "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                      }
                    ],
                    "scannedDocumentValue": [
                      {
                        "id": "f5271458-21f9-4a9f-a290-780c6d8840ff",
                        "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                      },
                      {
                        "id": "f5271458-21f9-4a9f-a290-780c6d8840ff",
                        "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                      },
                      {
                        "id": "f5271458-21f9-4a9f-a290-780c6d8840ff",
                        "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                      }
                    ],
                    "signatureValue": {
                      "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                      "name": "John Smith",
                      "signedAtTime": "1996-01-30T06:14:20Z",
                      "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                    },
                    "stringValue": "Red Truck"
                  }
                }
              ],
              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
              "name": "Dropoff Slip 123",
              "notes": "Missing a crate",
              "route": {
                "externalIds": {
                  "myRouteId": "abc"
                },
                "id": "131313",
                "name": "Pineapple delivery"
              },
              "routeStop": {
                "externalIds": {
                  "siteId": "54"
                },
                "id": "494123",
                "name": "Company Warehouse #1"
              },
              "state": "submitted",
              "updatedAtTime": "2009-01-10T02:28:18Z"
            },
            "driver": {
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "id": "45646",
              "name": "Driver Bob"
            },
            "vehicle": {
              "externalIds": {
                "maintenanceId": "250020"
              },
              "gateway": {
                "model": "VG34",
                "serial": "GFRV-43N-VGX"
              },
              "id": "494123",
              "licensePlate": "6SAM123",
              "name": "Fleet Truck #1",
              "vin": "1GBJ6P1B2HV112765"
            }
          }
        }
      }
    ]
  }
}

Driver HOS Violation

Details Object Reference

See Generic Reference

TriggerId: 1018

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1018,
        "description": "Driver HOS Violation",
        "details": {
          "hosViolation": {
            "vehicle": null,
            "trailer": null,
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Driver Message Received

Details Object Reference

Note: Vehicle and trailer fields will be null and are not yet supported for driver based alert triggers

See Generic Reference

TriggerId: 5011

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5011,
        "description": "Driver Message Received",
        "details": {
          "driverMessageReceived": {
            "vehicle": null,
            "trailer": null,
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

[Beta] Form Submitted

Details Object Reference

See Webhook 2.0 Reference

TriggerId: 5023

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5023,
        "description": "Form Submitted",
        "details": {
          "formSubmitted":{
            "form": {
              "asset": {
                  "entryType": "tracked",
                  "id": "281474982859091",
                  "name": "trailer 123"
              },
              "assignedAtTime": "2019-06-13T19:08:25Z",
              "assignedTo": {
                  "id": "938172",
                  "type": "driver"
              },
              "createdAtTime": "2019-06-13T19:08:25Z",
              "dueAtTime": "2019-06-13T19:08:25Z",
              "externalIds": {
                  "maintenanceId": "250020"
              },
              "fields": [
                  {
                      "assetValue": {
                          "asset": {
                              "entryType": "tracked",
                              "id": "281474982859091",
                              "name": "trailer 123"
                          }
                      },
                      "checkBoxesValue": {
                          "value": [
                              "One",
                              "Two",
                              "Three",
                              "Four"
                          ]
                      },
                      "dateTimeValue": {
                          "type": "datetime",
                          "value": "2019-06-13T19:08:25Z"
                      },
                      "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                      "issue": {
                          "externalIds": {
                              "maintenanceId": "250020"
                          },
                          "id": "12345"
                      },
                      "label": "Engine Hours",
                      "mediaList": [
                          {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          },
                          {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          }
                      ],
                      "mediaValue": {
                          "mediaList": [
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              }
                          ]
                      },
                      "multipleChoiceValue": {
                          "value": "Yes"
                      },
                      "note": "Fire and oil can lead to an accident.",
                      "numberValue": {
                          "value": 123.456
                      },
                      "signatureValue": {
                          "media": {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          }
                      },
                      "textValue": {
                          "value": "Exposed wires"
                      },
                      "type": "number"
                  },
                  {
                      "assetValue": {
                          "asset": {
                              "entryType": "tracked",
                              "id": "281474982859091",
                              "name": "trailer 123"
                          }
                      },
                      "checkBoxesValue": {
                          "value": [
                              "One",
                              "Two",
                              "Three",
                              "Four"
                          ]
                      },
                      "dateTimeValue": {
                          "type": "datetime",
                          "value": "2019-06-13T19:08:25Z"
                      },
                      "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                      "issue": {
                          "externalIds": {
                              "maintenanceId": "250020"
                          },
                          "id": "12345"
                      },
                      "label": "Engine Hours",
                      "mediaList": [
                          {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          },
                          {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          }
                      ],
                      "mediaValue": {
                          "mediaList": [
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              }
                          ]
                      },
                      "multipleChoiceValue": {
                          "value": "Yes"
                      },
                      "note": "Fire and oil can lead to an accident.",
                      "numberValue": {
                          "value": 123.456
                      },
                      "signatureValue": {
                          "media": {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          }
                      },
                      "textValue": {
                          "value": "Exposed wires"
                      },
                      "type": "number"
                  },
                  {
                      "assetValue": {
                          "asset": {
                              "entryType": "tracked",
                              "id": "281474982859091",
                              "name": "trailer 123"
                          }
                      },
                      "checkBoxesValue": {
                          "value": [
                              "One",
                              "Two",
                              "Three",
                              "Four"
                          ]
                      },
                      "dateTimeValue": {
                          "type": "datetime",
                          "value": "2019-06-13T19:08:25Z"
                      },
                      "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                      "issue": {
                          "externalIds": {
                              "maintenanceId": "250020"
                          },
                          "id": "12345"
                      },
                      "label": "Engine Hours",
                      "mediaList": [
                          {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          },
                          {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          }
                      ],
                      "mediaValue": {
                          "mediaList": [
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              }
                          ]
                      },
                      "multipleChoiceValue": {
                          "value": "Yes"
                      },
                      "note": "Fire and oil can lead to an accident.",
                      "numberValue": {
                          "value": 123.456
                      },
                      "signatureValue": {
                          "media": {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          }
                      },
                      "textValue": {
                          "value": "Exposed wires"
                      },
                      "type": "number"
                  }
              ],
              "formTemplate": {
                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                  "revisionId": "1214a1fa-f0c6-408b-bf85-51dc3bc71ac7"
              },
              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
              "isRequired": true,
              "location": {
                  "latitude": 12333122.3,
                  "longitude": 1233331.4
              },
              "score": {
                  "maxPoints": 80,
                  "scorePercent": 75,
                  "scorePoints": 60
              },
              "status": "toDo",
              "submittedAtTime": "2019-06-13T19:08:25Z",
              "submittedBy": {
                  "id": "938172",
                  "type": "driver"
              },
              "title": "Form Submission Title",
              "updatedAtTime": "2019-06-13T19:08:25Z"
          	}     
          }
        }
      }
    ]
  }
}

Fuel Level (Percentage)

Details Object Reference

See Generic Reference

TriggerId: 1005

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1005,
        "description": "Fuel Level (Percentage)",
        "details": {
          "fuelLevelPercentage":{
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
            	]	
            }
          }
        }
      }
    ]
  }
}

GPS Signal Loss

Details Object Reference

See Generic Reference

TriggerId: 1032

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1032,
        "description": "GPS Signal Loss",
        "details": {
          "gpsSignalLoss": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Gateway Disconnected

Details Object Reference

See Generic Reference

TriggerId: 1030

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1030,
        "description": "Gateway Disconnected",
        "details": {
          "gatewayDisconnected": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

[Beta] Gateway Unplugged

Details Object Reference

See Webhook 2.0 Reference

TriggerId: 1009

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1009,
        "description": "Gateway Unplugged",
        "details": {
          "gatewayUnplugged": {
            "gateway": {
              "model": "VG34",
              "serial": "GFRV-43N-VGX",
              "vehicle": {
                "externalIds": {
                  "maintenanceId": "250020"
                },
                "id": "494123",
                "name": "Fleet Truck #1"
              }
            }
          }
        }
      }
    ]
  }
}

[Beta] Geofence Entry

Details Object Reference

See Webhook 2.0 Reference

TriggerId: 5016

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5016,
        "description": "Geofence Entry",
        "details": {
          "geofenceEntry": {
            "address": {
              "externalIds": {
                "siteId": "54"
              },
              "formattedAddress": "350 Rhode Island St, San Francisco, CA",
              "geofence": {
                "circle": {
                  "latitude": 37.7749,
                  "longitude": 137.7749,
                  "radiusMeters": 23
                },
                "polygon": {
                  "vertices": [
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    },
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    }
                  ]
                },
                "settings": {
                  "showAddresses": [
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    },
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    },
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    },
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    }
                  ]
                }
              },
              "id": "494123",
              "name": "Company Office #1"
            },
            "vehicle": {
              "externalIds": {
                "maintenanceId": "250020"
              },
              "gateway": {
                "model": "VG34",
                "serial": "GFRV-43N-VGX"
              },
              "id": "494123",
              "licensePlate": "6SAM123",
              "name": "Fleet Truck #1",
              "vin": "1GBJ6P1B2HV112765"
            }
          }
        }
      }
    ]
  }
}

[Beta] Geofence Exit

Details Object Reference

See Webhook 2.0 Reference

TriggerId: 5017

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5017,
        "description": "Geofence Exit",
        "details": {
          "geofenceExit": {
            "address": {
              "externalIds": {
                "siteId": "54"
              },
              "formattedAddress": "350 Rhode Island St, San Francisco, CA",
              "geofence": {
                "circle": {
                  "latitude": 37.7749,
                  "longitude": 137.7749,
                  "radiusMeters": 23
                },
                "polygon": {
                  "vertices": [
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    },
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    }
                  ]
                },
                "settings": {
                  "showAddresses": [
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    },
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    },
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    },
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    }
                  ]
                }
              },
              "id": "494123",
              "name": "Company Office #1"
            },
            "vehicle": {
              "externalIds": {
                "maintenanceId": "250020"
              },
              "gateway": {
                "model": "VG34",
                "serial": "GFRV-43N-VGX"
              },
              "id": "494123",
              "licensePlate": "6SAM123",
              "name": "Fleet Truck #1",
              "vin": "1GBJ6P1B2HV112765"
            }
          }
        }
      }
    ]
  }
}

Harsh Event

Details Object Reference

See Generic Reference

TriggerId: 1023

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1023,
        "description": "Harsh Event",
        "details": {
          "harshEvent": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Inactivity

Details Object Reference

See Generic Reference

TriggerId: 1038

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1038,
        "description": "Inactivity",
        "details": {
          "inactivity": {
            "cameraStream": {
              "cameraDevice": {
                "id": "1",
                "name": "Camera 1",
                "sites": [
                  {
                    "id": "13815dfd-9ced-5079-be39-8ea60ae48544",
                    "name": "Site with 1 Camera"
                  }
                ]
              },
              "id": "1",
              "name": "Stream 1"
            },
            "vehicle": null,
            "trailer": null,
            "driver": null
          }
        }
      }
    ]
  }
}

Inside Geofence

Details Object Reference

See Generic Reference

TriggerId: 1014

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1014,
        "description": "Inside Geofence",
        "details": {
          "insideGeofence": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

[Beta] Issue Created

Details Object Reference

See Webhook 2.0 Reference

TriggerId: 5024

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5024,
        "description": "Issue Created",
        "details": {
          "issueCreated": {
             "issue": {
              "asset": {
                  "entryType": "tracked",
                  "id": "281474982859091",
                  "name": "trailer 123"
              },
              "assignedTo": {
                  "id": "938172",
                  "type": "driver"
              },
              "createdAtTime": "2019-06-13T19:08:25Z",
              "description": "Oil spill in left corner of SF1",
              "dueDate": "2019-06-13T19:08:25Z",
              "externalIds": {
                  "maintenanceId": "250020"
              },
              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
              "issueSource": {
                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                  "type": "form"
              },
              "mediaList": [
                  {
                      "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                      "processingStatus": "processing",
                      "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                      "urlExpiresAt": "2019-06-13T19:08:25Z"
                  },
                  {
                      "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                      "processingStatus": "processing",
                      "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                      "urlExpiresAt": "2019-06-13T19:08:25Z"
                  }
              ],
              "priority": "high",
              "status": "open",
              "submittedAtTime": "2019-06-13T19:08:25Z",
              "submittedBy": {
                  "id": "938172",
                  "type": "driver"
              },
              "title": "Oil spill",
              "updatedAtTime": "2019-06-13T19:08:25Z"
              }
          }
      }
    ]
  }
}   

Jamming Detected

Details Object Reference

See Generic Reference

TriggerId: 1047

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1047,
        "description": "Jamming Detected",
        "details": {
          "jammingDetected": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Motion Detected

Details Object Reference

See Generic Reference

TriggerId: 1037

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1037,
        "description": "Motion Detected",
        "details": {
          "motionDetected": { 
            "cameraStream": {
              "cameraDevice": {
                "id": "1",
                "name": "Camera 1",
                "sites": [
                  {
                    "id": "13815dfd-9ced-5079-be39-8ea60ae48544",
                    "name": "Site with 1 Camera"
                  }
                ]
              },
              "id": "1",
              "name": "Stream 1"
            },
            "vehicle": null,
            "trailer": null,
            "driver": null
          }
        }
      }
    ]
  }
}

Out of Route

Details Object Reference

See Generic Reference

TriggerId: 1027

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1027,
        "description": "Out of Route",
        "details": {
          "outOfRoute": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Outside Geofence

Details Object Reference

See Generic Reference

TriggerId: 1020

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1020,
        "description": "Outside Geofence",
        "details": {
          "outsideGeofence": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Panic Button

Details Object Reference

See Generic Reference

TriggerId: 1034

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1034,
        "description": "Panic Button",
        "details": {
        "panicButton": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
        }
        }
      }
    ]
  }
}

Person Detected

Details Object Reference

See Generic Reference

TriggerId: 1035

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1035,
        "description": "Person Detected",
        "details": {
          "personDetected": {
            "cameraStream": {
              "cameraDevice": {
                "id": "1",
                "name": "Camera 1",
                "sites": [
                  {
                    "id": "13815dfd-9ced-5079-be39-8ea60ae48544",
                    "name": "Site with 1 Camera"
                  }
                ]
              },
              "id": "1",
              "name": "Stream 1"
            },
            "vehicle": null,
            "trailer": null,
            "driver": null
          }
        }
      }
    ]
  }
}

Reefer Temperature

Details Object Reference

See Generic Reference

TriggerId: 1056

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1056,
        "description": "Reefer Temperature",
        "details": {
          "reeferTemperature": {
          "vehicle": {
            "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Route Stop ETA Alert

Details Object Reference

See Generic Reference

TriggerId: 5018

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5018,
        "description": "Route Stop ETA Alert",
        "details": {
          "routeStopETA": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Scheduled Maintenance

Details Object Reference

See Generic Reference

TriggerId: 1024

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1024,
        "description": "Scheduled Maintenance",
        "details": {
          "scheduledMaintenance": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Scheduled Maintenance by Engine Hours

Details Object Reference

See Generic Reference

TriggerId: 1026

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1026,
        "description": "Scheduled Maintenance by Engine Hours",
        "details": {
          "scheduledMaintenanceByEngineHours": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Scheduled Maintenance by Odometer

Details Object Reference

See Generic Reference

TriggerId: 1025

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1025,
        "description": "Scheduled Maintenance by Odometer",
        "details": {
          "scheduledMaintenanceOdometer": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Site Gateway Disconnected

Details Object Reference

See Generic Reference

TriggerId: 1040

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1040,
        "description": "Site Gateway Disconnected",
        "details": {
          "vehicle": {
            "id": "45646",
            "externalIds": {
              "maintenanceId": "250020"
            },
            "name": "Fleet Truck #1",
            "tags": [
              {
                "id": "3914",
                "name": "East Coast",
                "parentTagId": "4815"
              }
            ],
            "attributes": [
              {
                "id": "494123",
                "name": "Compliance/ELD"
              }
            ],
            "serial": "GFRV-43N-VGX"
          },
          "trailer": {
            "id": "494123",
            "externalIds": {
              "maintenanceId": "250020"
            },
            "name": "Trailer-123",
            "tags": [
              {
                "id": "3914",
                "name": "East Coast",
                "parentTagId": "4815"
              }
            ],
            "attributes": [
              {
                "id": "494123",
                "name": "Compliance/ELD"
              }
            ],
            "trailerSerialNumber": "8V8WD530FLN016251"
          },
          "driver": {
            "id": "45646",
            "externalIds": {
              "payrollId": "ABFS18600"
            },
            "name": "Driver Bob",
            "tags": [
              {
                "id": "3914",
                "name": "East Coast",
                "parentTagId": "4815"
              }
            ],
            "attributes": [
              {
                "id": "123a",
                "name": "JobID",
                "numberValues": [10, 817, 92],
                "stringValues": ["w92", "0052f-43", "abc"]
              }
            ]
          }
        }
      }
    ]
  }
}

Tampering Detected

Details Object Reference

See Generic Reference

TriggerId: 1045

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1045,
        "description": "Tampering Detected",
        "details": {
          "tamperingDetected": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Tire Faults

Details Object Reference

See Generic Reference

TriggerId: 1043

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1043,
        "description": "Tire Faults",
        "details": {
          "tireFaults": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Unassigned Driving

Details Object Reference

See Generic Reference

TriggerId: 1016

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1016,
        "description": "Unassigned Driving",
        "details": {
          "vehicle": {
            "id": "45646",
            "externalIds": {
              "maintenanceId": "250020"
            },
            "name": "Fleet Truck #1",
            "tags": [
              {
                "id": "3914",
                "name": "East Coast",
                "parentTagId": "4815"
              }
            ],
            "attributes": [
              {
                "id": "494123",
                "name": "Compliance/ELD"
              }
            ],
            "serial": "GFRV-43N-VGX"
          },
          "trailer": {
            "id": "494123",
            "externalIds": {
              "maintenanceId": "250020"
            },
            "name": "Trailer-123",
            "tags": [
              {
                "id": "3914",
                "name": "East Coast",
                "parentTagId": "4815"
              }
            ],
            "attributes": [
              {
                "id": "494123",
                "name": "Compliance/ELD"
              }
            ],
            "trailerSerialNumber": "8V8WD530FLN016251"
          },
          "driver": {
            "id": "45646",
            "externalIds": {
              "payrollId": "ABFS18600"
            },
            "name": "Driver Bob",
            "tags": [
              {
                "id": "3914",
                "name": "East Coast",
                "parentTagId": "4815"
              }
            ],
            "attributes": [
              {
                "id": "123a",
                "name": "JobID",
                "numberValues": [10, 817, 92],
                "stringValues": ["w92", "0052f-43", "abc"]
              }
            ]
          }
        }
      }
    ]
  }
}

Vehicle Battery

Details Object Reference

See Generic Reference

TriggerId: 1007

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1007,
        "description": "Vehicle Battery",
        "details": {
          "unassignedDriving": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Vehicle DEF Level (Percentage)

Details Object Reference

See Generic Reference

TriggerId: 1006

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1006,
        "description": "Vehicle DEF Level (Percentage)",
        "details": {
          "vehicleDefLevelPercentage": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Vehicle Detected

Details Object Reference

See Generic Reference

TriggerId: 1036

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1036,
        "description": "Vehicle Detected",
        "details": {
          "vehicleDetected": {
            "cameraStream": {
              "cameraDevice": {
                "id": "1",
                "name": "Camera 1",
                "sites": [
                  {
                    "id": "13815dfd-9ced-5079-be39-8ea60ae48544",
                    "name": "Site with 1 Camera"
                  }
                ]
              },
              "id": "1",
              "name": "Stream 1"
            },
            "vehicle": null,
            "trailer": null,
            "driver": null
          }
        }
      }
    ]
  }
}

Vehicle Engine Idle

Details Object Reference

See Generic Reference

TriggerId: 1019

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1019,
        "description": "Vehicle Engine Idle",
        "details": {
          "engineIdle": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Vehicle Faults

Details Object Reference

See Generic Reference

TriggerId: 1029

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1029,
        "description": "Vehicle Faults",
        "details": {
          "vehicle": {
            "id": "45646",
            "externalIds": {
              "maintenanceId": "250020"
            },
            "name": "Fleet Truck #1",
            "tags": [
              {
                "id": "3914",
                "name": "East Coast",
                "parentTagId": "4815"
              }
            ],
            "attributes": [
              {
                "id": "494123",
                "name": "Compliance/ELD"
              }
            ],
            "serial": "GFRV-43N-VGX"
          },
          "trailer": {
            "id": "494123",
            "externalIds": {
              "maintenanceId": "250020"
            },
            "name": "Trailer-123",
            "tags": [
              {
                "id": "3914",
                "name": "East Coast",
                "parentTagId": "4815"
              }
            ],
            "attributes": [
              {
                "id": "494123",
                "name": "Compliance/ELD"
              }
            ],
            "trailerSerialNumber": "8V8WD530FLN016251"
          },
          "driver": {
            "id": "45646",
            "externalIds": {
              "payrollId": "ABFS18600"
            },
            "name": "Driver Bob",
            "tags": [
              {
                "id": "3914",
                "name": "East Coast",
                "parentTagId": "4815"
              }
            ],
            "attributes": [
              {
                "id": "123a",
                "name": "JobID",
                "numberValues": [10, 817, 92],
                "stringValues": ["w92", "0052f-43", "abc"]
              }
            ]
          }
        }
      }
    ]
  }
}

Vehicle Speed

Details Object Reference

See Generic Reference

TriggerId: 1000

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1000,
        "description": "Vehicle Speed",
        "details": {
          "speed":{
            "currentSpeedKilometersPerHour": 120,
            "minDurationMilliseconds": 30000,
            "operation": "GREATER",
            "thresholdSpeedKilometersPerHour": 100,
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Severe Speeding

Details Object Reference

See Webhook 2.0 Reference

TriggerId: 5022

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5022,
        "description": "Severe Speeding",
        "details": {
          "severeSpeeding":{
            "startTime": "2019-06-13T19:08:25Z",
            "tripStartTime": "2019-06-13T19:08:25Z",
            "vehicle": {
                "externalIds": {
                    "maintenanceId": "250020"
                },
                "id": "494123",
                "licensePlate": "6SAM123",
                "name": "Fleet Truck #1",
                "vehicleVin": "1GBJ6P1B2HV112765"
            }
          }
        }
      }
    ]
  }
}
{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5023,
        "description": "Form Submitted",
        "details": {
          "formSubmitted":{
            "form": {
              "asset": {
                  "entryType": "tracked",
                  "id": "281474982859091",
                  "name": "trailer 123"
              },
              "assignedAtTime": "2019-06-13T19:08:25Z",
              "assignedTo": {
                  "id": "938172",
                  "type": "driver"
              },
              "createdAtTime": "2019-06-13T19:08:25Z",
              "dueAtTime": "2019-06-13T19:08:25Z",
              "externalIds": {
                  "maintenanceId": "250020"
              },
              "fields": [
                  {
                      "assetValue": {
                          "asset": {
                              "entryType": "tracked",
                              "id": "281474982859091",
                              "name": "trailer 123"
                          }
                      },
                      "checkBoxesValue": {
                          "value": [
                              "One",
                              "Two",
                              "Three",
                              "Four"
                          ]
                      },
                      "dateTimeValue": {
                          "type": "datetime",
                          "value": "2019-06-13T19:08:25Z"
                      },
                      "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                      "issue": {
                          "externalIds": {
                              "maintenanceId": "250020"
                          },
                          "id": "12345"
                      },
                      "label": "Engine Hours",
                      "mediaList": [
                          {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          },
                          {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          }
                      ],
                      "mediaValue": {
                          "mediaList": [
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              }
                          ]
                      },
                      "multipleChoiceValue": {
                          "value": "Yes"
                      },
                      "note": "Fire and oil can lead to an accident.",
                      "numberValue": {
                          "value": 123.456
                      },
                      "signatureValue": {
                          "media": {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          }
                      },
                      "textValue": {
                          "value": "Exposed wires"
                      },
                      "type": "number"
                  },
                  {
                      "assetValue": {
                          "asset": {
                              "entryType": "tracked",
                              "id": "281474982859091",
                              "name": "trailer 123"
                          }
                      },
                      "checkBoxesValue": {
                          "value": [
                              "One",
                              "Two",
                              "Three",
                              "Four"
                          ]
                      },
                      "dateTimeValue": {
                          "type": "datetime",
                          "value": "2019-06-13T19:08:25Z"
                      },
                      "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                      "issue": {
                          "externalIds": {
                              "maintenanceId": "250020"
                          },
                          "id": "12345"
                      },
                      "label": "Engine Hours",
                      "mediaList": [
                          {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          },
                          {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          }
                      ],
                      "mediaValue": {
                          "mediaList": [
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              }
                          ]
                      },
                      "multipleChoiceValue": {
                          "value": "Yes"
                      },
                      "note": "Fire and oil can lead to an accident.",
                      "numberValue": {
                          "value": 123.456
                      },
                      "signatureValue": {
                          "media": {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          }
                      },
                      "textValue": {
                          "value": "Exposed wires"
                      },
                      "type": "number"
                  },
                  {
                      "assetValue": {
                          "asset": {
                              "entryType": "tracked",
                              "id": "281474982859091",
                              "name": "trailer 123"
                          }
                      },
                      "checkBoxesValue": {
                          "value": [
                              "One",
                              "Two",
                              "Three",
                              "Four"
                          ]
                      },
                      "dateTimeValue": {
                          "type": "datetime",
                          "value": "2019-06-13T19:08:25Z"
                      },
                      "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                      "issue": {
                          "externalIds": {
                              "maintenanceId": "250020"
                          },
                          "id": "12345"
                      },
                      "label": "Engine Hours",
                      "mediaList": [
                          {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          },
                          {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          }
                      ],
                      "mediaValue": {
                          "mediaList": [
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              }
                          ]
                      },
                      "multipleChoiceValue": {
                          "value": "Yes"
                      },
                      "note": "Fire and oil can lead to an accident.",
                      "numberValue": {
                          "value": 123.456
                      },
                      "signatureValue": {
                          "media": {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          }
                      },
                      "textValue": {
                          "value": "Exposed wires"
                      },
                      "type": "number"
                  }
              ],
              "formTemplate": {
                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                  "revisionId": "1214a1fa-f0c6-408b-bf85-51dc3bc71ac7"
              },
              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
              "isRequired": true,
              "location": {
                  "latitude": 12333122.3,
                  "longitude": 1233331.4
              },
              "score": {
                  "maxPoints": 80,
                  "scorePercent": 75,
                  "scorePoints": 60
              },
              "status": "toDo",
              "submittedAtTime": "2019-06-13T19:08:25Z",
              "submittedBy": {
                  "id": "938172",
                  "type": "driver"
              },
              "title": "Form Submission Title",
              "updatedAtTime": "2019-06-13T19:08:25Z"
          	}     
          }
        }
      }
    ]
  }
}
{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5024,
        "description": "Issue Created",
        "details": {
          "issueCreated": {
             "issue": {
              "asset": {
                  "entryType": "tracked",
                  "id": "281474982859091",
                  "name": "trailer 123"
              },
              "assignedTo": {
                  "id": "938172",
                  "type": "driver"
              },
              "createdAtTime": "2019-06-13T19:08:25Z",
              "description": "Oil spill in left corner of SF1",
              "dueDate": "2019-06-13T19:08:25Z",
              "externalIds": {
                  "maintenanceId": "250020"
              },
              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
              "issueSource": {
                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                  "type": "form"
              },
              "mediaList": [
                  {
                      "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                      "processingStatus": "processing",
                      "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                      "urlExpiresAt": "2019-06-13T19:08:25Z"
                  },
                  {
                      "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                      "processingStatus": "processing",
                      "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                      "urlExpiresAt": "2019-06-13T19:08:25Z"
                  }
              ],
              "priority": "high",
              "status": "open",
              "submittedAtTime": "2019-06-13T19:08:25Z",
              "submittedBy": {
                  "id": "938172",
                  "type": "driver"
              },
              "title": "Oil spill",
              "updatedAtTime": "2019-06-13T19:08:25Z"
              }
          }
      }
    ]
  }
}

🚧

Versioning Update

We have released an updated version of these Alert Webhook 2.0 payloads. All previously created Webhooks will continue to use the previous payload versions across all trigger types, while any new Webhooks will use the new updated payloads documented below.

Note - An alert trigger must be included in the list of triggers below to support new Alert Webhook 2.0 payloads.

Alert incidents can trigger an alert incident webhook payload 2.0 to be sent to a desired webhook address. These alert incidents are triggered by the alerts that you have configured in the Samsara dashboard. See the Alerts Webhook guide for more details on creating and configuring webhook 2.0 in alerts.

Below documents the alert triggers and supported webhook 2.0 payloads.

Alert Incident Webhook Payload

All alert incident webhook 2.0 payloads follow a similar structure:

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "happenedAtTime": "2019-06-13T19:08:25Z",
    "resolvedAtTime": "2019-06-13T19:08:25Z",
    "updatedAtTime": "2019-06-13T19:08:25Z",
    "incidentUrl": "cloud.samsara.com",
    "isResolved": true,
    "conditions": [
      {
        "description": "Alert name",
        "details": {
          "geofenceEntry": {
            "driver": {
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                },
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                },
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ],
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "id": "45646",
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                },
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                },
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                },
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ]
            },
            "vehicle": {
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD",
                  "numberValues": [867, 5309],
                  "stringValues": ["HQ", "Leased"]
                },
                {
                  "id": "494123",
                  "name": "Compliance/ELD",
                  "numberValues": [867, 5309],
                  "stringValues": ["HQ", "Leased"]
                }
              ],
              "externalIds": {
                "maintenanceId": "250020"
              },
              "id": "494123",
              "name": "Fleet Truck #1",
              "serial": "GFRV-43N-VGX",
              "staticAssignedDriver": {
                "id": "0987",
                "name": "Driver Name"
              },
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                },
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                },
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                },
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ]
            }
          }
        },
        "triggerId": 5016
      }
    ]
  }
}

Base Reference

Property NameDescription
configurationId
string
Unique ID of alert configuration.
happenedAtTime
string
Time and date that the alert incident occurred in RFC 3339.
resolvedAtTime
string
Time and date that the alert incident was resolved in RFC 3339.
updatedAtTime
string
Time and date that the alert incident data was last updated in RFC 3339.
incidentUrl
string
Url of alert incident in the cloud dashboard.
isResolved
boolean
Indicates whether the incident is resolved or not.
conditions
object array
An array of conditions associated with the incident.
    description
    string
Descriptive name of the condition.
    details
    object
Unique object representing the granular details of the condition. This object will have trigger specific field nested inside.
    triggerId
    integer
Unique identifier describing the type of condition being represented.

The details object will vary depending on the trigger conditions of the incident. The below Generic Details Object Reference table shows the generic fields that may be supported for a given condition. See the “Details Object Reference” of each trigger in the complete list below for the specific Details Object schema.

Generic Details Object Reference

Property NameDescription
cameraDevice
object
The camera associated with the alert. This string is only returned if the alert has a workforce camera associated with the event.
driver
object
A driver associated with the alert. This object is only returned if the alert has a driver associated with the event.
    attributes
    object array
[beta] Attributes associated with this entity.
        id
        string
The Samsara ID of the attribute
        name
        string
The name of the attribute
        numberValues
        number array
Number values that are associated with this attribute
        stringValues
        string array
String values that are associated with this attribute
    externalIds
    object
A map of external ids
    id
    string
ID of the driver
    name
    string
Name of the driver
    tags
    object array
The list of tags associated with the Driver.
        id
        string
ID of the tag
        name
        string
Name of the tag.
        parentTagId
        string
If this tag is part a hierarchical tag tree, this is the ID of the parent tag, otherwise this will be omitted.
machineInput
object
The machine input associated with the alert. This string is only returned if the alert has machine input associated with the event.
sensor
object
The sensor associated with the alert. This object is only returned if the alert has a sensor associated with the event.
cameraStream
object
The camera stream associated with the alert. This object is only returned if the alert has a stream associated with the event.
trailer
object
A trailer associated with with the alert. This object is only returned if the alert has a trailer associated with the event. Note: Triggers that apply to drivers do no support trailer details in the payload
    attributes
    object array
List of attributes associated with the entity
        id
        string
Id of the attribute
        name
        string
Name of the attribute
        numberValues
        number array
List of number values associated with the attribute
        stringValues
        string array
List of string values associated with the attribute.
    externalIds
    object
A map of external ids
    id
    string
The unique Samsara ID of the Trailer. This is automatically generated when the Trailer object is created. It cannot be changed.
    name
    string
The human-readable name of the Trailer. This is set by a fleet administrator and will appear in both Samsara’s cloud dashboard as well as the Samsara Driver mobile app. By default, this name is the serial number of the Samsara Asset Gateway. It can be set or updated through the Samsara Dashboard or through the API at any time.
    tags
    object array
The list of tags associated with the Trailer.
        id
        string
ID of the tag
        name
        string
Name of the tag.
        parentTagId
        string
If this tag is part a hierarchical tag tree, this is the ID of the parent tag, otherwise this will be omitted.
    trailerSerialNumber
    string
The serial number of the trailer.
vehicle
object
A vehicle associated with the alert. This object is only returned if the alert has a vehicle associated with the event. Note: Triggers that apply to drivers do no support vehicle details in the payload
    attributes
    object array
List of attributes associated with the entity
        id
        string
Id of the attribute
        name
        string
Name of the attribute
        numberValues
        number array
List of number values associated with the attribute
        stringValues
        string array
List of string values associated with the attribute.
    externalIds
    object
A map of external ids
    id
    string
ID of the vehicle
    name
    string
Name of the vehicle
    serial
    string
The serial number of the gateway installed on the asset.
    staticAssignedDriver
    object
Current driver of the vehicle. Note: this parameter includes all assignment sources, not just static assignments.
        id
        string
ID of the driver.
        name
        string
Name of the driver.
    tags
    object array
The list of tags associated with the Vehicle.
        id
        string
ID of the tag
        name
        string
Name of the tag.
        parentTagId
        string
If this tag is part a hierarchical tag tree, this is the ID of the parent tag, otherwise this will be omitted.

Ambient Temperature

Details Object Reference

See Generic Reference

TriggerId: 1003

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "ambientTemperature":{
            "triggerId": 1003,
            "description": "Ambient Temperature",
            "details": {
              "vehicle": null,
              "trailer": null,
              "driver": null,
              "sensor": {
                "id": "12345",
                "name": "My Test Widget",
                "pinnedDeviceId": "0",
                "product": {
                  "shortName": "EM21"
                }
              }
           	}
        }
      }
    ]
  }
}

Asset Engine Off

Details Object Reference

See Generic Reference

TriggerId: 1022

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1022,
        "description": "Asset Engine Off",
        "details": {
          "engineOff":{
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Asset Engine On

Details Object Reference

See Generic Reference

TriggerId: 1021

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1021,
        "description": "Asset Engine On",
        "details": {
          "engineOn":{
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
        	}	
        }
      }
    ]
  }
}

Asset starts moving

Details Object Reference

See Generic Reference

TriggerId: 1013

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1013,
        "description": "Asset starts moving",
        "details": {
          "deviceMovement": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
        	}	
        }
      }
    ]
  }
}

Asset stops moving

Details Object Reference

See Generic Reference

TriggerId: 1031

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1031,
        "description": "Asset stops moving",
        "details": {
          "assetStartsMoving": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                "id": "123a",
                "name": "JobID",
                "numberValues": [10, 817, 92],
                "stringValues": ["w92", "0052f-43", "abc"]
              }
            ]
          }
          }
        }
      }
    ]
  }
}

Camera Connector Disconnected

Details Object Reference

See Generic Reference

TriggerId: 1046

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1046,
        "description": "Camera Connector Disconnected",
        "details": {
          "cameraConnectorDisconected": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Camera Stream Issue

Details Object Reference

See Generic Reference

TriggerId: 1039

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1039,
        "description": "Camera Stream Issue",
        "details": {
          "cameraStreamIssue": {
            "cameraDevice": {
              "id": "1",
              "name": "Camera 1",
              "sites": [
                {
                  "id": "13815dfd-9ced-5079-be39-8ea60ae48544",
                  "name": "Site with 1 Camera"
                }
              ]
            },
            "vehicle": null,
            "trailer": null,
            "driver": null
          }
        }
      }
    ]
  }
}

Cell Signal Loss

Details Object Reference

See Generic Reference

TriggerId: 1033

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1033,
        "description": "Cell Signal Loss",
        "details": {
          "cellSignalLoss": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Cloud Backup Upload Issue

Details Object Reference

See Generic Reference

TriggerId: 1048

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1048,
        "description": "Cloud Backup Upload Issue",
        "details": {
          "cloudBackupUploadIssue": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Dashcam Disconnected

Details Object Reference

See Generic Reference

TriggerId: 1012

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1022,
        "description": "Dashcam Disconnected",
        "details": {
          "dashcamDisconnected":{
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

DVIR Submitted for Asset

Details Object Reference

See Webhook 2.0 Reference

TriggerId: 5005

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5005,
        "description": "DVIR Submitted for Asset",
        "details": {
          "dvirSubmittedDevice": {
            "driver": {
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "id": "45646",
              "name": "Driver Bob"
            },
            "dvir": {
              "authorSignature": {
                "signatoryUser": {
                  "id": "938172",
                  "name": "Joe Driver"
                },
                "signedAtTime": "2020-01-27T07:06:25Z",
                "type": "driver"
              },
              "defects": [
                {
                  "comment": "Air compressor not working",
                  "createdAtTime": "2020-01-27T07:06:25Z",
                  "defectType": "Air Compressor",
                  "id": "18",
                  "isResolved": false,
                  "mechanicNotes": "Extremely large oddly shaped hole in passenger side window.",
                  "mechanicNotesUpdatedAtTime": "2020-01-27T07:06:25Z",
                  "resolvedAtTime": "2020-01-27T07:06:25Z",
                  "resolvedBy": {
                    "id": "8172",
                    "name": "Jane Mechanic",
                    "type": "mechanic"
                  },
                  "trailer": {
                    "externalIds": {
                      "maintenanceId": "250020"
                    },
                    "id": "494123",
                    "name": "Fleet Truck #1"
                  },
                  "vehicle": {
                    "externalIds": {
                      "maintenanceId": "250020"
                    },
                    "gateway": {
                      "model": "VG34",
                      "serial": "GFRV-43N-VGX"
                    },
                    "id": "494123",
                    "licensePlate": "6SAM123",
                    "name": "Fleet Truck #1",
                    "vin": "1GBJ6P1B2HV112765"
                  }
                },
                {
                  "comment": "Air compressor not working",
                  "createdAtTime": "2020-01-27T07:06:25Z",
                  "defectType": "Air Compressor",
                  "id": "18",
                  "isResolved": false,
                  "mechanicNotes": "Extremely large oddly shaped hole in passenger side window.",
                  "mechanicNotesUpdatedAtTime": "2020-01-27T07:06:25Z",
                  "resolvedAtTime": "2020-01-27T07:06:25Z",
                  "resolvedBy": {
                    "id": "8172",
                    "name": "Jane Mechanic",
                    "type": "mechanic"
                  },
                  "trailer": {
                    "externalIds": {
                      "maintenanceId": "250020"
                    },
                    "id": "494123",
                    "name": "Fleet Truck #1"
                  },
                  "vehicle": {
                    "externalIds": {
                      "maintenanceId": "250020"
                    },
                    "gateway": {
                      "model": "VG34",
                      "serial": "GFRV-43N-VGX"
                    },
                    "id": "494123",
                    "licensePlate": "6SAM123",
                    "name": "Fleet Truck #1",
                    "vin": "1GBJ6P1B2HV112765"
                  }
                }
              ],
              "endTime": "2020-01-27T07:06:25Z",
              "formattedLocation": "350 Rhode Island St Ste. 400S, San Francisco, CA 94103",
              "hasDefects": false,
              "id": "12345",
              "mechanicNotes": "Replaced headlight on passenger side.",
              "needsCorrection": false,
              "odometerMeters": 91823,
              "safetyStatus": "unsafe",
              "secondSignature": {
                "signatoryUser": {
                  "id": "938172",
                  "name": "Joe Driver"
                },
                "signedAtTime": "2020-01-27T07:06:25Z",
                "type": "driver"
              },
              "startTime": "2020-01-27T07:06:25Z",
              "thirdSignature": {
                "signatoryUser": {
                  "id": "938172",
                  "name": "Joe Driver"
                },
                "signedAtTime": "2020-01-27T07:06:25Z",
                "type": "driver"
              },
              "trailer": {
                "externalIds": {
                  "maintenanceId": "250020"
                },
                "id": "494123",
                "name": "Fleet Truck #1"
              },
              "type": "mechanic"
            },
            "vehicle": {
              "externalIds": {
                "maintenanceId": "250020"
              },
              "gateway": {
                "model": "VG34",
                "serial": "GFRV-43N-VGX"
              },
              "id": "494123",
              "licensePlate": "6SAM123",
              "name": "Fleet Truck #1",
              "vin": "1GBJ6P1B2HV112765"
            }
          }
        }
      }
    ]
  }
}

Data Input Value

Details Object Reference

See Generic Reference

TriggerId: 1015

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1015,
        "description": "Data Input Value",
        "details": {
          "dataInputValue": {
            "machineInput": {
              "id": "1",
              "name": "testMachineInput"
            },           
            "vehicle": null,
            "trailer": null,
            "driver": null
          }
        }
      }
    ]
  }
}

Driver Action - Message Sent

Details Object Reference

Note: Vehicle and trailer fields will be null and are not yet supported for driver based alert triggers

See Generic Reference

TriggerId: 5010

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5010,
        "description": "Driver Action - Message Sent",
        "details": {
          "driverMessageSent": {
            "vehicle": null,
            "trailer": null,
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Driver App Sign In

Details Object Reference

Note: Vehicle and trailer fields will be null and are not yet supported for driver based alert triggers

See Generic Reference

TriggerId: 5012

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5012,
        "description": "Driver App Sign In",
        "details": {
          "driverAppSignIn": {
            "vehicle": null,
            "trailer": null,
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Driver App Sign Out

Details Object Reference

Note: Vehicle and trailer fields will be null and are not yet supported for driver based alert triggers

See Generic Reference

TriggerId: 5013

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5013,
        "description": "Driver App Sign Out",
        "details": {
          "driverAppSignOut": {
            "vehicle": null,
            "trailer": null,
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

[Beta] Driver Document Submitted

Details Object Reference

See Webhook 2.0 Reference

TriggerId: 5009

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5009,
        "description": "Driver Document Submitted",
        "details": {
          "driverDocumentSubmitted": {
            "document": {
              "conditionalFieldSections": [
                {
                  "conditionalFieldFirstIndex": 5083143870897228000,
                  "conditionalFieldLastIndex": 2770896918544835600,
                  "triggeringFieldIndex": 8389989517472915000,
                  "triggeringFieldValue": "Optiona 1"
                },
                {
                  "conditionalFieldFirstIndex": 5083143870897228000,
                  "conditionalFieldLastIndex": 2770896918544835600,
                  "triggeringFieldIndex": 8389989517472915000,
                  "triggeringFieldValue": "Optiona 1"
                },
                {
                  "conditionalFieldFirstIndex": 5083143870897228000,
                  "conditionalFieldLastIndex": 2770896918544835600,
                  "triggeringFieldIndex": 8389989517472915000,
                  "triggeringFieldValue": "Optiona 1"
                }
              ],
              "createdAtTime": "1976-03-06T08:22:53Z",
              "documentType": {
                "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                "name": "Fleet Truck List"
              },
              "fields": [
                {
                  "label": "Load weight",
                  "type": "photo",
                  "value": {
                    "barcodeValue": [
                      {
                        "barcodeType": "org.gs1.EAN-13",
                        "barcodeValue": "0853883003114"
                      },
                      {
                        "barcodeType": "org.gs1.EAN-13",
                        "barcodeValue": "0853883003114"
                      },
                      {
                        "barcodeType": "org.gs1.EAN-13",
                        "barcodeValue": "0853883003114"
                      },
                      {
                        "barcodeType": "org.gs1.EAN-13",
                        "barcodeValue": "0853883003114"
                      }
                    ],
                    "dateTimeValue": {
                      "dateTime": "1984-10-23T07:14:29Z"
                    },
                    "multipleChoiceValue": [
                      {
                        "selected": false,
                        "value": "Yes"
                      },
                      {
                        "selected": false,
                        "value": "Yes"
                      },
                      {
                        "selected": false,
                        "value": "Yes"
                      }
                    ],
                    "numberValue": 123.456,
                    "photoValue": [
                      {
                        "id": "f5271458-21f9-4a9f-a290-780c6d8840ff",
                        "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                      },
                      {
                        "id": "f5271458-21f9-4a9f-a290-780c6d8840ff",
                        "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                      }
                    ],
                    "scannedDocumentValue": [
                      {
                        "id": "f5271458-21f9-4a9f-a290-780c6d8840ff",
                        "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                      },
                      {
                        "id": "f5271458-21f9-4a9f-a290-780c6d8840ff",
                        "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                      },
                      {
                        "id": "f5271458-21f9-4a9f-a290-780c6d8840ff",
                        "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                      }
                    ],
                    "signatureValue": {
                      "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                      "name": "John Smith",
                      "signedAtTime": "1996-01-30T06:14:20Z",
                      "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                    },
                    "stringValue": "Red Truck"
                  }
                },
                {
                  "label": "Load weight",
                  "type": "photo",
                  "value": {
                    "barcodeValue": [
                      {
                        "barcodeType": "org.gs1.EAN-13",
                        "barcodeValue": "0853883003114"
                      },
                      {
                        "barcodeType": "org.gs1.EAN-13",
                        "barcodeValue": "0853883003114"
                      },
                      {
                        "barcodeType": "org.gs1.EAN-13",
                        "barcodeValue": "0853883003114"
                      },
                      {
                        "barcodeType": "org.gs1.EAN-13",
                        "barcodeValue": "0853883003114"
                      }
                    ],
                    "dateTimeValue": {
                      "dateTime": "1984-10-23T07:14:29Z"
                    },
                    "multipleChoiceValue": [
                      {
                        "selected": false,
                        "value": "Yes"
                      },
                      {
                        "selected": false,
                        "value": "Yes"
                      },
                      {
                        "selected": false,
                        "value": "Yes"
                      }
                    ],
                    "numberValue": 123.456,
                    "photoValue": [
                      {
                        "id": "f5271458-21f9-4a9f-a290-780c6d8840ff",
                        "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                      },
                      {
                        "id": "f5271458-21f9-4a9f-a290-780c6d8840ff",
                        "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                      }
                    ],
                    "scannedDocumentValue": [
                      {
                        "id": "f5271458-21f9-4a9f-a290-780c6d8840ff",
                        "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                      },
                      {
                        "id": "f5271458-21f9-4a9f-a290-780c6d8840ff",
                        "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                      },
                      {
                        "id": "f5271458-21f9-4a9f-a290-780c6d8840ff",
                        "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                      }
                    ],
                    "signatureValue": {
                      "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                      "name": "John Smith",
                      "signedAtTime": "1996-01-30T06:14:20Z",
                      "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                    },
                    "stringValue": "Red Truck"
                  }
                }
              ],
              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
              "name": "Dropoff Slip 123",
              "notes": "Missing a crate",
              "route": {
                "externalIds": {
                  "myRouteId": "abc"
                },
                "id": "131313",
                "name": "Pineapple delivery"
              },
              "routeStop": {
                "externalIds": {
                  "siteId": "54"
                },
                "id": "494123",
                "name": "Company Warehouse #1"
              },
              "state": "submitted",
              "updatedAtTime": "2009-01-10T02:28:18Z"
            },
            "driver": {
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "id": "45646",
              "name": "Driver Bob"
            },
            "vehicle": {
              "externalIds": {
                "maintenanceId": "250020"
              },
              "gateway": {
                "model": "VG34",
                "serial": "GFRV-43N-VGX"
              },
              "id": "494123",
              "licensePlate": "6SAM123",
              "name": "Fleet Truck #1",
              "vin": "1GBJ6P1B2HV112765"
            }
          }
        }
      }
    ]
  }
}

Driver HOS Violation

Details Object Reference

See Generic Reference

TriggerId: 1018

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1018,
        "description": "Driver HOS Violation",
        "details": {
          "hosViolation": {
            "vehicle": null,
            "trailer": null,
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Driver Message Received

Details Object Reference

Note: Vehicle and trailer fields will be null and are not yet supported for driver based alert triggers

See Generic Reference

TriggerId: 5011

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5011,
        "description": "Driver Message Received",
        "details": {
          "driverMessageReceived": {
            "vehicle": null,
            "trailer": null,
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

[Beta] Form Submitted

Details Object Reference

See Webhook 2.0 Reference

TriggerId: 5023

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5023,
        "description": "Form Submitted",
        "details": {
          "formSubmitted":{
            "form": {
              "asset": {
                  "entryType": "tracked",
                  "id": "281474982859091",
                  "name": "trailer 123"
              },
              "assignedAtTime": "2019-06-13T19:08:25Z",
              "assignedTo": {
                  "id": "938172",
                  "type": "driver"
              },
              "createdAtTime": "2019-06-13T19:08:25Z",
              "dueAtTime": "2019-06-13T19:08:25Z",
              "externalIds": {
                  "maintenanceId": "250020"
              },
              "fields": [
                  {
                      "assetValue": {
                          "asset": {
                              "entryType": "tracked",
                              "id": "281474982859091",
                              "name": "trailer 123"
                          }
                      },
                      "checkBoxesValue": {
                          "value": [
                              "One",
                              "Two",
                              "Three",
                              "Four"
                          ]
                      },
                      "dateTimeValue": {
                          "type": "datetime",
                          "value": "2019-06-13T19:08:25Z"
                      },
                      "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                      "issue": {
                          "externalIds": {
                              "maintenanceId": "250020"
                          },
                          "id": "12345"
                      },
                      "label": "Engine Hours",
                      "mediaList": [
                          {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          },
                          {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          }
                      ],
                      "mediaValue": {
                          "mediaList": [
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              }
                          ]
                      },
                      "multipleChoiceValue": {
                          "value": "Yes"
                      },
                      "note": "Fire and oil can lead to an accident.",
                      "numberValue": {
                          "value": 123.456
                      },
                      "signatureValue": {
                          "media": {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          }
                      },
                      "textValue": {
                          "value": "Exposed wires"
                      },
                      "type": "number"
                  },
                  {
                      "assetValue": {
                          "asset": {
                              "entryType": "tracked",
                              "id": "281474982859091",
                              "name": "trailer 123"
                          }
                      },
                      "checkBoxesValue": {
                          "value": [
                              "One",
                              "Two",
                              "Three",
                              "Four"
                          ]
                      },
                      "dateTimeValue": {
                          "type": "datetime",
                          "value": "2019-06-13T19:08:25Z"
                      },
                      "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                      "issue": {
                          "externalIds": {
                              "maintenanceId": "250020"
                          },
                          "id": "12345"
                      },
                      "label": "Engine Hours",
                      "mediaList": [
                          {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          },
                          {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          }
                      ],
                      "mediaValue": {
                          "mediaList": [
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              }
                          ]
                      },
                      "multipleChoiceValue": {
                          "value": "Yes"
                      },
                      "note": "Fire and oil can lead to an accident.",
                      "numberValue": {
                          "value": 123.456
                      },
                      "signatureValue": {
                          "media": {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          }
                      },
                      "textValue": {
                          "value": "Exposed wires"
                      },
                      "type": "number"
                  },
                  {
                      "assetValue": {
                          "asset": {
                              "entryType": "tracked",
                              "id": "281474982859091",
                              "name": "trailer 123"
                          }
                      },
                      "checkBoxesValue": {
                          "value": [
                              "One",
                              "Two",
                              "Three",
                              "Four"
                          ]
                      },
                      "dateTimeValue": {
                          "type": "datetime",
                          "value": "2019-06-13T19:08:25Z"
                      },
                      "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                      "issue": {
                          "externalIds": {
                              "maintenanceId": "250020"
                          },
                          "id": "12345"
                      },
                      "label": "Engine Hours",
                      "mediaList": [
                          {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          },
                          {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          }
                      ],
                      "mediaValue": {
                          "mediaList": [
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              }
                          ]
                      },
                      "multipleChoiceValue": {
                          "value": "Yes"
                      },
                      "note": "Fire and oil can lead to an accident.",
                      "numberValue": {
                          "value": 123.456
                      },
                      "signatureValue": {
                          "media": {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          }
                      },
                      "textValue": {
                          "value": "Exposed wires"
                      },
                      "type": "number"
                  }
              ],
              "formTemplate": {
                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                  "revisionId": "1214a1fa-f0c6-408b-bf85-51dc3bc71ac7"
              },
              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
              "isRequired": true,
              "location": {
                  "latitude": 12333122.3,
                  "longitude": 1233331.4
              },
              "score": {
                  "maxPoints": 80,
                  "scorePercent": 75,
                  "scorePoints": 60
              },
              "status": "toDo",
              "submittedAtTime": "2019-06-13T19:08:25Z",
              "submittedBy": {
                  "id": "938172",
                  "type": "driver"
              },
              "title": "Form Submission Title",
              "updatedAtTime": "2019-06-13T19:08:25Z"
          	}     
          }
        }
      }
    ]
  }
}

Fuel Level (Percentage)

Details Object Reference

See Generic Reference

TriggerId: 1005

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1005,
        "description": "Fuel Level (Percentage)",
        "details": {
          "fuelLevelPercentage":{
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
            	]	
            }
          }
        }
      }
    ]
  }
}

GPS Signal Loss

Details Object Reference

See Generic Reference

TriggerId: 1032

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1032,
        "description": "GPS Signal Loss",
        "details": {
          "gpsSignalLoss": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Gateway Disconnected

Details Object Reference

See Generic Reference

TriggerId: 1030

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1030,
        "description": "Gateway Disconnected",
        "details": {
          "gatewayDisconnected": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

[Beta] Gateway Unplugged

Details Object Reference

See Webhook 2.0 Reference

TriggerId: 1009

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1009,
        "description": "Gateway Unplugged",
        "details": {
          "gatewayUnplugged": {
            "gateway": {
              "model": "VG34",
              "serial": "GFRV-43N-VGX",
              "vehicle": {
                "externalIds": {
                  "maintenanceId": "250020"
                },
                "id": "494123",
                "name": "Fleet Truck #1"
              }
            }
          }
        }
      }
    ]
  }
}

[Beta] Geofence Entry

Details Object Reference

See Webhook 2.0 Reference

TriggerId: 5016

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5016,
        "description": "Geofence Entry",
        "details": {
          "geofenceEntry": {
            "address": {
              "externalIds": {
                "siteId": "54"
              },
              "formattedAddress": "350 Rhode Island St, San Francisco, CA",
              "geofence": {
                "circle": {
                  "latitude": 37.7749,
                  "longitude": 137.7749,
                  "radiusMeters": 23
                },
                "polygon": {
                  "vertices": [
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    },
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    }
                  ]
                },
                "settings": {
                  "showAddresses": [
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    },
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    },
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    },
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    }
                  ]
                }
              },
              "id": "494123",
              "name": "Company Office #1"
            },
            "vehicle": {
              "externalIds": {
                "maintenanceId": "250020"
              },
              "gateway": {
                "model": "VG34",
                "serial": "GFRV-43N-VGX"
              },
              "id": "494123",
              "licensePlate": "6SAM123",
              "name": "Fleet Truck #1",
              "vin": "1GBJ6P1B2HV112765"
            }
          }
        }
      }
    ]
  }
}

[Beta] Geofence Exit

Details Object Reference

See Webhook 2.0 Reference

TriggerId: 5017

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5017,
        "description": "Geofence Exit",
        "details": {
          "geofenceExit": {
            "address": {
              "externalIds": {
                "siteId": "54"
              },
              "formattedAddress": "350 Rhode Island St, San Francisco, CA",
              "geofence": {
                "circle": {
                  "latitude": 37.7749,
                  "longitude": 137.7749,
                  "radiusMeters": 23
                },
                "polygon": {
                  "vertices": [
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    },
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    }
                  ]
                },
                "settings": {
                  "showAddresses": [
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    },
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    },
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    },
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    }
                  ]
                }
              },
              "id": "494123",
              "name": "Company Office #1"
            },
            "vehicle": {
              "externalIds": {
                "maintenanceId": "250020"
              },
              "gateway": {
                "model": "VG34",
                "serial": "GFRV-43N-VGX"
              },
              "id": "494123",
              "licensePlate": "6SAM123",
              "name": "Fleet Truck #1",
              "vin": "1GBJ6P1B2HV112765"
            }
          }
        }
      }
    ]
  }
}

Harsh Event

Details Object Reference

See Generic Reference

TriggerId: 1023

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1023,
        "description": "Harsh Event",
        "details": {
          "harshEvent": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Inactivity

Details Object Reference

See Generic Reference

TriggerId: 1038

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1038,
        "description": "Inactivity",
        "details": {
          "inactivity": {
            "cameraStream": {
              "cameraDevice": {
                "id": "1",
                "name": "Camera 1",
                "sites": [
                  {
                    "id": "13815dfd-9ced-5079-be39-8ea60ae48544",
                    "name": "Site with 1 Camera"
                  }
                ]
              },
              "id": "1",
              "name": "Stream 1"
            },
            "vehicle": null,
            "trailer": null,
            "driver": null
          }
        }
      }
    ]
  }
}

Inside Geofence

Details Object Reference

See Generic Reference

TriggerId: 1014

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1014,
        "description": "Inside Geofence",
        "details": {
          "insideGeofence": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

[Beta] Issue Created

Details Object Reference

See Webhook 2.0 Reference

TriggerId: 5024

Example

    }

Jamming Detected

Details Object Reference

See Generic Reference

TriggerId: 1047

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1047,
        "description": "Jamming Detected",
        "details": {
          "jammingDetected": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Motion Detected

Details Object Reference

See Generic Reference

TriggerId: 1037

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1037,
        "description": "Motion Detected",
        "details": {
          "motionDetected": { 
            "cameraStream": {
              "cameraDevice": {
                "id": "1",
                "name": "Camera 1",
                "sites": [
                  {
                    "id": "13815dfd-9ced-5079-be39-8ea60ae48544",
                    "name": "Site with 1 Camera"
                  }
                ]
              },
              "id": "1",
              "name": "Stream 1"
            },
            "vehicle": null,
            "trailer": null,
            "driver": null
          }
        }
      }
    ]
  }
}

Out of Route

Details Object Reference

See Generic Reference

TriggerId: 1027

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1027,
        "description": "Out of Route",
        "details": {
          "outOfRoute": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Outside Geofence

Details Object Reference

See Generic Reference

TriggerId: 1020

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1020,
        "description": "Outside Geofence",
        "details": {
          "outsideGeofence": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Panic Button

Details Object Reference

See Generic Reference

TriggerId: 1034

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1034,
        "description": "Panic Button",
        "details": {
        "panicButton": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
        }
        }
      }
    ]
  }
}

Person Detected

Details Object Reference

See Generic Reference

TriggerId: 1035

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1035,
        "description": "Person Detected",
        "details": {
          "personDetected": {
            "cameraStream": {
              "cameraDevice": {
                "id": "1",
                "name": "Camera 1",
                "sites": [
                  {
                    "id": "13815dfd-9ced-5079-be39-8ea60ae48544",
                    "name": "Site with 1 Camera"
                  }
                ]
              },
              "id": "1",
              "name": "Stream 1"
            },
            "vehicle": null,
            "trailer": null,
            "driver": null
          }
        }
      }
    ]
  }
}

Reefer Temperature

Details Object Reference

See Generic Reference

TriggerId: 1056

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1056,
        "description": "Reefer Temperature",
        "details": {
          "reeferTemperature": {
          "vehicle": {
            "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Route Stop ETA Alert

Details Object Reference

See Generic Reference

TriggerId: 5018

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5018,
        "description": "Route Stop ETA Alert",
        "details": {
          "routeStopETA": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Scheduled Maintenance

Details Object Reference

See Generic Reference

TriggerId: 1024

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1024,
        "description": "Scheduled Maintenance",
        "details": {
          "scheduledMaintenance": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Scheduled Maintenance by Engine Hours

Details Object Reference

See Generic Reference

TriggerId: 1026

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1026,
        "description": "Scheduled Maintenance by Engine Hours",
        "details": {
          "scheduledMaintenanceByEngineHours": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Scheduled Maintenance by Odometer

Details Object Reference

See Generic Reference

TriggerId: 1025

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1025,
        "description": "Scheduled Maintenance by Odometer",
        "details": {
          "scheduledMaintenanceOdometer": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Site Gateway Disconnected

Details Object Reference

See Generic Reference

TriggerId: 1040

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1040,
        "description": "Site Gateway Disconnected",
        "details": {
          "vehicle": {
            "id": "45646",
            "externalIds": {
              "maintenanceId": "250020"
            },
            "name": "Fleet Truck #1",
            "tags": [
              {
                "id": "3914",
                "name": "East Coast",
                "parentTagId": "4815"
              }
            ],
            "attributes": [
              {
                "id": "494123",
                "name": "Compliance/ELD"
              }
            ],
            "serial": "GFRV-43N-VGX"
          },
          "trailer": {
            "id": "494123",
            "externalIds": {
              "maintenanceId": "250020"
            },
            "name": "Trailer-123",
            "tags": [
              {
                "id": "3914",
                "name": "East Coast",
                "parentTagId": "4815"
              }
            ],
            "attributes": [
              {
                "id": "494123",
                "name": "Compliance/ELD"
              }
            ],
            "trailerSerialNumber": "8V8WD530FLN016251"
          },
          "driver": {
            "id": "45646",
            "externalIds": {
              "payrollId": "ABFS18600"
            },
            "name": "Driver Bob",
            "tags": [
              {
                "id": "3914",
                "name": "East Coast",
                "parentTagId": "4815"
              }
            ],
            "attributes": [
              {
                "id": "123a",
                "name": "JobID",
                "numberValues": [10, 817, 92],
                "stringValues": ["w92", "0052f-43", "abc"]
              }
            ]
          }
        }
      }
    ]
  }
}

Tampering Detected

Details Object Reference

See Generic Reference

TriggerId: 1045

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1045,
        "description": "Tampering Detected",
        "details": {
          "tamperingDetected": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Tire Faults

Details Object Reference

See Generic Reference

TriggerId: 1043

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1043,
        "description": "Tire Faults",
        "details": {
          "tireFaults": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Unassigned Driving

Details Object Reference

See Generic Reference

TriggerId: 1016

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1016,
        "description": "Unassigned Driving",
        "details": {
          "vehicle": {
            "id": "45646",
            "externalIds": {
              "maintenanceId": "250020"
            },
            "name": "Fleet Truck #1",
            "tags": [
              {
                "id": "3914",
                "name": "East Coast",
                "parentTagId": "4815"
              }
            ],
            "attributes": [
              {
                "id": "494123",
                "name": "Compliance/ELD"
              }
            ],
            "serial": "GFRV-43N-VGX"
          },
          "trailer": {
            "id": "494123",
            "externalIds": {
              "maintenanceId": "250020"
            },
            "name": "Trailer-123",
            "tags": [
              {
                "id": "3914",
                "name": "East Coast",
                "parentTagId": "4815"
              }
            ],
            "attributes": [
              {
                "id": "494123",
                "name": "Compliance/ELD"
              }
            ],
            "trailerSerialNumber": "8V8WD530FLN016251"
          },
          "driver": {
            "id": "45646",
            "externalIds": {
              "payrollId": "ABFS18600"
            },
            "name": "Driver Bob",
            "tags": [
              {
                "id": "3914",
                "name": "East Coast",
                "parentTagId": "4815"
              }
            ],
            "attributes": [
              {
                "id": "123a",
                "name": "JobID",
                "numberValues": [10, 817, 92],
                "stringValues": ["w92", "0052f-43", "abc"]
              }
            ]
          }
        }
      }
    ]
  }
}

Vehicle Battery

Details Object Reference

See Generic Reference

TriggerId: 1007

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1007,
        "description": "Vehicle Battery",
        "details": {
          "unassignedDriving": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Vehicle DEF Level (Percentage)

Details Object Reference

See Generic Reference

TriggerId: 1006

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1006,
        "description": "Vehicle DEF Level (Percentage)",
        "details": {
          "vehicleDefLevelPercentage": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Vehicle Detected

Details Object Reference

See Generic Reference

TriggerId: 1036

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1036,
        "description": "Vehicle Detected",
        "details": {
          "vehicleDetected": {
            "cameraStream": {
              "cameraDevice": {
                "id": "1",
                "name": "Camera 1",
                "sites": [
                  {
                    "id": "13815dfd-9ced-5079-be39-8ea60ae48544",
                    "name": "Site with 1 Camera"
                  }
                ]
              },
              "id": "1",
              "name": "Stream 1"
            },
            "vehicle": null,
            "trailer": null,
            "driver": null
          }
        }
      }
    ]
  }
}

Vehicle Engine Idle

Details Object Reference

See Generic Reference

TriggerId: 1019

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1019,
        "description": "Vehicle Engine Idle",
        "details": {
          "engineIdle": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Vehicle Faults

Details Object Reference

See Generic Reference

TriggerId: 1029

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1029,
        "description": "Vehicle Faults",
        "details": {
          "vehicle": {
            "id": "45646",
            "externalIds": {
              "maintenanceId": "250020"
            },
            "name": "Fleet Truck #1",
            "tags": [
              {
                "id": "3914",
                "name": "East Coast",
                "parentTagId": "4815"
              }
            ],
            "attributes": [
              {
                "id": "494123",
                "name": "Compliance/ELD"
              }
            ],
            "serial": "GFRV-43N-VGX"
          },
          "trailer": {
            "id": "494123",
            "externalIds": {
              "maintenanceId": "250020"
            },
            "name": "Trailer-123",
            "tags": [
              {
                "id": "3914",
                "name": "East Coast",
                "parentTagId": "4815"
              }
            ],
            "attributes": [
              {
                "id": "494123",
                "name": "Compliance/ELD"
              }
            ],
            "trailerSerialNumber": "8V8WD530FLN016251"
          },
          "driver": {
            "id": "45646",
            "externalIds": {
              "payrollId": "ABFS18600"
            },
            "name": "Driver Bob",
            "tags": [
              {
                "id": "3914",
                "name": "East Coast",
                "parentTagId": "4815"
              }
            ],
            "attributes": [
              {
                "id": "123a",
                "name": "JobID",
                "numberValues": [10, 817, 92],
                "stringValues": ["w92", "0052f-43", "abc"]
              }
            ]
          }
        }
      }
    ]
  }
}

Vehicle Speed

Details Object Reference

See Generic Reference

TriggerId: 1000

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1000,
        "description": "Vehicle Speed",
        "details": {
          "speed":{
            "currentSpeedKilometersPerHour": 120,
            "minDurationMilliseconds": 30000,
            "operation": "GREATER",
            "thresholdSpeedKilometersPerHour": 100,
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Severe Speeding

Details Object Reference

See Webhook 2.0 Reference

TriggerId: 5022

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5022,
        "description": "Severe Speeding",
        "details": {
          "severeSpeeding":{
            "startTime": "2019-06-13T19:08:25Z",
            "tripStartTime": "2019-06-13T19:08:25Z",
            "vehicle": {
                "externalIds": {
                    "maintenanceId": "250020"
                },
                "id": "494123",
                "licensePlate": "6SAM123",
                "name": "Fleet Truck #1",
                "vehicleVin": "1GBJ6P1B2HV112765"
            }
          }
        }
      }
    ]
  }
}
{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5023,
        "description": "Form Submitted",
        "details": {
          "formSubmitted":{
            "form": {
              "asset": {
                  "entryType": "tracked",
                  "id": "281474982859091",
                  "name": "trailer 123"
              },
              "assignedAtTime": "2019-06-13T19:08:25Z",
              "assignedTo": {
                  "id": "938172",
                  "type": "driver"
              },
              "createdAtTime": "2019-06-13T19:08:25Z",
              "dueAtTime": "2019-06-13T19:08:25Z",
              "externalIds": {
                  "maintenanceId": "250020"
              },
              "fields": [
                  {
                      "assetValue": {
                          "asset": {
                              "entryType": "tracked",
                              "id": "281474982859091",
                              "name": "trailer 123"
                          }
                      },
                      "checkBoxesValue": {
                          "value": [
                              "One",
                              "Two",
                              "Three",
                              "Four"
                          ]
                      },
                      "dateTimeValue": {
                          "type": "datetime",
                          "value": "2019-06-13T19:08:25Z"
                      },
                      "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                      "issue": {
                          "externalIds": {
                              "maintenanceId": "250020"
                          },
                          "id": "12345"
                      },
                      "label": "Engine Hours",
                      "mediaList": [
                          {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          },
                          {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          }
                      ],
                      "mediaValue": {
                          "mediaList": [
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              }
                          ]
                      },
                      "multipleChoiceValue": {
                          "value": "Yes"
                      },
                      "note": "Fire and oil can lead to an accident.",
                      "numberValue": {
                          "value": 123.456
                      },
                      "signatureValue": {
                          "media": {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          }
                      },
                      "textValue": {
                          "value": "Exposed wires"
                      },
                      "type": "number"
                  },
                  {
                      "assetValue": {
                          "asset": {
                              "entryType": "tracked",
                              "id": "281474982859091",
                              "name": "trailer 123"
                          }
                      },
                      "checkBoxesValue": {
                          "value": [
                              "One",
                              "Two",
                              "Three",
                              "Four"
                          ]
                      },
                      "dateTimeValue": {
                          "type": "datetime",
                          "value": "2019-06-13T19:08:25Z"
                      },
                      "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                      "issue": {
                          "externalIds": {
                              "maintenanceId": "250020"
                          },
                          "id": "12345"
                      },
                      "label": "Engine Hours",
                      "mediaList": [
                          {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          },
                          {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          }
                      ],
                      "mediaValue": {
                          "mediaList": [
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              }
                          ]
                      },
                      "multipleChoiceValue": {
                          "value": "Yes"
                      },
                      "note": "Fire and oil can lead to an accident.",
                      "numberValue": {
                          "value": 123.456
                      },
                      "signatureValue": {
                          "media": {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          }
                      },
                      "textValue": {
                          "value": "Exposed wires"
                      },
                      "type": "number"
                  },
                  {
                      "assetValue": {
                          "asset": {
                              "entryType": "tracked",
                              "id": "281474982859091",
                              "name": "trailer 123"
                          }
                      },
                      "checkBoxesValue": {
                          "value": [
                              "One",
                              "Two",
                              "Three",
                              "Four"
                          ]
                      },
                      "dateTimeValue": {
                          "type": "datetime",
                          "value": "2019-06-13T19:08:25Z"
                      },
                      "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                      "issue": {
                          "externalIds": {
                              "maintenanceId": "250020"
                          },
                          "id": "12345"
                      },
                      "label": "Engine Hours",
                      "mediaList": [
                          {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          },
                          {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          }
                      ],
                      "mediaValue": {
                          "mediaList": [
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              }
                          ]
                      },
                      "multipleChoiceValue": {
                          "value": "Yes"
                      },
                      "note": "Fire and oil can lead to an accident.",
                      "numberValue": {
                          "value": 123.456
                      },
                      "signatureValue": {
                          "media": {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          }
                      },
                      "textValue": {
                          "value": "Exposed wires"
                      },
                      "type": "number"
                  }
              ],
              "formTemplate": {
                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                  "revisionId": "1214a1fa-f0c6-408b-bf85-51dc3bc71ac7"
              },
              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
              "isRequired": true,
              "location": {
                  "latitude": 12333122.3,
                  "longitude": 1233331.4
              },
              "score": {
                  "maxPoints": 80,
                  "scorePercent": 75,
                  "scorePoints": 60
              },
              "status": "toDo",
              "submittedAtTime": "2019-06-13T19:08:25Z",
              "submittedBy": {
                  "id": "938172",
                  "type": "driver"
              },
              "title": "Form Submission Title",
              "updatedAtTime": "2019-06-13T19:08:25Z"
          	}     
          }
        }
      }
    ]
  }
}
{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5024,
        "description": "Issue Created",
        "details": {
          "issueCreated": {
             "issue": {
              "asset": {
                  "entryType": "tracked",
                  "id": "281474982859091",
                  "name": "trailer 123"
              },
              "assignedTo": {
                  "id": "938172",
                  "type": "driver"
              },
              "createdAtTime": "2019-06-13T19:08:25Z",
              "description": "Oil spill in left corner of SF1",
              "dueDate": "2019-06-13T19:08:25Z",
              "externalIds": {
                  "maintenanceId": "250020"
              },
              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
              "issueSource": {
                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                  "type": "form"
              },
              "mediaList": [
                  {
                      "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                      "processingStatus": "processing",
                      "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                      "urlExpiresAt": "2019-06-13T19:08:25Z"
                  },
                  {
                      "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                      "processingStatus": "processing",
                      "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                      "urlExpiresAt": "2019-06-13T19:08:25Z"
                  }
              ],
              "priority": "high",
              "status": "open",
              "submittedAtTime": "2019-06-13T19:08:25Z",
              "submittedBy": {
                  "id": "938172",
                  "type": "driver"
              },
              "title": "Oil spill",
              "updatedAtTime": "2019-06-13T19:08:25Z"
              }
          }
      }
    ]
  }
}

hello

🚧

Versioning Update

We have released an updated version of these Alert Webhook 2.0 payloads. All previously created Webhooks will continue to use the previous payload versions across all trigger types, while any new Webhooks will use the new updated payloads documented below.

Note - An alert trigger must be included in the list of triggers below to support new Alert Webhook 2.0 payloads.

Alert incidents can trigger an alert incident webhook payload 2.0 to be sent to a desired webhook address. These alert incidents are triggered by the alerts that you have configured in the Samsara dashboard. See the Alerts Webhook guide for more details on creating and configuring webhook 2.0 in alerts.

Below documents the alert triggers and supported webhook 2.0 payloads.

Alert Incident Webhook Payload

All alert incident webhook 2.0 payloads follow a similar structure:

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "happenedAtTime": "2019-06-13T19:08:25Z",
    "resolvedAtTime": "2019-06-13T19:08:25Z",
    "updatedAtTime": "2019-06-13T19:08:25Z",
    "incidentUrl": "cloud.samsara.com",
    "isResolved": true,
    "conditions": [
      {
        "description": "Alert name",
        "details": {
          "geofenceEntry": {
            "driver": {
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                },
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                },
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ],
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "id": "45646",
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                },
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                },
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                },
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ]
            },
            "vehicle": {
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD",
                  "numberValues": [867, 5309],
                  "stringValues": ["HQ", "Leased"]
                },
                {
                  "id": "494123",
                  "name": "Compliance/ELD",
                  "numberValues": [867, 5309],
                  "stringValues": ["HQ", "Leased"]
                }
              ],
              "externalIds": {
                "maintenanceId": "250020"
              },
              "id": "494123",
              "name": "Fleet Truck #1",
              "serial": "GFRV-43N-VGX",
              "staticAssignedDriver": {
                "id": "0987",
                "name": "Driver Name"
              },
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                },
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                },
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                },
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ]
            }
          }
        },
        "triggerId": 5016
      }
    ]
  }
}

Base Reference

Property NameDescription
configurationId
string
Unique ID of alert configuration.
happenedAtTime
string
Time and date that the alert incident occurred in RFC 3339.
resolvedAtTime
string
Time and date that the alert incident was resolved in RFC 3339.
updatedAtTime
string
Time and date that the alert incident data was last updated in RFC 3339.
incidentUrl
string
Url of alert incident in the cloud dashboard.
isResolved
boolean
Indicates whether the incident is resolved or not.
conditions
object array
An array of conditions associated with the incident.
    description
    string
Descriptive name of the condition.
    details
    object
Unique object representing the granular details of the condition. This object will have trigger specific field nested inside.
    triggerId
    integer
Unique identifier describing the type of condition being represented.

The details object will vary depending on the trigger conditions of the incident. The below Generic Details Object Reference table shows the generic fields that may be supported for a given condition. See the “Details Object Reference” of each trigger in the complete list below for the specific Details Object schema.

Generic Details Object Reference

Property NameDescription
cameraDevice
object
The camera associated with the alert. This string is only returned if the alert has a workforce camera associated with the event.
driver
object
A driver associated with the alert. This object is only returned if the alert has a driver associated with the event.
    attributes
    object array
[beta] Attributes associated with this entity.
        id
        string
The Samsara ID of the attribute
        name
        string
The name of the attribute
        numberValues
        number array
Number values that are associated with this attribute
        stringValues
        string array
String values that are associated with this attribute
    externalIds
    object
A map of external ids
    id
    string
ID of the driver
    name
    string
Name of the driver
    tags
    object array
The list of tags associated with the Driver.
        id
        string
ID of the tag
        name
        string
Name of the tag.
        parentTagId
        string
If this tag is part a hierarchical tag tree, this is the ID of the parent tag, otherwise this will be omitted.
machineInput
object
The machine input associated with the alert. This string is only returned if the alert has machine input associated with the event.
sensor
object
The sensor associated with the alert. This object is only returned if the alert has a sensor associated with the event.
cameraStream
object
The camera stream associated with the alert. This object is only returned if the alert has a stream associated with the event.
trailer
object
A trailer associated with with the alert. This object is only returned if the alert has a trailer associated with the event. Note: Triggers that apply to drivers do no support trailer details in the payload
    attributes
    object array
List of attributes associated with the entity
        id
        string
Id of the attribute
        name
        string
Name of the attribute
        numberValues
        number array
List of number values associated with the attribute
        stringValues
        string array
List of string values associated with the attribute.
    externalIds
    object
A map of external ids
    id
    string
The unique Samsara ID of the Trailer. This is automatically generated when the Trailer object is created. It cannot be changed.
    name
    string
The human-readable name of the Trailer. This is set by a fleet administrator and will appear in both Samsara’s cloud dashboard as well as the Samsara Driver mobile app. By default, this name is the serial number of the Samsara Asset Gateway. It can be set or updated through the Samsara Dashboard or through the API at any time.
    tags
    object array
The list of tags associated with the Trailer.
        id
        string
ID of the tag
        name
        string
Name of the tag.
        parentTagId
        string
If this tag is part a hierarchical tag tree, this is the ID of the parent tag, otherwise this will be omitted.
    trailerSerialNumber
    string
The serial number of the trailer.
vehicle
object
A vehicle associated with the alert. This object is only returned if the alert has a vehicle associated with the event. Note: Triggers that apply to drivers do no support vehicle details in the payload
    attributes
    object array
List of attributes associated with the entity
        id
        string
Id of the attribute
        name
        string
Name of the attribute
        numberValues
        number array
List of number values associated with the attribute
        stringValues
        string array
List of string values associated with the attribute.
    externalIds
    object
A map of external ids
    id
    string
ID of the vehicle
    name
    string
Name of the vehicle
    serial
    string
The serial number of the gateway installed on the asset.
    staticAssignedDriver
    object
Current driver of the vehicle. Note: this parameter includes all assignment sources, not just static assignments.
        id
        string
ID of the driver.
        name
        string
Name of the driver.
    tags
    object array
The list of tags associated with the Vehicle.
        id
        string
ID of the tag
        name
        string
Name of the tag.
        parentTagId
        string
If this tag is part a hierarchical tag tree, this is the ID of the parent tag, otherwise this will be omitted.

Ambient Temperature

Details Object Reference

See Generic Reference

TriggerId: 1003

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "ambientTemperature":{
            "triggerId": 1003,
            "description": "Ambient Temperature",
            "details": {
              "vehicle": null,
              "trailer": null,
              "driver": null,
              "sensor": {
                "id": "12345",
                "name": "My Test Widget",
                "pinnedDeviceId": "0",
                "product": {
                  "shortName": "EM21"
                }
              }
           	}
        }
      }
    ]
  }
}

Asset Engine Off

Details Object Reference

See Generic Reference

TriggerId: 1022

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1022,
        "description": "Asset Engine Off",
        "details": {
          "engineOff":{
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Asset Engine On

Details Object Reference

See Generic Reference

TriggerId: 1021

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1021,
        "description": "Asset Engine On",
        "details": {
          "engineOn":{
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
        	}	
        }
      }
    ]
  }
}

Asset starts moving

Details Object Reference

See Generic Reference

TriggerId: 1013

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1013,
        "description": "Asset starts moving",
        "details": {
          "deviceMovement": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
        	}	
        }
      }
    ]
  }
}

Asset stops moving

Details Object Reference

See Generic Reference

TriggerId: 1031

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1031,
        "description": "Asset stops moving",
        "details": {
          "assetStartsMoving": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                "id": "123a",
                "name": "JobID",
                "numberValues": [10, 817, 92],
                "stringValues": ["w92", "0052f-43", "abc"]
              }
            ]
          }
          }
        }
      }
    ]
  }
}

Camera Connector Disconnected

Details Object Reference

See Generic Reference

TriggerId: 1046

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1046,
        "description": "Camera Connector Disconnected",
        "details": {
          "cameraConnectorDisconected": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Camera Stream Issue

Details Object Reference

See Generic Reference

TriggerId: 1039

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1039,
        "description": "Camera Stream Issue",
        "details": {
          "cameraStreamIssue": {
            "cameraDevice": {
              "id": "1",
              "name": "Camera 1",
              "sites": [
                {
                  "id": "13815dfd-9ced-5079-be39-8ea60ae48544",
                  "name": "Site with 1 Camera"
                }
              ]
            },
            "vehicle": null,
            "trailer": null,
            "driver": null
          }
        }
      }
    ]
  }
}

Cell Signal Loss

Details Object Reference

See Generic Reference

TriggerId: 1033

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1033,
        "description": "Cell Signal Loss",
        "details": {
          "cellSignalLoss": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Cloud Backup Upload Issue

Details Object Reference

See Generic Reference

TriggerId: 1048

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1048,
        "description": "Cloud Backup Upload Issue",
        "details": {
          "cloudBackupUploadIssue": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Dashcam Disconnected

Details Object Reference

See Generic Reference

TriggerId: 1012

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1022,
        "description": "Dashcam Disconnected",
        "details": {
          "dashcamDisconnected":{
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

DVIR Submitted for Asset

Details Object Reference

See Webhook 2.0 Reference

TriggerId: 5005

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5005,
        "description": "DVIR Submitted for Asset",
        "details": {
          "dvirSubmittedDevice": {
            "driver": {
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "id": "45646",
              "name": "Driver Bob"
            },
            "dvir": {
              "authorSignature": {
                "signatoryUser": {
                  "id": "938172",
                  "name": "Joe Driver"
                },
                "signedAtTime": "2020-01-27T07:06:25Z",
                "type": "driver"
              },
              "defects": [
                {
                  "comment": "Air compressor not working",
                  "createdAtTime": "2020-01-27T07:06:25Z",
                  "defectType": "Air Compressor",
                  "id": "18",
                  "isResolved": false,
                  "mechanicNotes": "Extremely large oddly shaped hole in passenger side window.",
                  "mechanicNotesUpdatedAtTime": "2020-01-27T07:06:25Z",
                  "resolvedAtTime": "2020-01-27T07:06:25Z",
                  "resolvedBy": {
                    "id": "8172",
                    "name": "Jane Mechanic",
                    "type": "mechanic"
                  },
                  "trailer": {
                    "externalIds": {
                      "maintenanceId": "250020"
                    },
                    "id": "494123",
                    "name": "Fleet Truck #1"
                  },
                  "vehicle": {
                    "externalIds": {
                      "maintenanceId": "250020"
                    },
                    "gateway": {
                      "model": "VG34",
                      "serial": "GFRV-43N-VGX"
                    },
                    "id": "494123",
                    "licensePlate": "6SAM123",
                    "name": "Fleet Truck #1",
                    "vin": "1GBJ6P1B2HV112765"
                  }
                },
                {
                  "comment": "Air compressor not working",
                  "createdAtTime": "2020-01-27T07:06:25Z",
                  "defectType": "Air Compressor",
                  "id": "18",
                  "isResolved": false,
                  "mechanicNotes": "Extremely large oddly shaped hole in passenger side window.",
                  "mechanicNotesUpdatedAtTime": "2020-01-27T07:06:25Z",
                  "resolvedAtTime": "2020-01-27T07:06:25Z",
                  "resolvedBy": {
                    "id": "8172",
                    "name": "Jane Mechanic",
                    "type": "mechanic"
                  },
                  "trailer": {
                    "externalIds": {
                      "maintenanceId": "250020"
                    },
                    "id": "494123",
                    "name": "Fleet Truck #1"
                  },
                  "vehicle": {
                    "externalIds": {
                      "maintenanceId": "250020"
                    },
                    "gateway": {
                      "model": "VG34",
                      "serial": "GFRV-43N-VGX"
                    },
                    "id": "494123",
                    "licensePlate": "6SAM123",
                    "name": "Fleet Truck #1",
                    "vin": "1GBJ6P1B2HV112765"
                  }
                }
              ],
              "endTime": "2020-01-27T07:06:25Z",
              "formattedLocation": "350 Rhode Island St Ste. 400S, San Francisco, CA 94103",
              "hasDefects": false,
              "id": "12345",
              "mechanicNotes": "Replaced headlight on passenger side.",
              "needsCorrection": false,
              "odometerMeters": 91823,
              "safetyStatus": "unsafe",
              "secondSignature": {
                "signatoryUser": {
                  "id": "938172",
                  "name": "Joe Driver"
                },
                "signedAtTime": "2020-01-27T07:06:25Z",
                "type": "driver"
              },
              "startTime": "2020-01-27T07:06:25Z",
              "thirdSignature": {
                "signatoryUser": {
                  "id": "938172",
                  "name": "Joe Driver"
                },
                "signedAtTime": "2020-01-27T07:06:25Z",
                "type": "driver"
              },
              "trailer": {
                "externalIds": {
                  "maintenanceId": "250020"
                },
                "id": "494123",
                "name": "Fleet Truck #1"
              },
              "type": "mechanic"
            },
            "vehicle": {
              "externalIds": {
                "maintenanceId": "250020"
              },
              "gateway": {
                "model": "VG34",
                "serial": "GFRV-43N-VGX"
              },
              "id": "494123",
              "licensePlate": "6SAM123",
              "name": "Fleet Truck #1",
              "vin": "1GBJ6P1B2HV112765"
            }
          }
        }
      }
    ]
  }
}

Data Input Value

Details Object Reference

See Generic Reference

TriggerId: 1015

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1015,
        "description": "Data Input Value",
        "details": {
          "dataInputValue": {
            "machineInput": {
              "id": "1",
              "name": "testMachineInput"
            },           
            "vehicle": null,
            "trailer": null,
            "driver": null
          }
        }
      }
    ]
  }
}

Driver Action - Message Sent

Details Object Reference

Note: Vehicle and trailer fields will be null and are not yet supported for driver based alert triggers

See Generic Reference

TriggerId: 5010

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5010,
        "description": "Driver Action - Message Sent",
        "details": {
          "driverMessageSent": {
            "vehicle": null,
            "trailer": null,
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Driver App Sign In

Details Object Reference

Note: Vehicle and trailer fields will be null and are not yet supported for driver based alert triggers

See Generic Reference

TriggerId: 5012

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5012,
        "description": "Driver App Sign In",
        "details": {
          "driverAppSignIn": {
            "vehicle": null,
            "trailer": null,
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Driver App Sign Out

Details Object Reference

Note: Vehicle and trailer fields will be null and are not yet supported for driver based alert triggers

See Generic Reference

TriggerId: 5013

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5013,
        "description": "Driver App Sign Out",
        "details": {
          "driverAppSignOut": {
            "vehicle": null,
            "trailer": null,
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

[Beta] Driver Document Submitted

Details Object Reference

See Webhook 2.0 Reference

TriggerId: 5009

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5009,
        "description": "Driver Document Submitted",
        "details": {
          "driverDocumentSubmitted": {
            "document": {
              "conditionalFieldSections": [
                {
                  "conditionalFieldFirstIndex": 5083143870897228000,
                  "conditionalFieldLastIndex": 2770896918544835600,
                  "triggeringFieldIndex": 8389989517472915000,
                  "triggeringFieldValue": "Optiona 1"
                },
                {
                  "conditionalFieldFirstIndex": 5083143870897228000,
                  "conditionalFieldLastIndex": 2770896918544835600,
                  "triggeringFieldIndex": 8389989517472915000,
                  "triggeringFieldValue": "Optiona 1"
                },
                {
                  "conditionalFieldFirstIndex": 5083143870897228000,
                  "conditionalFieldLastIndex": 2770896918544835600,
                  "triggeringFieldIndex": 8389989517472915000,
                  "triggeringFieldValue": "Optiona 1"
                }
              ],
              "createdAtTime": "1976-03-06T08:22:53Z",
              "documentType": {
                "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                "name": "Fleet Truck List"
              },
              "fields": [
                {
                  "label": "Load weight",
                  "type": "photo",
                  "value": {
                    "barcodeValue": [
                      {
                        "barcodeType": "org.gs1.EAN-13",
                        "barcodeValue": "0853883003114"
                      },
                      {
                        "barcodeType": "org.gs1.EAN-13",
                        "barcodeValue": "0853883003114"
                      },
                      {
                        "barcodeType": "org.gs1.EAN-13",
                        "barcodeValue": "0853883003114"
                      },
                      {
                        "barcodeType": "org.gs1.EAN-13",
                        "barcodeValue": "0853883003114"
                      }
                    ],
                    "dateTimeValue": {
                      "dateTime": "1984-10-23T07:14:29Z"
                    },
                    "multipleChoiceValue": [
                      {
                        "selected": false,
                        "value": "Yes"
                      },
                      {
                        "selected": false,
                        "value": "Yes"
                      },
                      {
                        "selected": false,
                        "value": "Yes"
                      }
                    ],
                    "numberValue": 123.456,
                    "photoValue": [
                      {
                        "id": "f5271458-21f9-4a9f-a290-780c6d8840ff",
                        "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                      },
                      {
                        "id": "f5271458-21f9-4a9f-a290-780c6d8840ff",
                        "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                      }
                    ],
                    "scannedDocumentValue": [
                      {
                        "id": "f5271458-21f9-4a9f-a290-780c6d8840ff",
                        "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                      },
                      {
                        "id": "f5271458-21f9-4a9f-a290-780c6d8840ff",
                        "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                      },
                      {
                        "id": "f5271458-21f9-4a9f-a290-780c6d8840ff",
                        "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                      }
                    ],
                    "signatureValue": {
                      "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                      "name": "John Smith",
                      "signedAtTime": "1996-01-30T06:14:20Z",
                      "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                    },
                    "stringValue": "Red Truck"
                  }
                },
                {
                  "label": "Load weight",
                  "type": "photo",
                  "value": {
                    "barcodeValue": [
                      {
                        "barcodeType": "org.gs1.EAN-13",
                        "barcodeValue": "0853883003114"
                      },
                      {
                        "barcodeType": "org.gs1.EAN-13",
                        "barcodeValue": "0853883003114"
                      },
                      {
                        "barcodeType": "org.gs1.EAN-13",
                        "barcodeValue": "0853883003114"
                      },
                      {
                        "barcodeType": "org.gs1.EAN-13",
                        "barcodeValue": "0853883003114"
                      }
                    ],
                    "dateTimeValue": {
                      "dateTime": "1984-10-23T07:14:29Z"
                    },
                    "multipleChoiceValue": [
                      {
                        "selected": false,
                        "value": "Yes"
                      },
                      {
                        "selected": false,
                        "value": "Yes"
                      },
                      {
                        "selected": false,
                        "value": "Yes"
                      }
                    ],
                    "numberValue": 123.456,
                    "photoValue": [
                      {
                        "id": "f5271458-21f9-4a9f-a290-780c6d8840ff",
                        "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                      },
                      {
                        "id": "f5271458-21f9-4a9f-a290-780c6d8840ff",
                        "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                      }
                    ],
                    "scannedDocumentValue": [
                      {
                        "id": "f5271458-21f9-4a9f-a290-780c6d8840ff",
                        "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                      },
                      {
                        "id": "f5271458-21f9-4a9f-a290-780c6d8840ff",
                        "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                      },
                      {
                        "id": "f5271458-21f9-4a9f-a290-780c6d8840ff",
                        "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                      }
                    ],
                    "signatureValue": {
                      "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                      "name": "John Smith",
                      "signedAtTime": "1996-01-30T06:14:20Z",
                      "url": "https://samsara-driver-media-upload.s3.us-west-2.amazonaws.com/123456"
                    },
                    "stringValue": "Red Truck"
                  }
                }
              ],
              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
              "name": "Dropoff Slip 123",
              "notes": "Missing a crate",
              "route": {
                "externalIds": {
                  "myRouteId": "abc"
                },
                "id": "131313",
                "name": "Pineapple delivery"
              },
              "routeStop": {
                "externalIds": {
                  "siteId": "54"
                },
                "id": "494123",
                "name": "Company Warehouse #1"
              },
              "state": "submitted",
              "updatedAtTime": "2009-01-10T02:28:18Z"
            },
            "driver": {
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "id": "45646",
              "name": "Driver Bob"
            },
            "vehicle": {
              "externalIds": {
                "maintenanceId": "250020"
              },
              "gateway": {
                "model": "VG34",
                "serial": "GFRV-43N-VGX"
              },
              "id": "494123",
              "licensePlate": "6SAM123",
              "name": "Fleet Truck #1",
              "vin": "1GBJ6P1B2HV112765"
            }
          }
        }
      }
    ]
  }
}

Driver HOS Violation

Details Object Reference

See Generic Reference

TriggerId: 1018

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1018,
        "description": "Driver HOS Violation",
        "details": {
          "hosViolation": {
            "vehicle": null,
            "trailer": null,
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Driver Message Received

Details Object Reference

Note: Vehicle and trailer fields will be null and are not yet supported for driver based alert triggers

See Generic Reference

TriggerId: 5011

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5011,
        "description": "Driver Message Received",
        "details": {
          "driverMessageReceived": {
            "vehicle": null,
            "trailer": null,
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

[Beta] Form Submitted

Details Object Reference

See Webhook 2.0 Reference

TriggerId: 5023

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5023,
        "description": "Form Submitted",
        "details": {
          "formSubmitted":{
            "form": {
              "asset": {
                  "entryType": "tracked",
                  "id": "281474982859091",
                  "name": "trailer 123"
              },
              "assignedAtTime": "2019-06-13T19:08:25Z",
              "assignedTo": {
                  "id": "938172",
                  "type": "driver"
              },
              "createdAtTime": "2019-06-13T19:08:25Z",
              "dueAtTime": "2019-06-13T19:08:25Z",
              "externalIds": {
                  "maintenanceId": "250020"
              },
              "fields": [
                  {
                      "assetValue": {
                          "asset": {
                              "entryType": "tracked",
                              "id": "281474982859091",
                              "name": "trailer 123"
                          }
                      },
                      "checkBoxesValue": {
                          "value": [
                              "One",
                              "Two",
                              "Three",
                              "Four"
                          ]
                      },
                      "dateTimeValue": {
                          "type": "datetime",
                          "value": "2019-06-13T19:08:25Z"
                      },
                      "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                      "issue": {
                          "externalIds": {
                              "maintenanceId": "250020"
                          },
                          "id": "12345"
                      },
                      "label": "Engine Hours",
                      "mediaList": [
                          {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          },
                          {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          }
                      ],
                      "mediaValue": {
                          "mediaList": [
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              }
                          ]
                      },
                      "multipleChoiceValue": {
                          "value": "Yes"
                      },
                      "note": "Fire and oil can lead to an accident.",
                      "numberValue": {
                          "value": 123.456
                      },
                      "signatureValue": {
                          "media": {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          }
                      },
                      "textValue": {
                          "value": "Exposed wires"
                      },
                      "type": "number"
                  },
                  {
                      "assetValue": {
                          "asset": {
                              "entryType": "tracked",
                              "id": "281474982859091",
                              "name": "trailer 123"
                          }
                      },
                      "checkBoxesValue": {
                          "value": [
                              "One",
                              "Two",
                              "Three",
                              "Four"
                          ]
                      },
                      "dateTimeValue": {
                          "type": "datetime",
                          "value": "2019-06-13T19:08:25Z"
                      },
                      "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                      "issue": {
                          "externalIds": {
                              "maintenanceId": "250020"
                          },
                          "id": "12345"
                      },
                      "label": "Engine Hours",
                      "mediaList": [
                          {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          },
                          {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          }
                      ],
                      "mediaValue": {
                          "mediaList": [
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              }
                          ]
                      },
                      "multipleChoiceValue": {
                          "value": "Yes"
                      },
                      "note": "Fire and oil can lead to an accident.",
                      "numberValue": {
                          "value": 123.456
                      },
                      "signatureValue": {
                          "media": {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          }
                      },
                      "textValue": {
                          "value": "Exposed wires"
                      },
                      "type": "number"
                  },
                  {
                      "assetValue": {
                          "asset": {
                              "entryType": "tracked",
                              "id": "281474982859091",
                              "name": "trailer 123"
                          }
                      },
                      "checkBoxesValue": {
                          "value": [
                              "One",
                              "Two",
                              "Three",
                              "Four"
                          ]
                      },
                      "dateTimeValue": {
                          "type": "datetime",
                          "value": "2019-06-13T19:08:25Z"
                      },
                      "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                      "issue": {
                          "externalIds": {
                              "maintenanceId": "250020"
                          },
                          "id": "12345"
                      },
                      "label": "Engine Hours",
                      "mediaList": [
                          {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          },
                          {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          }
                      ],
                      "mediaValue": {
                          "mediaList": [
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              },
                              {
                                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                                  "processingStatus": "processing",
                                  "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                                  "urlExpiresAt": "2019-06-13T19:08:25Z"
                              }
                          ]
                      },
                      "multipleChoiceValue": {
                          "value": "Yes"
                      },
                      "note": "Fire and oil can lead to an accident.",
                      "numberValue": {
                          "value": 123.456
                      },
                      "signatureValue": {
                          "media": {
                              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                              "processingStatus": "processing",
                              "url": "https://samsara-forms-submission-media-uploads.s3.us-west-2.amazonaws.com/123456",
                              "urlExpiresAt": "2019-06-13T19:08:25Z"
                          }
                      },
                      "textValue": {
                          "value": "Exposed wires"
                      },
                      "type": "number"
                  }
              ],
              "formTemplate": {
                  "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
                  "revisionId": "1214a1fa-f0c6-408b-bf85-51dc3bc71ac7"
              },
              "id": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
              "isRequired": true,
              "location": {
                  "latitude": 12333122.3,
                  "longitude": 1233331.4
              },
              "score": {
                  "maxPoints": 80,
                  "scorePercent": 75,
                  "scorePoints": 60
              },
              "status": "toDo",
              "submittedAtTime": "2019-06-13T19:08:25Z",
              "submittedBy": {
                  "id": "938172",
                  "type": "driver"
              },
              "title": "Form Submission Title",
              "updatedAtTime": "2019-06-13T19:08:25Z"
          	}     
          }
        }
      }
    ]
  }
}

Fuel Level (Percentage)

Details Object Reference

See Generic Reference

TriggerId: 1005

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1005,
        "description": "Fuel Level (Percentage)",
        "details": {
          "fuelLevelPercentage":{
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
            	]	
            }
          }
        }
      }
    ]
  }
}

GPS Signal Loss

Details Object Reference

See Generic Reference

TriggerId: 1032

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1032,
        "description": "GPS Signal Loss",
        "details": {
          "gpsSignalLoss": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Gateway Disconnected

Details Object Reference

See Generic Reference

TriggerId: 1030

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1030,
        "description": "Gateway Disconnected",
        "details": {
          "gatewayDisconnected": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

[Beta] Gateway Unplugged

Details Object Reference

See Webhook 2.0 Reference

TriggerId: 1009

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1009,
        "description": "Gateway Unplugged",
        "details": {
          "gatewayUnplugged": {
            "gateway": {
              "model": "VG34",
              "serial": "GFRV-43N-VGX",
              "vehicle": {
                "externalIds": {
                  "maintenanceId": "250020"
                },
                "id": "494123",
                "name": "Fleet Truck #1"
              }
            }
          }
        }
      }
    ]
  }
}

[Beta] Geofence Entry

Details Object Reference

See Webhook 2.0 Reference

TriggerId: 5016

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5016,
        "description": "Geofence Entry",
        "details": {
          "geofenceEntry": {
            "address": {
              "externalIds": {
                "siteId": "54"
              },
              "formattedAddress": "350 Rhode Island St, San Francisco, CA",
              "geofence": {
                "circle": {
                  "latitude": 37.7749,
                  "longitude": 137.7749,
                  "radiusMeters": 23
                },
                "polygon": {
                  "vertices": [
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    },
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    }
                  ]
                },
                "settings": {
                  "showAddresses": [
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    },
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    },
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    },
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    }
                  ]
                }
              },
              "id": "494123",
              "name": "Company Office #1"
            },
            "vehicle": {
              "externalIds": {
                "maintenanceId": "250020"
              },
              "gateway": {
                "model": "VG34",
                "serial": "GFRV-43N-VGX"
              },
              "id": "494123",
              "licensePlate": "6SAM123",
              "name": "Fleet Truck #1",
              "vin": "1GBJ6P1B2HV112765"
            }
          }
        }
      }
    ]
  }
}

[Beta] Geofence Exit

Details Object Reference

See Webhook 2.0 Reference

TriggerId: 5017

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5017,
        "description": "Geofence Exit",
        "details": {
          "geofenceExit": {
            "address": {
              "externalIds": {
                "siteId": "54"
              },
              "formattedAddress": "350 Rhode Island St, San Francisco, CA",
              "geofence": {
                "circle": {
                  "latitude": 37.7749,
                  "longitude": 137.7749,
                  "radiusMeters": 23
                },
                "polygon": {
                  "vertices": [
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    },
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    }
                  ]
                },
                "settings": {
                  "showAddresses": [
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    },
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    },
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    },
                    {
                      "latitude": 37.7749,
                      "longitude": 137.7749
                    }
                  ]
                }
              },
              "id": "494123",
              "name": "Company Office #1"
            },
            "vehicle": {
              "externalIds": {
                "maintenanceId": "250020"
              },
              "gateway": {
                "model": "VG34",
                "serial": "GFRV-43N-VGX"
              },
              "id": "494123",
              "licensePlate": "6SAM123",
              "name": "Fleet Truck #1",
              "vin": "1GBJ6P1B2HV112765"
            }
          }
        }
      }
    ]
  }
}

Harsh Event

Details Object Reference

See Generic Reference

TriggerId: 1023

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1023,
        "description": "Harsh Event",
        "details": {
          "harshEvent": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Inactivity

Details Object Reference

See Generic Reference

TriggerId: 1038

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1038,
        "description": "Inactivity",
        "details": {
          "inactivity": {
            "cameraStream": {
              "cameraDevice": {
                "id": "1",
                "name": "Camera 1",
                "sites": [
                  {
                    "id": "13815dfd-9ced-5079-be39-8ea60ae48544",
                    "name": "Site with 1 Camera"
                  }
                ]
              },
              "id": "1",
              "name": "Stream 1"
            },
            "vehicle": null,
            "trailer": null,
            "driver": null
          }
        }
      }
    ]
  }
}

Inside Geofence

Details Object Reference

See Generic Reference

TriggerId: 1014

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1014,
        "description": "Inside Geofence",
        "details": {
          "insideGeofence": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

[Beta] Issue Created

Details Object Reference

See Webhook 2.0 Reference

TriggerId: 5024

Example

    }

Jamming Detected

Details Object Reference

See Generic Reference

TriggerId: 1047

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1047,
        "description": "Jamming Detected",
        "details": {
          "jammingDetected": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Motion Detected

Details Object Reference

See Generic Reference

TriggerId: 1037

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1037,
        "description": "Motion Detected",
        "details": {
          "motionDetected": { 
            "cameraStream": {
              "cameraDevice": {
                "id": "1",
                "name": "Camera 1",
                "sites": [
                  {
                    "id": "13815dfd-9ced-5079-be39-8ea60ae48544",
                    "name": "Site with 1 Camera"
                  }
                ]
              },
              "id": "1",
              "name": "Stream 1"
            },
            "vehicle": null,
            "trailer": null,
            "driver": null
          }
        }
      }
    ]
  }
}

Out of Route

Details Object Reference

See Generic Reference

TriggerId: 1027

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1027,
        "description": "Out of Route",
        "details": {
          "outOfRoute": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Outside Geofence

Details Object Reference

See Generic Reference

TriggerId: 1020

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1020,
        "description": "Outside Geofence",
        "details": {
          "outsideGeofence": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Panic Button

Details Object Reference

See Generic Reference

TriggerId: 1034

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1034,
        "description": "Panic Button",
        "details": {
        "panicButton": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
        }
        }
      }
    ]
  }
}

Person Detected

Details Object Reference

See Generic Reference

TriggerId: 1035

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1035,
        "description": "Person Detected",
        "details": {
          "personDetected": {
            "cameraStream": {
              "cameraDevice": {
                "id": "1",
                "name": "Camera 1",
                "sites": [
                  {
                    "id": "13815dfd-9ced-5079-be39-8ea60ae48544",
                    "name": "Site with 1 Camera"
                  }
                ]
              },
              "id": "1",
              "name": "Stream 1"
            },
            "vehicle": null,
            "trailer": null,
            "driver": null
          }
        }
      }
    ]
  }
}

Reefer Temperature

Details Object Reference

See Generic Reference

TriggerId: 1056

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1056,
        "description": "Reefer Temperature",
        "details": {
          "reeferTemperature": {
          "vehicle": {
            "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Route Stop ETA Alert

Details Object Reference

See Generic Reference

TriggerId: 5018

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5018,
        "description": "Route Stop ETA Alert",
        "details": {
          "routeStopETA": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Scheduled Maintenance

Details Object Reference

See Generic Reference

TriggerId: 1024

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1024,
        "description": "Scheduled Maintenance",
        "details": {
          "scheduledMaintenance": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Scheduled Maintenance by Engine Hours

Details Object Reference

See Generic Reference

TriggerId: 1026

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1026,
        "description": "Scheduled Maintenance by Engine Hours",
        "details": {
          "scheduledMaintenanceByEngineHours": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Scheduled Maintenance by Odometer

Details Object Reference

See Generic Reference

TriggerId: 1025

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1025,
        "description": "Scheduled Maintenance by Odometer",
        "details": {
          "scheduledMaintenanceOdometer": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Severe Speeding

Details Object Reference

See Webhook 2.0 Reference

TriggerId: 5022

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 5022,
        "description": "Severe Speeding",
        "details": {
          "severeSpeeding":{
            "startTime": "2019-06-13T19:08:25Z",
            "tripStartTime": "2019-06-13T19:08:25Z",
            "vehicle": {
                "externalIds": {
                    "maintenanceId": "250020"
                },
                "id": "494123",
                "licensePlate": "6SAM123",
                "name": "Fleet Truck #1",
                "vehicleVin": "1GBJ6P1B2HV112765"
            }
          }
        }
      }
    ]
  }
}

Site Gateway Disconnected

Details Object Reference

See Generic Reference

TriggerId: 1040

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1040,
        "description": "Site Gateway Disconnected",
        "details": {
          "vehicle": {
            "id": "45646",
            "externalIds": {
              "maintenanceId": "250020"
            },
            "name": "Fleet Truck #1",
            "tags": [
              {
                "id": "3914",
                "name": "East Coast",
                "parentTagId": "4815"
              }
            ],
            "attributes": [
              {
                "id": "494123",
                "name": "Compliance/ELD"
              }
            ],
            "serial": "GFRV-43N-VGX"
          },
          "trailer": {
            "id": "494123",
            "externalIds": {
              "maintenanceId": "250020"
            },
            "name": "Trailer-123",
            "tags": [
              {
                "id": "3914",
                "name": "East Coast",
                "parentTagId": "4815"
              }
            ],
            "attributes": [
              {
                "id": "494123",
                "name": "Compliance/ELD"
              }
            ],
            "trailerSerialNumber": "8V8WD530FLN016251"
          },
          "driver": {
            "id": "45646",
            "externalIds": {
              "payrollId": "ABFS18600"
            },
            "name": "Driver Bob",
            "tags": [
              {
                "id": "3914",
                "name": "East Coast",
                "parentTagId": "4815"
              }
            ],
            "attributes": [
              {
                "id": "123a",
                "name": "JobID",
                "numberValues": [10, 817, 92],
                "stringValues": ["w92", "0052f-43", "abc"]
              }
            ]
          }
        }
      }
    ]
  }
}

Tampering Detected

Details Object Reference

See Generic Reference

TriggerId: 1045

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1045,
        "description": "Tampering Detected",
        "details": {
          "tamperingDetected": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Tire Faults

Details Object Reference

See Generic Reference

TriggerId: 1043

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1043,
        "description": "Tire Faults",
        "details": {
          "tireFaults": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Unassigned Driving

Details Object Reference

See Generic Reference

TriggerId: 1016

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1016,
        "description": "Unassigned Driving",
        "details": {
          "vehicle": {
            "id": "45646",
            "externalIds": {
              "maintenanceId": "250020"
            },
            "name": "Fleet Truck #1",
            "tags": [
              {
                "id": "3914",
                "name": "East Coast",
                "parentTagId": "4815"
              }
            ],
            "attributes": [
              {
                "id": "494123",
                "name": "Compliance/ELD"
              }
            ],
            "serial": "GFRV-43N-VGX"
          },
          "trailer": {
            "id": "494123",
            "externalIds": {
              "maintenanceId": "250020"
            },
            "name": "Trailer-123",
            "tags": [
              {
                "id": "3914",
                "name": "East Coast",
                "parentTagId": "4815"
              }
            ],
            "attributes": [
              {
                "id": "494123",
                "name": "Compliance/ELD"
              }
            ],
            "trailerSerialNumber": "8V8WD530FLN016251"
          },
          "driver": {
            "id": "45646",
            "externalIds": {
              "payrollId": "ABFS18600"
            },
            "name": "Driver Bob",
            "tags": [
              {
                "id": "3914",
                "name": "East Coast",
                "parentTagId": "4815"
              }
            ],
            "attributes": [
              {
                "id": "123a",
                "name": "JobID",
                "numberValues": [10, 817, 92],
                "stringValues": ["w92", "0052f-43", "abc"]
              }
            ]
          }
        }
      }
    ]
  }
}

Vehicle Battery

Details Object Reference

See Generic Reference

TriggerId: 1007

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1007,
        "description": "Vehicle Battery",
        "details": {
          "unassignedDriving": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Vehicle DEF Level (Percentage)

Details Object Reference

See Generic Reference

TriggerId: 1006

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1006,
        "description": "Vehicle DEF Level (Percentage)",
        "details": {
          "vehicleDefLevelPercentage": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Vehicle Detected

Details Object Reference

See Generic Reference

TriggerId: 1036

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1036,
        "description": "Vehicle Detected",
        "details": {
          "vehicleDetected": {
            "cameraStream": {
              "cameraDevice": {
                "id": "1",
                "name": "Camera 1",
                "sites": [
                  {
                    "id": "13815dfd-9ced-5079-be39-8ea60ae48544",
                    "name": "Site with 1 Camera"
                  }
                ]
              },
              "id": "1",
              "name": "Stream 1"
            },
            "vehicle": null,
            "trailer": null,
            "driver": null
          }
        }
      }
    ]
  }
}

Vehicle Engine Idle

Details Object Reference

See Generic Reference

TriggerId: 1019

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1019,
        "description": "Vehicle Engine Idle",
        "details": {
          "engineIdle": {
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}

Vehicle Faults

Details Object Reference

See Generic Reference

TriggerId: 1029

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1029,
        "description": "Vehicle Faults",
        "details": {
          "vehicle": {
            "id": "45646",
            "externalIds": {
              "maintenanceId": "250020"
            },
            "name": "Fleet Truck #1",
            "tags": [
              {
                "id": "3914",
                "name": "East Coast",
                "parentTagId": "4815"
              }
            ],
            "attributes": [
              {
                "id": "494123",
                "name": "Compliance/ELD"
              }
            ],
            "serial": "GFRV-43N-VGX"
          },
          "trailer": {
            "id": "494123",
            "externalIds": {
              "maintenanceId": "250020"
            },
            "name": "Trailer-123",
            "tags": [
              {
                "id": "3914",
                "name": "East Coast",
                "parentTagId": "4815"
              }
            ],
            "attributes": [
              {
                "id": "494123",
                "name": "Compliance/ELD"
              }
            ],
            "trailerSerialNumber": "8V8WD530FLN016251"
          },
          "driver": {
            "id": "45646",
            "externalIds": {
              "payrollId": "ABFS18600"
            },
            "name": "Driver Bob",
            "tags": [
              {
                "id": "3914",
                "name": "East Coast",
                "parentTagId": "4815"
              }
            ],
            "attributes": [
              {
                "id": "123a",
                "name": "JobID",
                "numberValues": [10, 817, 92],
                "stringValues": ["w92", "0052f-43", "abc"]
              }
            ]
          }
        }
      }
    ]
  }
}

Vehicle Speed

Details Object Reference

See Generic Reference

TriggerId: 1000

Example

{
  "eventId": "017db07f-6e95-470e-8cc0-a371f9deed2b",
  "eventTime": "1970-01-20T06:39:05.683Z",
  "eventType": "AlertIncident",
  "orgId": 20936,
  "webhookId": "1411751028848270",
  "data": {
    "configurationId": "9814a1fa-f0c6-408b-bf85-51dc3bc71ac7",
    "resolvedAtTime": "1970-01-20T06:39:05.683Z",
    "happenedAtTime": "1970-01-20T06:39:05.683Z",
    "updatedAtTime": "1970-01-20T06:39:05.683Z",
    "isResolved": true,
    "incidentUrl": "cloud.samsara.com",
    "conditions": [
      {
        "triggerId": 1000,
        "description": "Vehicle Speed",
        "details": {
          "speed":{
            "currentSpeedKilometersPerHour": 120,
            "minDurationMilliseconds": 30000,
            "operation": "GREATER",
            "thresholdSpeedKilometersPerHour": 100,
            "vehicle": {
              "id": "45646",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Fleet Truck #1",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "serial": "GFRV-43N-VGX"
            },
            "trailer": {
              "id": "494123",
              "externalIds": {
                "maintenanceId": "250020"
              },
              "name": "Trailer-123",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "494123",
                  "name": "Compliance/ELD"
                }
              ],
              "trailerSerialNumber": "8V8WD530FLN016251"
            },
            "driver": {
              "id": "45646",
              "externalIds": {
                "payrollId": "ABFS18600"
              },
              "name": "Driver Bob",
              "tags": [
                {
                  "id": "3914",
                  "name": "East Coast",
                  "parentTagId": "4815"
                }
              ],
              "attributes": [
                {
                  "id": "123a",
                  "name": "JobID",
                  "numberValues": [10, 817, 92],
                  "stringValues": ["w92", "0052f-43", "abc"]
                }
              ]
            }
          }
        }
      }
    ]
  }
}