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
@@ -245,12 +245,12 @@ var apiInstance = new OrderCloud.Addresses();
245
245
var buyerID ="buyerID_example"; // String | ID of the buyer.
246
246
247
247
var opts = {
248
-
'search':"search_example", // String | Search of the address.
249
-
'searchOn':["searchOn_example"], //[String] | Search on of the address.
250
-
'sortBy':["sortBy_example"], //[String] | Sort by of the address.
251
-
'page':56, // Number | Page of the address.
252
-
'pageSize':56, // Number | Page size of the address.
253
-
'filters': {key:"filters_example"} // {String: String} | Filters of the address.
248
+
'search':"search_example", // String | Word or phrase to search for.
249
+
'searchOn':"searchOn_example", // String | Comma-delimited list of fields to search on.
250
+
'sortBy':"sortBy_example", // String | Comma-delimited list of fields to sort by.
251
+
'page':56, // Number | Page of results to return. Default: 1
252
+
'pageSize':56, // Number | Number of results to return per page. Default: 20, max: 100.
253
+
'filters': {key:"filters_example"} // {String: String} | Any additional key/value pairs passed in the query string are interpretted as filters. Valid keys are top-level properties of the returned model or 'xp.???'
**search** | **String**| Search of the address. | [optional]
269
-
**searchOn** | [**[String]**](String.md)| Search on of the address. | [optional]
270
-
**sortBy** | [**[String]**](String.md)| Sort by of the address. | [optional]
271
-
**page** | **Number**| Page of the address. | [optional]
272
-
**pageSize** | **Number**| Page size of the address. | [optional]
273
-
**filters** | [**{String: String}**](String.md)| Filters of the address. | [optional]
268
+
**search** | **String**| Word or phrase to search for. | [optional]
269
+
**searchOn** | **String**| Comma-delimited list of fields to search on. | [optional]
270
+
**sortBy** | **String**| Comma-delimited list of fields to sort by. | [optional]
271
+
**page** | **Number**| Page of results to return. Default: 1 | [optional]
272
+
**pageSize** | **Number**| Number of results to return per page. Default: 20, max: 100. | [optional]
273
+
**filters** | [**{String: String}**](String.md)| Any additional key/value pairs passed in the query string are interpretted as filters. Valid keys are top-level properties of the returned model or 'xp.???' | [optional]
274
274
275
275
### Return type
276
276
@@ -310,11 +310,11 @@ var opts = {
310
310
'addressID':"addressID_example", // String | ID of the address.
311
311
'userID':"userID_example", // String | ID of the user.
312
312
'userGroupID':"userGroupID_example", // String | ID of the user group.
313
-
'level':"level_example", // String | Level of the address.
314
-
'isShipping':true, // Boolean | Is shipping of the address.
315
-
'isBilling':true, // Boolean | Is billing of the address.
316
-
'page':56, // Number | Page of the address.
317
-
'pageSize':56// Number | Page size of the address.
313
+
'level':"level_example", // String | Level of the address assignment. Possible values: User, Group, Company.
314
+
'isShipping':true, // Boolean | Is shipping of the address assignment.
315
+
'isBilling':true, // Boolean | Is billing of the address assignment.
316
+
'page':56, // Number | Page of results to return. Default: 1
317
+
'pageSize':56// Number | Number of results to return per page. Default: 20, max: 100.
'search':"search_example", // String | Search of the admin address.
178
-
'searchOn':["searchOn_example"], //[String] | Search on of the admin address.
179
-
'sortBy':["sortBy_example"], //[String] | Sort by of the admin address.
180
-
'page':56, // Number | Page of the admin address.
181
-
'pageSize':56, // Number | Page size of the admin address.
182
-
'filters': {key:"filters_example"} // {String: String} | Filters of the admin address.
177
+
'search':"search_example", // String | Word or phrase to search for.
178
+
'searchOn':"searchOn_example", // String | Comma-delimited list of fields to search on.
179
+
'sortBy':"sortBy_example", // String | Comma-delimited list of fields to sort by.
180
+
'page':56, // Number | Page of results to return. Default: 1
181
+
'pageSize':56, // Number | Number of results to return per page. Default: 20, max: 100.
182
+
'filters': {key:"filters_example"} // {String: String} | Any additional key/value pairs passed in the query string are interpretted as filters. Valid keys are top-level properties of the returned model or 'xp.???'
183
183
};
184
184
apiInstance.List(opts).then(function(data) {
185
185
console.log('API called successfully. Returned data: '+ data);
**search** | **String**| Search of the admin address. | [optional]
197
-
**searchOn** | [**[String]**](String.md)| Search on of the admin address. | [optional]
198
-
**sortBy** | [**[String]**](String.md)| Sort by of the admin address. | [optional]
199
-
**page** | **Number**| Page of the admin address. | [optional]
200
-
**pageSize** | **Number**| Page size of the admin address. | [optional]
201
-
**filters** | [**{String: String}**](String.md)| Filters of the admin address. | [optional]
196
+
**search** | **String**| Word or phrase to search for. | [optional]
197
+
**searchOn** | **String**| Comma-delimited list of fields to search on. | [optional]
198
+
**sortBy** | **String**| Comma-delimited list of fields to sort by. | [optional]
199
+
**page** | **Number**| Page of results to return. Default: 1 | [optional]
200
+
**pageSize** | **Number**| Number of results to return per page. Default: 20, max: 100. | [optional]
201
+
**filters** | [**{String: String}**](String.md)| Any additional key/value pairs passed in the query string are interpretted as filters. Valid keys are top-level properties of the returned model or 'xp.???' | [optional]
202
202
203
203
### Return type
204
204
@@ -217,7 +217,7 @@ Name | Type | Description | Notes
217
217
218
218
<aname="Patch"></a>
219
219
# **Patch**
220
-
> Address Patch(addressID, address)
220
+
> Address Patch(addressID, partialAddress)
221
221
222
222
223
223
@@ -234,9 +234,9 @@ var apiInstance = new OrderCloud.AdminAddresses();
234
234
235
235
var addressID ="addressID_example"; // String | ID of the address.
0 commit comments