added

Including `UpdatedAt` and `UpdatedBy` to Load and Trip Endpoints

Release Date: October 18, 2024


What’s New?

  1. New Fields Added to Load and Trip Endpoints:

    • UpdatedAt: Timestamp of the last modification.
    • UpdatedBy: User ID responsible for the last update.
  2. New Parameters Added to Load and Trip Search body:

    • UpdatedAtRange: Search by update timestamps using start or end date.
    • UpdatedBy: Search by the user who made updates.
{
    "updatedAtRange": {
        "start": "2024-10-18T04:38:53.470Z",
        "end": "2024-10-19T04:38:53.470Z"
    },
    "updatedBy": "user123"
}
  1. Conditionally Mandatory Parameters
    At least one search parameter from the list of conditionally mandatory parameters must be provided. If no parameter is included, the following error message will be returned:
{
    "Status": [
        "At least one search parameter must be provided"
    ],
    "PONumbers": [
        "At least one search parameter must be provided"
    ],
    "UpdatedBy": [
        "At least one search parameter must be provided"
    ],
    "CustomerId": [
        "At least one search parameter must be provided"
    ],
    "LoadNumbers": [
        "At least one search parameter must be provided"
    ],
    "OrderNumbers": [
        "At least one search parameter must be provided"
    ]
}