File tree Expand file tree Collapse file tree 1 file changed +51
-1
lines changed
WxSAPIntegration/resources Expand file tree Collapse file tree 1 file changed +51
-1
lines changed Original file line number Diff line number Diff line change 63
63
" 0000001400"
64
64
65
65
/customers/search :
66
- post :
66
+ post :
67
67
tags :
68
68
- customers
69
69
summary : Search customers
@@ -109,6 +109,31 @@ paths:
109
109
type : object
110
110
message :
111
111
type : string
112
+ /customers/batch :
113
+ get :
114
+ tags :
115
+ - customers
116
+ summary : Get details of customer in batches of 10 customers at a time
117
+ description : Uses behind the scenes BAPI_CUSTOMER_GETLIST to get ID and BAPI_CUSTOMER_GETDETAIL2 to get details
118
+ responses :
119
+ " 200 " :
120
+ description : Customer details
121
+ content :
122
+ " application/json " :
123
+ schema :
124
+ type : object
125
+ properties :
126
+ response :
127
+ type : object
128
+ message :
129
+ type : string
130
+ parameters :
131
+ - name : batchNo
132
+ in : query
133
+ description : batch number
134
+ required : true
135
+ example :
136
+ " 1"
112
137
113
138
/equipments :
114
139
get :
@@ -245,6 +270,31 @@ paths:
245
270
type : object
246
271
message :
247
272
type : string
273
+ /salesorders/batch
274
+ get :
275
+ tags :
276
+ - salesorders
277
+ summary : Get details of salesorders in batches from 10 customers at a time
278
+ description : Uses behind the scenes BAPI_CUSTOMER_GETLIST to get ID and BAPI_SALESORDER_GETLIST to get salesorder details
279
+ responses :
280
+ " 200 " :
281
+ description : Salesorder details
282
+ content :
283
+ " application/json " :
284
+ schema :
285
+ type : object
286
+ properties :
287
+ response :
288
+ type : object
289
+ message :
290
+ type : string
291
+ parameters :
292
+ - name : batchNo
293
+ in : query
294
+ description : batch number
295
+ required : true
296
+ example :
297
+ " 1"
248
298
/salesorders :
249
299
post :
250
300
tags :
You can’t perform that action at this time.
0 commit comments