latestOpenAPI 3.0.12026-07-26222700728.0 KB

e9f0790a89af

Mileage

Save mileage

Save new (or update existing) mileage records

post/v6/mileage

Request body

Example request

{
  "data": [
    {
      "id": "mlg_12345",
      "date": "2024-03-15",
      "status": "ACTIVE",
      "mileageStatus": "BUSINESS",
      "description": "Drive to client meeting",
      "notes": "Client was not available",
      "customerId": "cus_4852707",
      "distance": {
        "type": "MILE",
        "value": "12.5"
      },
      "start": {
        "lat": "38.8977",
        "lng": "-77.0365",
        "locationId": "loc_28868401"
      },
      "end": {
        "lat": "38.8977",
        "lng": "-77.0365",
        "locationId": "loc_28868401"
      },
      "duration": 3600000,
      "deduction": {
        "amount": 6775
      },
      "carId": "car_28868401",
      "customData": {
        "internal_key": "some_internal_key",
        "some_other_field": 23434
      }
    }
  ]
}

Response

Success

result'SUCCESS' | 'FAILURE'

The result of the action performed.

Example response

{
  "data": [
    {
      "data": {
        "id": "mlg_12345",
        "date": "2024-03-15",
        "status": "ACTIVE",
        "mileageStatus": "BUSINESS",
        "description": "Drive to client meeting",
        "notes": "Client was not available",
        "customer": {
          "id": "cus_4852707",
          "name": "Abigail Adams",
          "email": "abigail@tight.com"
        },
        "dimensionValues": [
          {
            "id": "dv_593051",
            "dimension": {
              "id": "dim_4521",
              "name": "Region",
              "requiredness": "NOT_REQUIRED"
            },
            "name": "Mid-Atlantic",
            "child": {
              "id": "dv_593052",
              "dimension": {
                "id": "dim_4521",
                "name": "Region",
                "requiredness": "NOT_REQUIRED"
              },
              "name": "Washington DC"
            }
          }
        ],
        "distance": {
          "type": "MILE",
          "value": "12.5"
        },
        "start": {
          "lat": "38.8977",
          "lng": "-77.0365",
          "location": {
            "id": "loc_28868401",
            "name": "Home Office"
          },
          "address": {
            "countryCode": "USA"
          }
        },
        "end": {
          "lat": "38.8977",
          "lng": "-77.0365",
          "location": {
            "id": "loc_28868401",
            "name": "Home Office"
          },
          "address": {
            "countryCode": "USA"
          }
        },
        "duration": 3600000,
        "deduction": {
          "amount": 6775
        },
        "route": {
          "id": "mrt_12345",
          "waypoints": [
            {
              "lat": "38.8977",
              "lng": "-77.0365"
            }
          ]
        },
        "car": {
          "id": "car_28868401",
          "name": "My Toyota Camry",
          "make": "Toyota",
          "model": "Camry"
        },
        "customData": {
          "internal_key": "some_internal_key",
          "some_other_field": 23434
        }
      }
    }
  ]
}