added
Including `UpdatedAt` and `UpdatedBy` to Load and Trip Endpoints
4 months ago by Lidia Perov
Release Date: October 18, 2024
What’s New?
-
New Fields Added to Load and Trip Endpoints:
UpdatedAt
: Timestamp of the last modification.UpdatedBy
: User ID responsible for the last update.
-
New Parameters Added to Load and Trip Search body:
UpdatedAtRange
: Search by update timestamps usingstart
orend
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"
}
- 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"
]
}