List Shipments
Retrieve a paginated collection of Shipment records belonging to your Organization
GET /shipments
curl \
-X GET https://api.arta.io/shipments \
-H "Authorization: ARTA_APIKey s0e1t2e3c4a5s6t7r8o9n10o11m12y"
Response examples (200)
# Headers
content-type: application/json
x-arta-request-id: FkBjuxbwLLTx4RoAARkx
# Payload
{
"items": [
{
"id": "748dd2cd-f299-446d-8e6e-19b33aa72a83",
"tags": [],
"total": "405.53",
"origin": {
"city": "Brooklyn",
"region": "NY",
"country": "US",
"postal_code": "11211"
},
"status": "pending",
"shortcode": "DEMO-572652",
"created_at": "2021-01-21T21:00:58.403150",
"quote_type": "parcel",
"updated_at": "2021-01-21T21:00:58.403150",
"destination": {
"city": "Los Angeles",
"region": "CA",
"country": "US",
"postal_code": "90024"
},
"object_count": 1,
"package_count": 1,
"total_currency": "USD",
"public_reference": null,
"hosted_session_id": null,
"internal_reference": "cart #425123; user #871"
}
],
"metadata": {
"page": 1,
"page_size": 20,
"total_count": 1
}
}