Update Shipment
Overview
This endpoint can be used to update a shipment.
Endpoint: /api/v1/shipments/{shipment_id}
Method: PATCH
It is critical that you verify the fulfillment and destination addresses before using them.
Failure to verify the addresses may result in loss or delayed shipments.
You may also be charged should address correction be necessary by the carrier.
URL Parameters
The ID of the shipment you wish to .
Request
When creating a shipment, you can use either of the following two approaches to specify the fulfillment and destination addresses:
- Use the
fulfillment_address_id
anddestination_address_id
fields to reference existing addresses that have already been stored on ArtPort. - Provide the address details directly in the
fulfillment_address
anddestination_address
fields.
You can also combine these approaches. For example, by using a fulfillment_address_id
and a destination_address
, or vice versa.
For examples of how to use these fields, see the request examples on this page.
The name or a brief description of the piece. You can also use an internal reference number.
Minimum character length: 2
Maximum character length: 50
The value of the artwork in USD $.
Always use an accurate value to make sure that any insurance claims are properly honored.
Minimum value: 50
Maximum value: 10000
The length of the piece in inches.
Minimum length: 17
Maximum length: 44
The height of the piece in inches.
Minimum height: 13
Maximum height: 34
The depth of the piece in inches.
Minimum depth: 1
Maximum depth: 4
The ID of an existing address to be used as the fulfillment address.
fulfillment_address
field is not provided.An object containing the fulfillment address details.
fulfillment_address_id
field is not provided.The ID of an existing address to be used as the destination address.
destination_address
field is not provided.An object containing the destination address details.
destination_address_id
field is not provided.Response
If the shipment is successfully updated, the API will return a 204 No Content
status code.
The response will not contain any content.