Skip to main content
GET
/
fleet
/
document-types
Fetch document types
curl --request GET \
  --url https://api.samsara.com/fleet/document-types \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "conditionalFieldSections": [
        {
          "conditionalFieldFirstIndex": 1,
          "conditionalFieldLastIndex": 2,
          "triggeringFieldIndex": 0,
          "triggeringFieldValue": "Yes"
        }
      ],
      "fieldTypes": [
        {
          "fieldType": "multipleChoice",
          "label": "Was there damage?",
          "multipleChoiceFieldTypeMetaData": [
            {
              "label": "Yes"
            },
            {
              "label": "No"
            }
          ],
          "requiredField": true
        },
        {
          "fieldType": "photo",
          "label": "Damage Photos",
          "requiredField": false
        },
        {
          "fieldType": "number",
          "label": "Number of vehicles impacted",
          "numberFieldTypeMetaData": {
            "numberOfDecimalPlaces": 2
          },
          "requiredField": false
        },
        {
          "fieldType": "dateTime",
          "label": "Date and time",
          "requiredField": true
        },
        {
          "fieldType": "signature",
          "label": "Sign",
          "requiredField": true,
          "signatureFieldTypeMetaData": {
            "legalText": "Legal Text"
          }
        }
      ],
      "id": "4aff772c-a7bb-45e6-8e41-6a53e34feb83",
      "name": "Accident Report",
      "orgId": 12345
    }
  ],
  "pagination": {
    "endCursor": "MjkY",
    "hasNextPage": true
  }
}

Documentation Index

Fetch the complete documentation index at: https://samsara-showcase.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

after
string

If specified, this should be the endCursor value from the previous page of results. When present, this request will return the next page of results that occur immediately after the previous page of results.

Response

OK response.

data
object[]
required

List of all document types for the organization

Example:
[
{
"conditionalFieldSections": [
{
"conditionalFieldFirstIndex": 1,
"conditionalFieldLastIndex": 2,
"triggeringFieldIndex": 0,
"triggeringFieldValue": "Yes"
}
],
"fieldTypes": [
{
"fieldType": "multipleChoice",
"label": "Was there damage?",
"multipleChoiceFieldTypeMetaData": [{ "label": "Yes" }, { "label": "No" }],
"requiredField": true
},
{
"fieldType": "photo",
"label": "Damage Photos",
"requiredField": false
},
{
"fieldType": "number",
"label": "Number of vehicles impacted",
"numberFieldTypeMetaData": { "numberOfDecimalPlaces": 2 },
"requiredField": false
},
{
"fieldType": "dateTime",
"label": "Date and time",
"requiredField": true
},
{
"fieldType": "signature",
"label": "Sign",
"requiredField": true,
"signatureFieldTypeMetaData": { "legalText": "Legal Text" }
}
],
"id": "4aff772c-a7bb-45e6-8e41-6a53e34feb83",
"name": "Accident Report",
"orgId": 12345
}
]
pagination
object
required

Pagination parameters.