POST Enrichment/Enrich

This call will enrich data with TecDoc information.

Request Information

URI Parameters

None.

Body Parameters

EnrichmentRequest
NameDescriptionTypeAdditional information
Profile

Profile sets the options for what you wish to have returned in the response.

Profile

None.

EnrichDataModel

List of EnrichDataModels which have the fields Brand and MPN

Collection of EnrichDataModel

None.

Request Formats

application/json, text/json

Sample:
{
  "Profile": {
    "Ktypes": true,
    "Title": true,
    "Images": true,
    "Attributes": true,
    "ProductIdentifiers": true
  },
  "EnrichDataModel": [
    {
      "Brand": "sample string 1",
      "MPN": "sample string 2",
      "EnrichedValues": {}
    },
    {
      "Brand": "sample string 1",
      "MPN": "sample string 2",
      "EnrichedValues": {}
    }
  ]
}

Response Information

Resource Description

The enriched data.

Collection of EnrichDataModel
NameDescriptionTypeAdditional information
Brand

The Brand you wish to search for

string

None.

MPN

The MPN you wish to search for

string

None.

EnrichedValues

Returned in the response to give the enriched information

Dictionary of string [key] and string [value]

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Brand": "sample string 1",
    "MPN": "sample string 2",
    "EnrichedValues": {}
  },
  {
    "Brand": "sample string 1",
    "MPN": "sample string 2",
    "EnrichedValues": {}
  }
]