Search a Product

post/productmanager.quicksearch

Performs a search by sku and label fields. Returns all lists containing the search term. Enter the search term in the request body in the q parameter.

Information: Use the /productmanager.quicksearch/{query} (Search a Product (URL)) endpoint to pass the search term in the URL.

Securitybasic or X-PriceFx-jwt
Request
Request Body schema: application/json
required
object
q
required
string non-empty

Enter the term you want to search.

Responses
200

OK

Response Schema: application/json
object
node
string non-empty
csrfToken
string non-empty
Array of objects non-empty unique
Array (non-empty)
sku
string non-empty
label
string non-empty
itemTypedId
string non-empty
listId
number
targetObjectTypeCode
string non-empty
listLabel
string non-empty
totalRows
number
status
number
Request samples
application/json
{
  • "data": {
    • "q": "PROD0001"
    }
}
Response samples
application/json
{
  • "response": {
    • "node": "string",
    • "csrfToken": "string",
    • "data": [
      • {
        • "sku": "string",
        • "label": "string",
        • "itemTypedId": "string",
        • "listId": 0,
        • "targetObjectTypeCode": "string",
        • "listLabel": "string"
        }
      ],
    • "totalRows": 0,
    • "status": 0
    }
}