curl --request GET \
--url https://api.app.fleetit.com/v2/transponders/shipments/{ID}/ \
--header 'Authorization: Bearer <token>'{
"id": 1,
"status": "PENDING",
"shipped_at": "2023-06-20T14:28:23.382748Z",
"received_at": "2023-06-25T14:28:23.382748Z",
"transponders": [
{
"id": 1,
"number": "transponder123"
}
],
"fleet": {
"id": 1,
"name": "Fleet Name"
},
"direction": "IN",
"remarks": "Sample remarks",
"courier": "DHL",
"tracking_code": "tracking123",
"shipped_by": {
"id": 1,
"username": "user123"
},
"received_by": {
"id": 2,
"username": "user456"
}
}Get a shipment of transponders
curl --request GET \
--url https://api.app.fleetit.com/v2/transponders/shipments/{ID}/ \
--header 'Authorization: Bearer <token>'{
"id": 1,
"status": "PENDING",
"shipped_at": "2023-06-20T14:28:23.382748Z",
"received_at": "2023-06-25T14:28:23.382748Z",
"transponders": [
{
"id": 1,
"number": "transponder123"
}
],
"fleet": {
"id": 1,
"name": "Fleet Name"
},
"direction": "IN",
"remarks": "Sample remarks",
"courier": "DHL",
"tracking_code": "tracking123",
"shipped_by": {
"id": 1,
"username": "user123"
},
"received_by": {
"id": 2,
"username": "user456"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
"1"
1
Successful response
1
"PENDING"
"2023-06-20T14:28:23.382748Z"
"2023-06-25T14:28:23.382748Z"
Show child attributes
Show child attributes
"IN"
"Sample remarks"
"DHL"
"tracking123"
Show child attributes
Show child attributes
Was this page helpful?