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

Create TP by SH ID

PreviousTPs by SH IDNextReplan Pickup by SH ID

Last updated 8 months ago

Create shipment tracking points by shipment identifier.

post
Authorizations
Path parameters
idnumberRequired

Shipment identifier.

Header parameters
X-Account-IDintegerOptional

Account identifier

Body

Array of tracking points

codestringRequired

Tracking point code.

Example: STY0001
commentstringOptional

Tracking point comment.

incidentstringOptional

Tracking point incident.

real_datestringOptional

Date confirm. Format: YYYY-MM-DD.

real_timestringOptional

Time confirm. Format: HH:mm.

planned_datestringRequired

Expected date confirm. Format: YYYY-MM-DD.

planned_timestringRequired

Expected time confirm. Format: HH:mm.

skip_departure_confirmationbooleanOptional

Skip departure confirmation

skip_arrival_confirmationbooleanOptional

Skip arrival confirmation

positionnumberOptional

Position

locationall ofOptional
Responses
200
OK
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
500
Internal Error
application/json
post
POST /galaxy/shipments/{id}/tracking-points HTTP/1.1
Host: api.shiptify.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 337

[
  {
    "code": "STY0001",
    "comment": "text",
    "incident": "text",
    "real_date": "text",
    "real_time": "text",
    "planned_date": "text",
    "planned_time": "text",
    "skip_departure_confirmation": true,
    "skip_arrival_confirmation": true,
    "position": 1,
    "location": {
      "country": "string",
      "city": "string",
      "zipcode": "string",
      "address_1": "string",
      "skip_zipcode_validation": true
    }
  }
]
{
  "createdIds": [
    {
      "id": 1,
      "code": "text"
    }
  ],
  "updatedIds": [
    {
      "id": 1,
      "code": "text"
    }
  ]
}