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
// Configure OAuth2 access token for authorization: oauth2
1084
+
var oauth2 =defaultClient.authentications['oauth2'];
1085
+
oauth2.accessToken='YOUR ACCESS TOKEN';
1086
+
1087
+
var apiInstance =newOrderCloud.Me();
1088
+
1089
+
var shipmentID ="shipmentID_example"; // String | ID of the shipment.
1090
+
1091
+
var opts = {
1092
+
'orderID':"orderID_example", // String | ID of the order.
1093
+
'search':"search_example", // String | Word or phrase to search for.
1094
+
'searchOn':"searchOn_example", // String | Comma-delimited list of fields to search on.
1095
+
'sortBy':"sortBy_example", // String | Comma-delimited list of fields to sort by.
1096
+
'page':56, // Number | Page of results to return. Default: 1
1097
+
'pageSize':56, // Number | Number of results to return per page. Default: 20, max: 100.
1098
+
'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.???'
**shipmentID** | **String**| ID of the shipment. |
1113
+
**orderID** | **String**| ID of the order. | [optional]
1114
+
**search** | **String**| Word or phrase to search for. | [optional]
1115
+
**searchOn** | **String**| Comma-delimited list of fields to search on. | [optional]
1116
+
**sortBy** | **String**| Comma-delimited list of fields to sort by. | [optional]
1117
+
**page** | **Number**| Page of results to return. Default: 1 | [optional]
1118
+
**pageSize** | **Number**| Number of results to return per page. Default: 20, max: 100. | [optional]
1119
+
**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]
0 commit comments