Skip to content

Commit a6412ab

Browse files
author
Greg Taylor
committed
Send a shipment request instead of a validation request.
1 parent dfa9c02 commit a6412ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/create_shipment.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,10 @@
110110
# If you want to make sure that all of your entered details are valid, you
111111
# can call this and parse it just like you would via send_request(). If
112112
# shipment.response.HighestSeverity == "SUCCESS", your shipment is valid.
113-
shipment.send_validation_request()
113+
#shipment.send_validation_request()
114114

115115
# Fires off the request, sets the 'response' attribute on the object.
116-
#shipment.send_request()
116+
shipment.send_request()
117117

118118
# This will show the reply to your shipment being sent. You can access the
119119
# attributes through the response attribute on the request object. This is

0 commit comments

Comments
 (0)