Download Documents

Get documents thanks to Public Shiptify API

Workflow

Downlaod Documents workflow

Endpoints to use

List of attachments for shipment by identifier.

get

List of attachments for shipment by identifier.

Authorizations
Path parameters
idintegerrequired

Shipment identifier.

Header parameters
X-Account-IDintegeroptional

Account identifier

Responses
curl -L \
  --url 'https://api.shiptify.com//shipments/{id}/attachments' \
  --header 'Authorization: YOUR_API_KEY'
[
  {
    "id": 1,
    "name": "unspecified.png",
    "type": "arrival_notice",
    "status": "active"
  }
]

Get link for download attachment.

get
Authorizations
Path parameters
idintegerrequired

Attachment identifier.

Header parameters
X-Account-IDintegeroptional

Account identifier

Responses
curl -L \
  --url 'https://api.shiptify.com//attachments/{id}/download' \
  --header 'Authorization: YOUR_API_KEY'
text

Last updated