/v1/parsePOSTParse a supplier URL into a typed product record.Parse
Request body
{
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [
"sourceUrl"
],
"properties": {
"sourceUrl": {
"type": "string",
"format": "uri"
},
"rawHtml": {
"type": "string"
}
}
}
}
}
}Responses
{
"200": {
"description": "Typed product record.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ProductRecord"
}
}
}
}
}