-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathWorldEaseShipmentManagement.yaml
More file actions
463 lines (424 loc) · 15.6 KB
/
WorldEaseShipmentManagement.yaml
File metadata and controls
463 lines (424 loc) · 15.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
openapi: 3.1.0
info:
title: WorldEase Shipment Management API v1
description: |
## Purpose
The WorldEase Shipment Management API facilitates the consolidation of packages into a single shipment to reduce the brokerage fees and streamline international shipping processes. It offers users the ability to manage the shipment lifecycle including aggregating individual packages, closing out shipments once consolidation is completed and managing master and child shipments with options to delete as necessary.
<p>Explore API documentation and sample applications through GitHub.</p>
<a href="https://github.com/UPS-API" target="_blank" rel="noopener noreferrer">
<img src="https://www.ups.com/assets/resources/webcontent/images/gitHubButton.svg" alt="Open in GitHub" style="width: 128px; height: 32px;">
</a>
tags:
- name: World Ease Shipment Management - Shipment
description: For endpoint that allows user to finalize the close out shipments
- name: Shipment Modification
description: For endpoints that allow deletion of master and child shipments
servers:
- url: "https://wwwcie.ups.com/api/ship/{version}"
description: "Customer Integration Environment"
variables:
version:
description: Indicates WorldEase Shipment Management API to display the new release features
default: v1
enum:
- v1
- url: "https://onlinetools.ups.com/api/ship/{version}"
description: "Production"
variables:
version:
description: Indicates WorldEase Shipment Management API to display the new release features
default: v1
enum:
- v1
paths:
/master-shipment/closeout/{shipment-gccn}:
post:
tags:
- World Ease Shipment Management - Shipment
operationId: saveCloseOutShipment
summary: Close Out Shipment
description: |
Finalizes the shipment process by marking a package or set of packages as ready for dispatch, effectively ending the consolidation stage.
parameters:
- name: shipment-gccn
in: path
required: true
description: The unique identifier of the shipment to close Out. It also known as GCCN.
schema:
type: string
maxLength: 11
pattern: '^[A-Za-z0-9]{11}$'
- name: transId
in: header
required: true
schema:
$ref: "#/components/schemas/CustomTransactionId"
- name: transactionSrc
in: header
required: true
schema:
$ref: "#/components/schemas/CustomTransactionSrc"
- name: version
in: path
description: Indicates WorldEase Shipment Management API to display the new release features
required: true
schema:
type: string
default: v1
enum:
- v1
security:
- OAuth2: []
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/PostRequest'
examples:
CloseOutRequest:
value:
shipperAccountNumber: "ISUS01"
responses:
'202':
description: "Request accepted"
content:
application/json:
schema:
$ref: '#/components/schemas/PostResponse'
examples:
CloseOutResponse:
value:
transId: "4ce27ff5-8e17-4797-a8c1-089796db"
label:
opTyp: "PNG"
lblNmbr: "MVpJU1VTMDE2NzIzODc4Mjc3"
lblData: "asdfhkjuiovrtyuiopfghjkxcv"
'400':
description: "Missing required values or incorrect values or validation fails"
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
examples:
BadGCCNExample:
value:
errors:
- code: "20007"
message: "Missing GCCN"
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
examples:
Invalid Token:
value:
errors:
- code: "250002"
message: "Invalid Authentication Information"
'404':
description: Not Found
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
examples:
GCCNNotFound:
value:
errors:
- code: "20008"
message: "GCCN Not Found"
AccountNumberNotFound:
value:
errors:
- code: "20008"
message: "Shipper Account Number Not Found"
/master-shipment/{shipment-gccn}:
delete:
tags:
- World Ease Shipment Management - Shipment
operationId: "deleteMasterShipment"
summary: "Deletes the master shipment"
description: " Deletes the specified master shipment from the system. Once deleted system cannot be recovered"
parameters:
- name: shipment-gccn
in: path
required: true
description: The unique identifier of the shipment to delete the master shipment. It is also known as GCCN.
schema:
type: string
maxLength: 11
pattern: '^[A-Za-z0-9]{11}$'
- name: transId
in: header
required: true
schema:
$ref: "#/components/schemas/CustomTransactionId"
- name: transactionSrc
in: header
required: true
schema:
$ref: "#/components/schemas/CustomTransactionSrc"
- name: version
in: path
description: Indicates WorldEase Shipment Management API to display the new release features
required: true
schema:
type: string
default: v1
enum:
- v1
security:
- OAuth2: []
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/PostRequest'
examples:
DeleteRequest:
value:
shipperAccountNumber: "ISUS01"
responses:
'200':
description: "Successful Operation"
content:
application/json:
schema:
$ref: '#/components/schemas/deleteResponse'
examples:
WeDeleteResponseSummary:
value:
code: "1"
message: "The Delete request has been done successfully for the following GCCN - 12345678901 "
'400':
description: "Missing required values or incorrect values or validation fails"
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
examples:
BadGCCNExample:
value:
errors:
- code: "20007"
message: "Missing GCCN"
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
examples:
Invalid Token:
value:
errors:
- code: "250002"
message: "Invalid Authentication Information"
'404':
description: Not Found
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
examples:
GCCNNotFound:
value:
errors:
- code: "20008"
message: "GCCN Not Found"
AccountNumberNotFound:
value:
errors:
- code: "20008"
message: "Shipper Account Number Not Found"
/child-shipment/{shipment-gccn}/{tracking-number}:
delete:
tags:
- World Ease Shipment Management - Shipment
operationId: "deleteChildShipment"
summary: "Delete the child shipment "
description: " This is used to delete the child shipment record from the database"
parameters:
- name: shipment-gccn
in: path
required: true
description: The unique identifier of the shipment to identify the master shipment. It is also known as GCCN.
schema:
type: string
maxLength: 11
pattern: '^[A-Za-z0-9]{11}$'
- name: trackingNumber
in: path
required: true
description: The identifier of the shipment to identify the child shipment. It is also known as 1Z Tracking Number.
schema:
type: string
- name: transId
in: header
required: true
schema:
$ref: "#/components/schemas/CustomTransactionId"
- name: transactionSrc
in: header
required: true
schema:
$ref: "#/components/schemas/CustomTransactionSrc"
- name: version
in: path
description: Indicates WorldEase Shipment Management API to display the new release features
required: true
schema:
type: string
default: v1
enum:
- v1
security:
- OAuth2: []
responses:
'200':
description: "Successful Operation"
content:
application/json:
schema:
$ref: '#/components/schemas/deleteResponse'
examples:
WeDeleteResponseSummary:
value:
code: "1"
message: "The Delete request has been done successfully for the following 1Z tracking Number- 1Z9991450419000046 "
'400':
description: "Missing required values or incorrect values or validation fails"
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
examples:
BadGCCNExample:
value:
errors:
- code: "20007"
message: "Missing GCCN"
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
examples:
Invalid Token:
value:
errors:
- code: "250002"
message: "Invalid Authentication Information"
'404':
description: Not Found
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
examples:
GCCNNotFound:
value:
errors:
- code: "20008"
message: "GCCN Not Found"
TrackingNumberNotFound:
value:
errors:
- code: "20008"
message: "1Z Tracking Number Not Found"
components:
securitySchemes:
OAuth2:
type: oauth2
description: |
Find your Client ID and Secret on your app info page.
1. Select "Try It"
2. In the Security section enter your Client ID and Secret
3. Select "Request Token"
4. Enter any additional information in the Body and Parameters sections
5. Select "Send" to execute your API request"
flows:
clientCredentials:
x-tokenEndpointAuthMethod: client_secret_basic
tokenUrl: https://wwwcie.ups.com/security/v1/oauth/token
scopes: {}
schemas:
PostRequest:
type: "object"
required:
- shipperAccountNumber
properties:
shipperAccountNumber:
type: "string"
description: "This is the unique account number associated with the Shipper. It is also known as UPS Shipper Account Number"
PostResponse:
type: "object"
required:
- transId
- label
properties:
transId:
$ref: "#/components/schemas/CustomTransactionId"
label:
type: "object"
description: "This will contain master shipment label"
properties:
opTyp:
type: 'string'
enum: [PNG, GIF, PDF, ZPL, EPL, STAR, SPL]
description: "The is the output type in which label is generated "
lblNmbr:
type: "string"
description: "The label number assigned to this label"
lblData:
type: "string"
description: "Base64 encoded label image"
deleteResponse:
type: "object"
required:
- code
- message
properties:
code:
type: "string"
description: "Identifies the success or failure of the transaction. 1 = Successful"
message:
type: "string"
description: "Succesful text message"
ErrorResponse:
description: Error response entity
type: object
required:
- errors
properties:
errors:
type: array
description: error payload - array containing one or more Errors
items:
$ref: "#/components/schemas/Error"
Error:
type: object
properties:
code:
type: "string"
description: "The code is specific to the error "
message:
type: "string"
description: "The message that associated with the above error code "
CustomTransactionId:
description: Client generated id which is treated as the Transaction ID
type: string
minLength: 32
maxLength: 32
pattern: '^[a-fA-F0-9\-]+$'
example:
4ce27ff5-8e17-4797-a8c1-089796db
CustomTransactionSrc:
description: An identifier of the client/source application that is making the request.Length 512
type: string
maxLength: 512
example:
SAM