How to filter multiple RELATED_ORDER_TYPE values to OTM Shipment REST API?
HI, I am building an OIC integration using OTM Shipment REST API, where I need to extract few RELATED_ORDER_TYPE values like STANDARD, RPMS and RETUN only.
I am using below REST API
<BASEURL>/logisticsRestApi/resources-int/v2/shipments/FSLR.400025224/refnums
Below are the columns and values which I need to pass as parameter values.
{
"shipmentRefnumQualGid": "XXXX.RELATED_ORDER_TYPE",
"shipmentRefnumValue": "XXXX STANDARD",
"domainName": "FSLR",
"insertDate": {
"value": "2023-07-29T11:44:40-05:00"
},
"links": [
{
"rel": "self",
"href": "<Base URL>/logisticsRestApi/resources-int/v2/shipments/FSLR.400001289/refnums/FSLR.RELATED_ORDER_TYPExFSLR%20STANDARD"
}
]
}
I need to pass the below values as a parameters but for "shipmentRefnumValue" need to add multiple values like "XXXX STANDARD","XXXX RPMS" and "XXXX RETURN".