Search for products and return the list of products that meet the specified search criteria.
Request
Add parameter in header api-key
Example:api-key: ********************
Body Params application/json
{
"searchScope": "all",
"items": [
{
"keyword": "A00000001"
},
{
"keyword": "B00000002"
},
{
"keyword": "987687765487337"
}
]
}
Request Code Samples
curl --location --request POST 'https://api.logictrade.cloud/rest/v1/products/search' \
--header 'api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"searchScope": "all",
"items": [
{
"keyword": "A00000001"
},
{
"keyword": "B00000002"
},
{
"keyword": "987687765487337"
}
]
}'
Responses
application/json [
{
"keyword": "LT00000077",
"results": [
{
"id": 108,
"code": "LT00000077",
"barcode": "9900000002404",
"name": "Opbergkast Protter"
}
]
},
{
"keyword": "9900000002404",
"results": [
{
"id": 108,
"code": "LT00000077",
"barcode": "9900000002404",
"name": "Opbergkast Protter"
}
]
},
{
"keyword": "1234",
"results": []
}
]
Modified at 2025-01-20 13:32:27