Skip to main content
Submit Products with GLN & GTIN

Request a submission of products by their GLN and GTIN to the channel specified in the path.

Updated over a week ago

URL

Request Headers

Authorization - authorization token.

HTTP Status Codes

201 – Created

401 – Unauthorized

403 – Forbidden

404 – Not Found

Response

{
 "submissionResponseItems": [
  {
   "matchedProducts": [
    {
     "metaData": {},
     "productId": "string"
    }
   ],
   "requestItem": {
    "categoryId": "string",
    "externalId": "string",
    "gln": "string",
    "gtin": "string"
   },
   "submissionId": "string"
  }
 ]
}

Example: /submit/v1/channels/homedepot-thd-qa/request

Body Example:

{
 "items": [
  {
   "categoryId": "string",
   "externalId": "string",
   "gln": "string",
   "gtin": "string"
  }
 ]
}

Parameter

Description

Parameter Type

Data Type

channelId

The id of the channel the submission should target

path

string

request

The list of item attributes.

body

Array[string]

Did this answer your question?