获取有关卖家产品的问题
方法适用于所有模式.
如果您使用API-Key令牌,调用该方法时需要具备列表中可用权限之一
- communication — 与买家沟通
- all-methods — 全面管理账户
- all-methods:read-only — 查看所有数据
使用指定的过滤器返回有关卖家产品的问题。
结果逐页返回,一页包含不超过50个问题。
| ⚙️ 限制: 每小时10,000次请求 |
|---|
Request
POST
https://api.partner.market.yandex.ru/v1/businesses/{businessId}/goods-questions
Path parameters
|
Name |
Description |
|
businessId |
Type: integer 内阁ID。 要找到答案,请使用请求 GET v2/campaigns. Min value: |
Query parameters
|
Name |
Description |
|
limit |
Type: integer 每页的值数。 Min value: |
|
page_token |
Type: string 结果页面的ID。 如果省略该参数,则返回第一页。 我们建议传输输出参数的值 如果设置 Example: |
Body
application/json
{
"offerId": "example",
"categoryIds": [
0
],
"questionIds": [
1
],
"dateFrom": "2020-02-02",
"dateTo": "2020-02-02",
"updatedDateFrom": "2020-02-02T14:30:30+03:00",
"updatedDateTo": "2020-02-02T14:30:30+03:00",
"needAnswer": false,
"sort": "CREATED_AT_DESC"
}
|
Name |
Description |
|
categoryIds |
Type: integer[] | null 产品类别Id。 Min items: Unique items: Example
|
|
dateFrom |
Type: string<date> 问题创建期的开始日期。 如果省略该参数,则在指定的日期前1个月返回信息 最大间隔为1个月。 Example: |
|
dateTo |
Type: string<date> 发行创建期的结束日期。 如果省略该参数,则使用当前日期。 最大间隔为1个月。 Example: |
|
needAnswer |
Type: boolean 我需要这个问题的答案吗?
Default: |
|
offerId |
Type: string 你的 SKU — 系统中的产品ID。 使用规则 SKU:
SKU 产品可以在市场上的卖方帐户中更改。 阅读如何做到这一点。 在市场对卖家的帮助. 重要 值开头和结尾的空格会自动删除。 例如, Min length: Max length: Pattern: Example: |
|
sort |
Type: string 题的排序顺序。
Enum: |
Responses
200 OK
问题列表。
Body
application/json
{
"status": "OK",
"result": {
"questions": [
{
"questionIdentifiers": {},
"businessId": 1,
"text": "example",
"createdAt": "2025-01-01T00:00:00Z",
"votes": {},
"author": {}
}
],
"paging": {
"nextPageToken": "example"
},
"totalCount": 0
}
}
Type: object
All of 2 types
-
Type: object
status
Type: string
响应的类型。 可能的值:
OK— 没有错误。ERROR— 处理请求时出错。
Enum:
OK,ERROR服务器响应的标准包装器。
Example
{ "status": "OK" } -
Type: object
result
Type: object
questions
Type: object[]
author
Type: object
name
Type: string
作者的名字或内阁的名字。
Example:
exampletype
Type: string
作者类型:
USER— 用户。BUSINESS— 办公室。VENDOR— 制造商。BRAND— 品牌。
Enum:
USER,BUSINESS,VENDOR,BRAND关于评论作者的信息。
Example
{ "type": "USER", "name": "example" }businessId
Type: integer
内阁ID。 要找到答案,请使用请求 GET v2/campaigns.
Min value:
1createdAt
Type: string<date-time>
创建问题的日期和时间。
Example:
2025-01-01T00:00:00ZquestionIdentifiers
Type: object
id
Type: integer
的问题ID。
Min value:
1offerId
Type: string
你的 SKU — 系统中的产品ID。
使用规则 SKU:
-
对于每个产品 SKU 一定有一个。
-
已经设置 SKU 它不能被释放并重新用于另一个产品。 每个产品都应该收到一个以前从未在目录中使用过的新标识符。
SKU 产品可以在市场上的卖方帐户中更改。 阅读如何做到这一点。 在市场对卖家的帮助.
重要
值开头和结尾的空格会自动删除。 例如,
" SKU123 "和"SKU123"它们将被视为相同的值。Min length:
1Max length:
255Pattern:
^(?=.*\S.*)[^\x00-\x08\x0A-\x1f\x7f]{1,255}$Example:
examplecategoryId
Type: integer
的类别ID。
Min value:
0问题Id。
Example
{ "id": 1, "categoryId": 0, "offerId": "example" }text
Type: string
文本内容。
Min length:
1Max length:
5000Example:
examplevotes
Type: object
dislikes
Type: integer
不喜欢的数量。
likes
Type: integer
的点赞数。
一个问题、答案或评论的喜欢和不喜欢的数量。
Example
{ "likes": 0, "dislikes": 0 }问题列表。
Example
[ { "questionIdentifiers": { "id": 1, "categoryId": 0, "offerId": "example" }, "businessId": 1, "text": "example", "createdAt": "2025-01-01T00:00:00Z", "votes": { "likes": 0, "dislikes": 0 }, "author": { "type": "USER", "name": "example" } } ]totalCount
Type: integer
属于过滤器的问题总数。
paging
Type: object
nextPageToken
Type: string
下一个结果页面的ID。
Example:
example下一页的ID。
Example
{ "nextPageToken": "example" }问题列表。
Example
{ "questions": [ { "questionIdentifiers": { "id": 1, "categoryId": 0, "offerId": "example" }, "businessId": 1, "text": "example", "createdAt": "2025-01-01T00:00:00Z", "votes": { "likes": 0, "dislikes": 0 }, "author": { "type": "USER", "name": "example" } } ], "paging": { "nextPageToken": "example" }, "totalCount": 0 }Example
{ "result": { "questions": [ { "questionIdentifiers": { "id": 1, "categoryId": 0, "offerId": "example" }, "businessId": 1, "text": "example", "createdAt": "2025-01-01T00:00:00Z", "votes": { "likes": 0, "dislikes": 0 }, "author": { "type": "USER", "name": "example" } } ], "paging": { "nextPageToken": "example" }, "totalCount": 0 } }
400 Bad Request
请求包含不正确的数据。 有关错误的更多信息
Body
application/json
{
"status": "OK",
"errors": [
{
"code": "example",
"message": "example"
}
]
}
Type: object
All of 1 type
-
Type: object
All of 2 types
-
Type: object
status
Type: string
响应的类型。 可能的值:
OK— 没有错误。ERROR— 处理请求时出错。
Enum:
OK,ERROR服务器响应的标准包装器。
Example
{ "status": "OK" } -
Type: object
errors
Type: object[]
code
Type: string
的错误代码。
Example:
examplemessage
Type: string
错误的描述。
Example:
example错误列表。
Min items:
1Example
[ { "code": "example", "message": "example" } ]Example
{ "errors": [ { "code": "example", "message": "example" } ] }
服务器错误的标准包装器。
Example
{ "status": "OK", "errors": [ { "code": "example", "message": "example" } ] } -
401 Unauthorized
请求中未指定授权数据。 有关错误的更多信息
Body
application/json
{
"status": "OK",
"errors": [
{
"code": "example",
"message": "example"
}
]
}
Type: object
All of 1 type
-
Type: object
All of 2 types
-
Type: object
status
Type: string
响应的类型。 可能的值:
OK— 没有错误。ERROR— 处理请求时出错。
Enum:
OK,ERROR服务器响应的标准包装器。
Example
{ "status": "OK" } -
Type: object
errors
Type: object[]
code
Type: string
的错误代码。
Example:
examplemessage
Type: string
错误的描述。
Example:
example错误列表。
Min items:
1Example
[ { "code": "example", "message": "example" } ]Example
{ "errors": [ { "code": "example", "message": "example" } ] }
服务器错误的标准包装器。
Example
{ "status": "OK", "errors": [ { "code": "example", "message": "example" } ] } -
403 Forbidden
授权数据不正确或禁止访问资源。 有关错误的更多信息
Body
application/json
{
"status": "OK",
"errors": [
{
"code": "example",
"message": "example"
}
]
}
Type: object
All of 1 type
-
Type: object
All of 2 types
-
Type: object
status
Type: string
响应的类型。 可能的值:
OK— 没有错误。ERROR— 处理请求时出错。
Enum:
OK,ERROR服务器响应的标准包装器。
Example
{ "status": "OK" } -
Type: object
errors
Type: object[]
code
Type: string
的错误代码。
Example:
examplemessage
Type: string
错误的描述。
Example:
example错误列表。
Min items:
1Example
[ { "code": "example", "message": "example" } ]Example
{ "errors": [ { "code": "example", "message": "example" } ] }
服务器错误的标准包装器。
Example
{ "status": "OK", "errors": [ { "code": "example", "message": "example" } ] } -
404 Not Found
找不到请求的资源。 有关错误的更多信息
Body
application/json
{
"status": "OK",
"errors": [
{
"code": "example",
"message": "example"
}
]
}
Type: object
All of 1 type
-
Type: object
All of 2 types
-
Type: object
status
Type: string
响应的类型。 可能的值:
OK— 没有错误。ERROR— 处理请求时出错。
Enum:
OK,ERROR服务器响应的标准包装器。
Example
{ "status": "OK" } -
Type: object
errors
Type: object[]
code
Type: string
的错误代码。
Example:
examplemessage
Type: string
错误的描述。
Example:
example错误列表。
Min items:
1Example
[ { "code": "example", "message": "example" } ]Example
{ "errors": [ { "code": "example", "message": "example" } ] }
服务器错误的标准包装器。
Example
{ "status": "OK", "errors": [ { "code": "example", "message": "example" } ] } -
420 Method Failure
已超出资源访问限制。 有关错误的更多信息
Body
application/json
{
"status": "OK",
"errors": [
{
"code": "example",
"message": "example"
}
]
}
Type: object
All of 1 type
-
Type: object
All of 2 types
-
Type: object
status
Type: string
响应的类型。 可能的值:
OK— 没有错误。ERROR— 处理请求时出错。
Enum:
OK,ERROR服务器响应的标准包装器。
Example
{ "status": "OK" } -
Type: object
errors
Type: object[]
code
Type: string
的错误代码。
Example:
examplemessage
Type: string
错误的描述。
Example:
example错误列表。
Min items:
1Example
[ { "code": "example", "message": "example" } ]Example
{ "errors": [ { "code": "example", "message": "example" } ] }
服务器错误的标准包装器。
Example
{ "status": "OK", "errors": [ { "code": "example", "message": "example" } ] } -
500 Internal Server Error
Yandex中的内部错误。 市场。 有关错误的更多信息
Body
application/json
{
"status": "OK",
"errors": [
{
"code": "example",
"message": "example"
}
]
}
Type: object
All of 1 type
-
Type: object
All of 2 types
-
Type: object
status
Type: string
响应的类型。 可能的值:
OK— 没有错误。ERROR— 处理请求时出错。
Enum:
OK,ERROR服务器响应的标准包装器。
Example
{ "status": "OK" } -
Type: object
errors
Type: object[]
code
Type: string
的错误代码。
Example:
examplemessage
Type: string
错误的描述。
Example:
example错误列表。
Min items:
1Example
[ { "code": "example", "message": "example" } ]Example
{ "errors": [ { "code": "example", "message": "example" } ] }
服务器错误的标准包装器。
Example
{ "status": "OK", "errors": [ { "code": "example", "message": "example" } ] } -
No longer supported, please use an alternative and newer version.