Skip to main content
GET
/
public
/
deployment
/
data
/
{deployment_uuid}
cURL
curl --request GET \
  --url https://api.cryosphereinnovation.com/public/deployment/data/{deployment_uuid} \
  --header 'Authorization: Bearer <token>'
[
  {
    "time_stamp": 1714406430,
    "latitude": 84.938352,
    "longitude": -55.574828
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

deployment_uuid
string<uuid>
required

The unique identifier (UUID) of the deployment

Response

List of deployment data

time_stamp
number

The timestamp of the transmission in Universal Coordinated Time (UTC) and UNIX format

Example:

1714406430

latitude
number

Latitiude of the deployment

Example:

84.938352

longitude
number

Longitude of the deployment

Example:

-55.574828