广告组列表

根据指定广告活动名称、启用状态、日期范围和其他查询相关的活动信息搜索广告组列表。

相关URL

Newegg.com: https://api.newegg.com/marketplace/sponsoredmgmt/campaign/group/search?sellerid={sellerid}

注:请确保您的请求URL全都是小写(除Seller ID)并且不能包含任何空格或者换行符。

参数

名称 是否必填? 描述
sellerid 您在新蛋商城的商家编号

相关请求信息

HTTP方式 是否需要认证? 请求格式 回复格式 频率限制
POST 需要 Json Json 1000 请求/小时

请求文件主体

属性 是否必填? 格式 描述
sellerId String 您在新蛋商城的商家编号
countryCode String 国家/地区编码
campaignNumber Integer 广告活动的标识编号
searchKeywordType Enum 有效值:

  • GROUP_NAME:模糊匹配,只支持单个关键词
  • GROUP_NUM:精准匹配,关键词输入组号用逗号分隔,支持批量查询
keyword String 结果限制为具有指定名称的广告活动
activeStatus Enum 结果限制为指定范围内的状态
有效值:

  • Active 启用:查询处理中、正在投放、已超预算状态的数据
  • Inactive 暂停:查询暂停和已结束状态的数据
fromDate String 广告活动的开始日期
toDate String 广告活动的结束日期
pageInfo pageIndex Integer 当前页索引,默认为 1
pageSize Integer 一页中的记录数(最大值为每页100 条)
sortField String 排序字段名称,默认为InDate
sortType String 默认Desc,支持Desc、Asc两种方式

示例:Json,Request

POST https://api.newegg.com/marketplace/sponsoredmgmt/campaign/group/search?sellerid={sellerid}
Authorization: 720ddc067f4d115bd544aff46bc75634
SecretKey: 21EC2020-3AEA-1069-A2DD-08002B30309D
Content-Type: application/json
Accept: application/json

{  
  "sellerId": "AWJ3",
  "countryCode": null,
  "campaignNumber": 1007660,
  "searchKeywordType": "GROUP_NUM",
  "keyword": "1007661",
  "activeStatus": null,
  "fromDate": null,
  "toDate": null,
  "pageInfo": {
    "pageIndex": 1,
    "pageSize": 20,
    "sortField": "InDate",
    "sortType": "Desc"
  }
   
}

回复文件主体

属性 格式 描述
campaignNumber Integer 与广告组关联的广告活动标识编号
campaignName String 广告活动名称
groupNumber Integer 广告组标识编号
groupName String 广告组名称
countryCode String 国家/地区编码
defaultBid Decimal 竞价金额
offSiteBid Decimal 站外广告竞价金额
type Integer 广告组类型。有效值:

  • 0:keyword  targeting 关键词投放
  • 1:product targeting 商品投放
  • 2:On-site Product Targeting Newegg平台投放
  • 3:Off-site Product Targeting 非Newegg平台投放
suggBid Decimal 建议出价
suggBidLowest Decimal 建议最低出价
suggBidMost Decimal 建议最高出价
keywordSize Integer 关键词数量
keywordList String 关键词文本
productSize Integer 商品数量
productList String 商品集合列表
sellerID String 您的商家编号
sellerName String 您的商家名称
activeStatus Enum 结果限制为指定范围内的状态。有效值:

  • Active 启用:查询处理中、正在投放、已超预算状态的数据
  • Inactive 暂停:查询暂停和已结束状态的数据
status String 当前广告组状态
inDate String 广告组创建日期
inUser Integer 广告组创建用户ID
logo String 如广告活动类型为头条,值为Logo字段名称
headline String 如广告活动类型为头条,值为头条URL
title String 如广告活动类型为头条,值为界面展示的信息,位于商家Logo下方
landingPageType Integer 有效值:

  • 0:新蛋店铺
  • 1:卖家输入的新蛋导航页
landingPageUrl String 导航页URL
declineReason String 广告活动被拒绝原因
videoUrl String 如广告活动类型为视频,值为视频URL
costModel Integer 有效值:

  • 0:CPM 每次点击费用
  • 1:CPC 每千次展示费用
productTargetingList String 商品投放列表
totalRows Integer 返回结果总数量

示例:Json,Request

{
  "header": [
    {
      "msg": "search groups success",
      "bizCode": "026"
    }
  ],
  "rows": [
    {
      "campaignNumber": 1007660,
      "campaignName": "Powered USB Hub 3.0 USB Splitter Thunderbolt to USB-C to HDMI Campaign-2022-02-22 03:24:02",
      "groupNumber": 1007661,
      "groupName": "Powered USB Hub 3.0 USB Splitter Thunderbolt to USB-C to HDMI",
      "countryCode": "USA",
      "defaultBid": 0.89,
      "offSiteBid": null,
      "type": 0,
      "suggBid": null,
      "suggBidLowest": null,
      "suggBidMost": null,
      "keywordSize": 1359,
      "keywordList": null,
      "productSize": 2,
      "productList": [
        "9SIAWJ3FS91499",
        "9SIAWJ3FRH9509"
      ],
      "sellerID": "AWJ3",
      "sellerName": "",
      "activeStatus": "Active",
      "status": "Delivering",
      "inDate": "Sat Feb 19 15:46:26 PST 2022",
      "inUser": "93877013",
      "logo": null,
      "headline": null,
      "title": null,
      "landingPageType": 0,
      "landingPageUrl": null,
      "declineReason": null,
      "videoUrl": null,
      "costModel": 0,
      "productTargetingList": null
    }
  ],
  "totalRows": 1
}

更新日期:06/29/2022