Asset Management Endpoints

Get Mission Ids

GET/check-my-mission/v1/mission_ids
Authorization
Response

Successful Response

Body
id*Id
name*Name
description*Description
Request
const response = await fetch('/check-my-mission/v1/mission_ids', {
    method: 'GET',
    headers: {
      "x-api-key": "APIKeyHeader <apiKey>"
    },
});
const data = await response.json();
Response
[
  {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "name": "text",
    "description": "text"
  }
]

Get Performance Set Ids

GET/check-my-flight/v1/performance_set_ids
Authorization
Response

Successful Response

Body
id*Id
name*Name
descriptionDescription
Request
const response = await fetch('/check-my-flight/v1/performance_set_ids', {
    method: 'GET',
    headers: {
      "x-api-key": "APIKeyHeader <apiKey>"
    },
});
const data = await response.json();
Response
[
  {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "name": "text",
    "description": "text"
  }
]

Last updated

Was this helpful?