1. Shipments
Flype Order API Gulf
  • UAE API Integration Guide
    • Shipments
      • Shipments Count
        GET
      • All Shipments
        POST
      • Bulk Order
        POST
      • Schedule Pickup
        POST
      • Shipment Details
        GET
      • Shipment Last Status
        GET
      • Cancel Shipment
        GET
      • Get AirwayBill
        GET
    • Locations
      • Get Cities
      • Get All Countries
    • Webhook
      • Shipment Status Updates Webhook
    • Schemas
      • Error
      • ServiceType
      • TrackingStatusName
      • PickupLocation
      • RecipientAddress
  1. Shipments

Shipment Last Status

GET
/api/order/{trackingNumber}/ShipmentLastStatus

ShipmentLastStatus - Get latest shipment status#

Use this endpoint to retrieve only the latest status update for a shipment using its trackingNumber.
The response returns the shipment’s most recent tracking status, including the latest status name, update time, and relevant status details.

When to use this endpoint#

  • To check the current/latest shipment status.
  • To get a lightweight status update without retrieving full shipment details.
  • To quickly confirm whether a shipment is booked, in transit, delivered, delayed, cancelled, or returned.

Summary#

Use ShipmentLastStatus when you only need the most recent tracking update for a shipment.

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Path Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/order//ShipmentLastStatus' \
--header 'Authorization: Bearer <token>'

Responses

🟢200
application/json
Successful response
Body

Examples
{
    "status": "success",
    "data": {
        "trackingNumber": "F78ECYH0BNZ8",
        "status": "delivered",
        "orderDate": "2025-10-30T15:12:34.000Z"
    }
}
🟠401
Previous
Shipment Details
Next
Cancel Shipment
Built with