提交新制造商请求

制造商名称是在新蛋商城中创建新商品时必填信息之一。只有系统中预先定义的值才能够被使用。可通过制造商检索来获取完整的可用制造商列表。如果您商品的制造商在我们系统中不存在,您可以向新蛋商城提交加入新制造商的创建请求。

为了加快审批过程,商城鼓励您提供尽可能多的制造商信息。任何没有制造商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