提交新製造商請求
製造商名稱是在新蛋商城中創建新商品時必填資訊之一。只有系統中預先定義的值才能夠被使用。可通過製造商檢索來獲取完整的可用製造商列表。如果您商品的製造商在我們系統中不存在,您可以向新蛋商城提交加入新製造商的創建請求。
為了加快審批過程,商城鼓勵您提供盡可能多的製造商資訊。任何沒有製造商URL的提交都可能會受到審查、額外的處理時間和/或拒絕。
相關URL
Newegg.com: https://api.newegg.com/marketplace/contentmgmt/manufacturer/creationrequest?sellerid={sellerid} Neweggbusiness.com: https://api.newegg.com/marketplace/b2b/contentmgmt/manufacturer/creationrequest?sellerid={sellerid} Newegg.ca:https://api.newegg.com/marketplace/can/contentmgmt/manufacturer/creationrequest?sellerid={sellerid}
註:請確保您的請求URL全都是小寫(除Seller ID)並且不能包含任何空格或者分行符號。
參數
名稱 | 是否必填? | 描述 |
sellerid | 是 | 您在新蛋商城的商家編號 |
相關請求資訊
HTTP方式 | 是否需要認證 | 請求格式 | 回覆格式 | 頻率限制 |
POST | 需要 | XML,Json | XML,Json | 100 請求/小時 |
請求文件主體
屬性 | 是否必填? | 格式 | 描述 |
IssueUser | 否 | String | 您註冊成為新蛋賣家帳戶的郵箱地址。 系統只接受商家在seller portal已註冊的郵箱地址。如果不填,則預設值為商家編號(seller ID) |
OperationType | 是 | String | 固定值:SubmitManufacturerRequest |
Name | 是 | String | 製造商名稱 |
URL | 是 | String | 製造商網址 例如:http://www.domain.com |
CountryCode | 是 | String | 製造商所在的國家/地區。 註:只能使用國際標準的三位國家代碼。 完整國家代碼清單,請通過以下連結下載:International Country Guide |
SupportEmail | 否 | String | 製造商郵箱地址 |
SupportPhone | 否 | String | 製造商客服電話 |
SupportURL | 否 | String | 製造商客服網址 例如:http://support.domain.com |
Schema: AddManufacturerRequest.xsd
示例:XML, Request
POST https://api.newegg.com/marketplace/contentmgmt/manufacturer/creationrequest?sellerid={SellerID} Authorization: 720ddc067f4d115bd544aff46bc75634 SecretKey: 21EC2020-3AEA-1069-A2DD-08002B30309D Content-Type: application/xml Accept: application/xml <NeweggAPIRequest> <OperationType>SubmitManufacturerRequest</OperationType> <RequestBody> <ManufacturerRequest> <Name> <![CDATA[sony & wonder]]> </Name> <URL>www.sonywonder.com</URL> <SupportEmail></SupportEmail> <SupportPhone></SupportPhone> <SupportURL></SupportURL> </ManufacturerRequest> </RequestBody> </NeweggAPIRequest>
示例:Json, Request
POST https://api.newegg.com/marketplace/contentmgmt/manufacturer/creationrequest?sellerid={SellerID} Authorization: 720ddc067f4d115bd544aff46bc75634 SecretKey: 21EC2020-3AEA-1069-A2DD-08002B30309D Content-Type: application/json Accept: application/json { "OperationType": "SubmitManufacturerRequest", "RequestBody": { "ManufacturerRequest": { "Name": "sony & wonder", "URL": "www.sonywonder.com" } } }
回覆文件主體
屬性 | 格式 | 描述 |
IsSuccess | String | 用於確認提交加入新製造商的請求操作是否成功 固定值:True |
SellerID | String | 您的商家編號 |
OperationType | String | 固定值:SubmitManufacturerResponse |
ResponseDate | String | 回覆日期 |
Schema: AddManufacturerResponse.xsd
示例: XML, Response
<?xml version="1.0" encoding="utf-8"?> <NeweggAPIResponse> <IsSuccess>true</IsSuccess> <SellerID>A006</SellerID> <OperationType>SubmitManufacturerResponse</OperationType> <ResponseBody> <ManufacturerRequest> <Name> <![CDATA[sony & wonder]]> </Name> <RequestDate>2/22/2012 16:50:03</RequestDate> </ManufacturerRequest> </ResponseBody> <ResponseDate>2/22/2012 16:51:03</ResponseDate> </NeweggAPIResponse>
示例: Json, Response
{ "IsSuccess": "true", "SellerID": "A006", "OperationType": "SubmitManufacturerResponse", "ResponseBody": { "ManufacturerRequest": { "Name": "sony & wonder", "RequestDate": "2/22/2012 16:50:03" } }, "ResponseDate": "2/22/2012 16:51:03" }
請求失敗錯誤資訊
常規HTTP錯誤回應,請參考回覆失敗錯誤代碼清單。
錯誤代碼 | 描述 |
CT034 | [MfrName] Error: This Manufacturer is existing! Please use correct manufacturer name “{0}” for your reference. [MfrName]錯誤資訊:該製造商已存在,請使用正確的製造商名稱“{0}” |
CT035 | [MfrName] Error: The manufacturer “{0}” already exists. [MfrName]錯誤資訊:製造商”{0}”已存在 |
CT036 | Require {manufacturer name|manufacturer URL} 製造商|製造商URL必填 |
CT038 | [MfrName] Error: The manufacturer “{0}” already declined.Please try another manufacturer name. [MfrName]錯誤資訊:製造商“{0}”已被拒絕。請嘗試其他製造商名稱。 |
CT039 | [MfrURL] Error:Format Error,For example:http://www.example.com [MfrURL]錯誤資訊:格式錯誤。正確格式如http://www.example.com |
CT041 | [MfrName] Error: The manufacturer “{0}” already existed in another pending request. [MfrName]錯誤資訊:製造商”{0}”在其他待審核請求中已存在 |
CT042 | [SupportEmail] Error:Format Error,For example:123@newegg.com [SupportEmail]錯誤資訊:格式錯誤。正確格式如123@newegg.com |
示例: XML, Response
<?xml version="1.0" encoding="utf-8"?> <Errors> <Error> <Code>CT035</Code> <Message>Sony Error: The manufacturer Sony already exists.</Message> </Error> </Errors>
示例: Json, Response
[ { "Code": "CT035", "Message": "Sony Error: The manufacturer Sony already exists." } ]
更新日期:04/15/2022