POST v1/company/shipment/share/location-detail

Request Information

URI Parameters

None.

Body Parameters

ShipmentShareDetailsRequestModel
NameDescriptionTypeAdditional information
shipment_share_token

Shipment share token acquired by the API

string

Required

Data type: Text

Max length: 32

Min length: 32

Request Format

application/json, text/json

Sample:
{
  "shipment_share_token": "sample string 1"
}

Response Information

Resource Description

BaseMetaResultModelOfShipmentLocationListResponseModel
NameDescriptionTypeAdditional information
response

ShipmentLocationListResponseModel

None.

meta

Basic meta information for the operation result

MetaModel

None.

Response Format

application/json, text/json

Sample:
{
  "response": {
    "locations": [
      {
        "location_id": 1,
        "location_latitude": "sample string 3",
        "location_longitude": "sample string 4",
        "location_date_time": "2024-04-27T02:33:16.9167185+03:00"
      },
      {
        "location_id": 1,
        "location_latitude": "sample string 3",
        "location_longitude": "sample string 4",
        "location_date_time": "2024-04-27T02:33:16.9167185+03:00"
      }
    ]
  },
  "meta": {
    "status_code": 1,
    "status_message": "sample string 2"
  }
}