Search a Product (URL)

post/productmanager.quicksearch/{query}

Performs a search by sku and label fields. Returns all lists containing the search term. Enter the search term query URL-encoded to prevent an invalid API call when using special characters in the URL.

Information: Use the /productmanager.quicksearch (Search a Product) endpoint to pass the search term in the request body.

Securitybasic or X-PriceFx-jwt
Request
path Parameters
query
required
string
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
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
    }
}