POST {ApiGatewayURL}/api/v1/getTable
src/main/java/com/milmove/trdmlambda/milmove/controller/GetTableController.java
README: All date time requests are to be provided as strings in XMLGregorian format (Go's time.Time defaults to this). Booleans are to be provided as booleans.
Example
{
"physicalName": "LN_OF_ACCT",
"contentUpdatedSinceDateTime":"2023-11-03T12:29:57.040Z",
"returnContent": true
}
Example
{
"physicalName": "LN_OF_ACCT",
"contentUpdatedSinceDateTime":"2023-11-03T12:29:57.040Z",
"returnContent": true,
"contentUpdatedOnOrBeforeDateTime": "2023-11-04T12:29:57.040Z"
}
contentUpdatedOnOrBeforeDateTime
is an XMLGregorianCalendar time. When provided along with contentUpdatedSinceDateTime
, our API will convert that to an IS_ON_OR_AFTER
and
IS_ON_OR_BEFORE
filter to retrieve data for the specified date range.
returnRowStatus
is a boolean to return the status of the row from TRDM (Such as active or inactive).
returnLastUpdate
is a boolean to return the last update with the request from TRDM.
[200, 400, 500, 502]