Documentation
Carrier API (Galaxy)
Carrier API (Galaxy)
  • Carrier [Galaxy]
    • General considerations
      • Resources [api]
        • Metadata [Dictionary]
        • Shipment Modes [Dictionary]
        • Tracking points [Sample]
        • Documents Types [Sample]
        • Content Types [Sample]
        • My accounts
        • *My Active Shippers
      • Postman Project
      • Full Swagger
    • Shipments [webhook]
      • Setting up webhooks
      • Securing webhooks
      • Retry Mechanism
      • Carrier Payloads
    • Trackings [api]
      • By SH ID
        • TPs by SH ID
        • Create TP by SH ID
        • Replan Pickup by SH ID
        • Confirm Pickup by SH ID
        • Replan Delivery by SH ID
        • Confirm Delivery by SH ID
      • By TP ID
        • Update TP location by TP ID
        • Cancel TP by TP ID
        • Replan TP by TP ID
        • Confirm TP by TP ID
    • Metadata [api]
      • Shipment_request scope
        • Get MD by SR ID
        • Create MD by SR ID
        • Update MD by SR ID
      • Shipment scope
        • Get MD by SH ID
        • Create MD by SH ID
        • Update MD by SH ID
    • Documents [api]
      • Shipment scope
        • *Get Attachments by SH_ID
        • Upload Attachment by SH_ID
      • Shipment Request scope
        • *Get Attachments by SR_ID
      • Get Attachment by Attachment ID
Powered by GitBook
On this page
  1. Carrier [Galaxy]
  2. Trackings [api]
  3. By SH ID

TPs by SH ID

PreviousBy SH IDNextCreate TP by SH ID

Last updated 8 months ago

Get shipment tracking points by shipment identifier.

get
Authorizations
Path parameters
idnumberRequired

Point identifier.

Header parameters
X-Account-IDintegerOptional

Account identifier

Responses
200
OK
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
500
Internal Error
application/json
get
GET /galaxy/shipments/{id}/tracking-points HTTP/1.1
Host: api.shiptify.com
Authorization: YOUR_API_KEY
Accept: */*
[
  {
    "id": 1,
    "shipment_id": 1,
    "carrier_id": 1,
    "shipper_id": 1,
    "address_id": 1,
    "position": 1,
    "comment": "text",
    "type": "text",
    "incident": "text",
    "planned_date": "text",
    "planned_date_init": "text",
    "real_date": "text",
    "planned_time": "text",
    "planned_time_init": "text",
    "real_time": "text",
    "external_key": 1,
    "address": {
      "id": 1,
      "recipient_name": "text",
      "address_1": "text",
      "address_2": "text",
      "contact": {
        "civility": "M",
        "first_name": "text",
        "last_name": "text",
        "email": "text",
        "phone_number": "text",
        "fax_number": "text"
      },
      "has_mandatory_slotbooking": true,
      "slot_booking": {
        "url_link": "text",
        "email": "text",
        "phone_number": "text",
        "fax_number": "text"
      },
      "city": "text",
      "company": {
        "id": 1,
        "name": "text"
      },
      "country": "text",
      "email": "text",
      "instructions": "Ring the bell 3 times.",
      "internal_ref": "text",
      "name": "text",
      "phone_number": "text",
      "state": "text",
      "type": "store",
      "zipcode": "text",
      "skip_zipcode_validation": true,
      "is_personal": true,
      "tailgate_required": true
    }
  }
]