POST api/products/list?ids={ids}&lang={lang}&token={token}
Fast product descriptions lookup by ID list
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ids |
Comma-separated product IDs |
string |
None. |
| lang |
Language |
string |
None. |
| token |
Token from api/apilogin method (optional) |
string |
None. |
Body Parameters
Request body
VmProductListRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ids |
product identifiers |
Collection of integer |
None. |
| lang |
information display language ru-RU | en-US |
string |
None. |
| token |
token obtained from api/apilogin method, optional parameter if token and product belong to the same seller, then num_in_stock parameter value will be visible in the response if invalid token is passed, http status code 401 is returned |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ids": [
1,
2
],
"lang": "sample string 1",
"token": "sample string 2"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
application/xml, text/xml
Sample:
<digiseller.request>
<ids>
<id>1</id>
<id>2</id>
</ids>
<lang>sample string 1</lang>
<token>sample string 2</token>
</digiseller.request>
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.