Retrieve a list of suppliers for the specified product.
Learn about Filtering and Optimizing Queries
Receiving large response pay loads on list endpoints? Check out our guides on "Optimizing Queries" and "Filtering & Sorting" to learn how to only receive the data that you need.
Double URL Encoding advised for Product Numbers
When submitting product numbers to API endpoints, apply double URL encoding to handle special characters like forward slashes (
/), question marks (?), spaces and plus signs (+) that may be present in product numbers. Single encoding may not be sufficient and can result in HTTP 404 errors or malformed requests. For example, encodeABC/123+DEFasABC%252F123%252BDEF.Alternatively, you can retrieve a URL-friendly version of the product number from the GET endpoint response, which provides a pre-encoded identifier safe for use in subsequent API calls.
