Get shipment

Returns a single shipment's information

Get shipment

GET https://api-sandbox.shiplemon.com/v1/shipments/:id

Returns the shipment's information

Path Parameters

Name
Type
Description

id

string

The id of the shipment

{
    "data": {
        "id": "6033fea86358650f6f2d9f06",
        "driver": "ups",
        "pickup_ref": null,
        "tracking_ref": "1Z7810V10433677098",
        "tracking_url": "https://www.ups.com/track?tracknum=1Z7810V10433677098",
        "tracking_status": "PRE_TRANSIT",
        "tracking_history": [],
        "label_url": "https://static.weship.gr/labels/ups/1Z7810V10433677098.png",
        "invoice_url": null,
        "address_from": { 
            "country":"GR", 
            "zip":"14451",
            "name": "Kostas Papadopoulos", 
            "company": "Papadopoulou IKE", 
            "address": "Papadopoulou 23",
            "address2": "Floor 2"
            "city": "Athens",
            "phone": "+306900000000",
            "email": "[email protected]"
            "country": "GR",
            "notes": "call me"            
        },
        "address_to": {
            "name": "SG2",
            "country": "GR",
            "state": "I",
            "city": "Athens",
            "zip": "14451",
            "address": "Kolokotroni 2",
            "email": "[email protected]",
            "phone": "+306900000000"
        },
        "items": [
            {
                "weight": 2000,
                "height": 10,
                "width": 10,
                "length": 10,
                "notes": "Clothes"
            }
        ],
        "pickup": null,
        "rate": {
            "id": "ups_65_f77b5a8f-f66f-42b6-b84a-f0a18f82cfe8",
            "driver": "ups",
            "provider": {
                "name": "UPS",
                "image": "https://static.deliverback.gr/providers/ups.png"
            },
            "service": {
                "name": "UPS Express Saver",
                "estimated_delivery_in_days": 1
            },
            "total_amount": 14.28,
            "currency": "EUR",
            "printing_required": true,
            "transportation": "road",
            "metadata": {
                "items": [
                    {
                        "weight": 2000,
                        "height": 10,
                        "width": 10,
                        "length": 10,
                        "notes": "Nike air max",
                        "value": 20
                    }
                ],
                "address_from": {
                    "country": "GR",
                    "zip": "14451"
                },
                "address_to": {
                    "country": "GR",
                    "zip": "14121"
                }
            }
        }
    }
}

Example Request

Example response

Last updated