You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$start = 0; // int | This parameter sets the number from which you want to get entities
45
46
$count = 20; // int | This parameter sets the entity amount that has to be retrieved. Max allowed count=250
46
47
$page_cursor = ; // string | Used to retrieve entities via cursor-based pagination (it can't be used with any other filtering parameter)
@@ -56,7 +57,7 @@ $params = id,model,price,images; // string | Set this parameter in order to choo
56
57
$exclude = false; // string | Set this parameter in order to choose which entity fields you want to ignore. Works only if parameter `params` equal force_all
|**ids**|**string**| Retrieves subscribers specified by ids |[optional]|
70
72
|**start**|**int**| This parameter sets the number from which you want to get entities |[optional][default to 0]|
71
73
|**count**|**int**| This parameter sets the entity amount that has to be retrieved. Max allowed count=250 |[optional][default to 10]|
72
74
|**page_cursor**|**string**| Used to retrieve entities via cursor-based pagination (it can't be used with any other filtering parameter) |[optional]|
Copy file name to clipboardExpand all lines: docs/Model/ProductUpdate.md
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -86,5 +86,8 @@ Name | Type | Description | Notes
86
86
**reindex** | **bool** | Is reindex required | [optional][default to true]
87
87
**clear_cache** | **bool** | Is cache clear required | [optional][default to true]
88
88
**check_process_status** | **bool** | Disable or enable check process status. Please note that the response will be slower due to additional requests to the store. | [optional][default to false]
89
+
**specifics** | [**\OpenAPI\Client\Model\ProductAddSpecificsInner[]**](ProductAddSpecificsInner.md) | An array of Item Specific Name/Value pairs used by the seller to provide descriptive details of an item in a structured manner. The list of possible specifications can be obtained using the category.info method (additional_fields->product_specifics). <b>The structure of the parameter is different for specific platforms.</b> | [optional]
90
+
**shop_section_id** | **int** | Add Shop Section Id | [optional]
Copy file name to clipboardExpand all lines: lib/Api/SubscriberApi.php
+24-9Lines changed: 24 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -128,6 +128,7 @@ public function getConfig()
128
128
*
129
129
* subscriber.list
130
130
*
131
+
* @param string|null $ids Retrieves subscribers specified by ids (optional)
131
132
* @param int|null $start This parameter sets the number from which you want to get entities (optional, default to 0)
132
133
* @param int|null $count This parameter sets the entity amount that has to be retrieved. Max allowed count=250 (optional, default to 10)
133
134
* @param string|null $page_cursor Used to retrieve entities via cursor-based pagination (it can't be used with any other filtering parameter) (optional)
@@ -158,6 +159,7 @@ public function subscriberList($start = 0, $count = 10, $page_cursor = null, $su
158
159
*
159
160
* subscriber.list
160
161
*
162
+
* @param string|null $ids Retrieves subscribers specified by ids (optional)
161
163
* @param int|null $start This parameter sets the number from which you want to get entities (optional, default to 0)
162
164
* @param int|null $count This parameter sets the entity amount that has to be retrieved. Max allowed count=250 (optional, default to 10)
163
165
* @param string|null $page_cursor Used to retrieve entities via cursor-based pagination (it can't be used with any other filtering parameter) (optional)
@@ -177,9 +179,9 @@ public function subscriberList($start = 0, $count = 10, $page_cursor = null, $su
177
179
* @throws \InvalidArgumentException
178
180
* @return array of \OpenAPI\Client\Model\ModelResponseSubscriberList, HTTP status code, HTTP response headers (array of strings)
@@ -295,6 +297,7 @@ public function subscriberListWithHttpInfo($start = 0, $count = 10, $page_cursor
295
297
*
296
298
* subscriber.list
297
299
*
300
+
* @param string|null $ids Retrieves subscribers specified by ids (optional)
298
301
* @param int|null $start This parameter sets the number from which you want to get entities (optional, default to 0)
299
302
* @param int|null $count This parameter sets the entity amount that has to be retrieved. Max allowed count=250 (optional, default to 10)
300
303
* @param string|null $page_cursor Used to retrieve entities via cursor-based pagination (it can't be used with any other filtering parameter) (optional)
@@ -313,9 +316,9 @@ public function subscriberListWithHttpInfo($start = 0, $count = 10, $page_cursor
* @param string|null $ids Retrieves subscribers specified by ids (optional)
331
335
* @param int|null $start This parameter sets the number from which you want to get entities (optional, default to 0)
332
336
* @param int|null $count This parameter sets the entity amount that has to be retrieved. Max allowed count=250 (optional, default to 10)
333
337
* @param string|null $page_cursor Used to retrieve entities via cursor-based pagination (it can't be used with any other filtering parameter) (optional)
* @param string|null $ids Retrieves subscribers specified by ids (optional)
393
398
* @param int|null $start This parameter sets the number from which you want to get entities (optional, default to 0)
394
399
* @param int|null $count This parameter sets the entity amount that has to be retrieved. Max allowed count=250 (optional, default to 10)
395
400
* @param string|null $page_cursor Used to retrieve entities via cursor-based pagination (it can't be used with any other filtering parameter) (optional)
0 commit comments