Update Order
PUT
/v1/orders/JXW6VDOK
Request
Body Params application/json
order_id
string
required
test_order
boolean
required
order_status
enum<string>
optional
Allowed values:
draftnew_order
order_type
enum<integer>
optional
Allowed values:
567
label_url
string
optional
line_items
array [object {7}]
required
order_item_id
string
required
sku
string
required
name
string
optional
quantity
integer
required
print_files
array [object {2}]
required
preview_files
array [object {2}]
optional
license_design_id
string
optional
address
object
required
name
string
required
email
string
optional
company
string
optional
phone
string
optional
street1
string
required
street2
string
optional
city
string
required
state
string
required
country
string
required
zip
string
required
return_address
object
optional
name
string
required
email
string
optional
company
string
optional
phone
string
optional
street1
string
required
street2
string
optional
city
string
required
state
string
required
country
string
required
zip
string
required
shipping_method
enum<string>
required
Allowed values:
standardpriorityexpress
sample_order
boolean
optional
reprint_order
boolean
optional
is_fba_order
boolean
optional
fba_shipping_label
string
optional
fba_item_label
string
optional
ioss_number
string
optional
tax_id
string
optional
tax_id_type
enum<string>
optional
Allowed values:
CNPDANDTFDUNEINEOREORIFEDFTZGSTHMRCIOSSLVGMRNPANPIDSDTSSNSTATANTINVATVOECOTHER
insert
array [object {3}]
optional
name
enum<string>
required
Allowed values:
packing_slipgift_message
url
string
required
size
enum<string>
required
Allowed value:
8.5x11
plastic_bag
boolean
optional
additional_services
array [object {4}]
optional
hologram_sticker
string
optional
mug_packaging
string
optional
sticker_and_bag
string
optional
plastic_bag_fee
string
optional
Example
{
"order_id": "JXW6VDOK",
"test_order": true,
"order_status": "draft",
"line_items": [
{
"order_item_id": "1-c33",
"sku": "YOUT1Q0XS",
"name": "Line Item 1",
"quantity": 3,
"print_files": [
{
"key": "front",
"url": "https://via.placeholder.com/2400/09f/fff.png"
},
{
"key": "back",
"url": "https://via.placeholder.com/2400/09f/fff.png"
}
],
"preview_files": [
{
"key": "front",
"url": "https://via.placeholder.com/2400/09f/fff.png"
},
{
"key": "back",
"url": "https://via.placeholder.com/2400/09f/fff.png"
}
]
}
],
"address": {
"name": "John Smith",
"email": "johnsmith@demo.com",
"company": "DEMO",
"phone": "(330) 638-1331",
"street1": "4736 Phillips Rice Rd",
"street2": "",
"city": "Cortland",
"state": "OH",
"country": "US",
"zip": "44410",
"force_verified_status": true
},
"return_address": {
"name": "John Smith",
"email": "johnsmith@demo.com",
"company": "DEMO",
"phone": "(330) 638-1331",
"street1": "4736 Phillips Rice Rd",
"street2": "",
"state": "OH",
"city": "Cortland",
"country": "US",
"zip": "44410"
},
"shipping_method": "standard"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://api.swiftpod.com/v1/orders/JXW6VDOK' \
--header 'Content-Type: application/json' \
--data-raw '{
"order_id": "JXW6VDOK",
"test_order": true,
"order_status": "draft",
"line_items": [
{
"order_item_id": "1-c33",
"sku": "YOUT1Q0XS",
"name": "Line Item 1",
"quantity": 3,
"print_files": [
{
"key": "front",
"url": "https://via.placeholder.com/2400/09f/fff.png"
},
{
"key": "back",
"url": "https://via.placeholder.com/2400/09f/fff.png"
}
],
"preview_files": [
{
"key": "front",
"url": "https://via.placeholder.com/2400/09f/fff.png"
},
{
"key": "back",
"url": "https://via.placeholder.com/2400/09f/fff.png"
}
]
}
],
"address": {
"name": "John Smith",
"email": "johnsmith@demo.com",
"company": "DEMO",
"phone": "(330) 638-1331",
"street1": "4736 Phillips Rice Rd",
"street2": "",
"city": "Cortland",
"state": "OH",
"country": "US",
"zip": "44410",
"force_verified_status": true
},
"return_address": {
"name": "John Smith",
"email": "johnsmith@demo.com",
"company": "DEMO",
"phone": "(330) 638-1331",
"street1": "4736 Phillips Rice Rd",
"street2": "",
"state": "OH",
"city": "Cortland",
"country": "US",
"zip": "44410"
},
"shipping_method": "standard"
}'
Responses
🟢200OK
text/plain
Body
status
boolean
required
message
string
required
data
object
required
id
string
required
order_id
string
required
Example
{
"status": true,
"message": "Success.",
"data": {
"id": "j7ab12cd",
"order_id": "OD-ZA-3-c10"
}
}
Modified at 2025-03-13 02:52:12