GET api/Store/GetProductComments?store_rid={store_rid}&page={page}&page_size={page_size}
Комментарий магазина
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| store_rid |
Идентификатор магазина |
integer |
Required |
| page |
Страница |
integer |
Required |
| page_size |
Размер |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of StoreCommentData| Name | Description | Type | Additional information |
|---|---|---|---|
| record_id |
Идентификатор |
integer |
None. |
| nick_name |
Никнейм |
string |
None. |
| user_rid |
Идентификатор автора |
string |
None. |
| dt_add |
Дата добавления |
date |
None. |
| user_photo |
Фото профиля |
string |
None. |
| description |
Текст |
string |
Required |
| store_rid |
Пост |
integer |
Required |
| rating |
Пост |
integer |
Required Range: inclusive between 1 and 5 |
Response Formats
application/json, text/json
Sample:
[
{
"record_id": 1,
"nick_name": "sample string 2",
"user_rid": "sample string 3",
"dt_add": "2026-02-04T07:00:45.3643182+05:00",
"user_photo": "sample string 5",
"description": "sample string 6",
"store_rid": 1,
"rating": 1
},
{
"record_id": 1,
"nick_name": "sample string 2",
"user_rid": "sample string 3",
"dt_add": "2026-02-04T07:00:45.3643182+05:00",
"user_photo": "sample string 5",
"description": "sample string 6",
"store_rid": 1,
"rating": 1
}
]
text/html
Sample:
[{"record_id":1,"nick_name":"sample string 2","user_rid":"sample string 3","dt_add":"2026-02-04T07:00:45.3643182+05:00","user_photo":"sample string 5","description":"sample string 6","store_rid":1,"rating":1},{"record_id":1,"nick_name":"sample string 2","user_rid":"sample string 3","dt_add":"2026-02-04T07:00:45.3643182+05:00","user_photo":"sample string 5","description":"sample string 6","store_rid":1,"rating":1}]