FacetFlux
pim.products.byExternalId.get
Get a single product by its source system + externalId. Useful for reconciling products imported from a supplier feed or upstream system without first calling pim.products.search. Same response shape as pim.products.get. Response: { product?: {...}, attributes?: [...], variants?: [...], channelStatuses?: [...] }. Errors: { error: { code: 'not_found' | 'bad_input', ... } }.
Remote revuo:facetflux
Other tools also called pim.products.byExternalId.get?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"sourceSystem": {
"description": "Source system identifier (e.g. 'wawi', 'sap', 'shopify').",
"type": "string"
},
"externalId": {
"description": "External id (the source system's product id).",
"type": "string"
},
"fields": {
"description": "Optional whitelist of top-level fields to include. Omit for the full payload.",
"type": [
"array",
"null"
],
"items": {
"type": [
"string",
"null"
]
},
"default": null
}
},
"required": [
"sourceSystem",
"externalId"
]
}