Last updated 3 months ago
Was this helpful?
Successful Response
const response = await fetch('/check-my-mission/v1/mission_ids', { method: 'GET', headers: { "x-api-key": "APIKeyHeader <apiKey>" }, }); const data = await response.json();
[ { "id": "123e4567-e89b-12d3-a456-426614174000", "name": "text", "description": "text" } ]
const response = await fetch('/check-my-mission/v1/performance_set_ids', { method: 'GET', headers: { "x-api-key": "APIKeyHeader <apiKey>" }, }); const data = await response.json();
const response = await fetch('/check-my-mission/v1/performance_set_ids/{performance_set_id}', { method: 'GET', headers: { "x-api-key": "APIKeyHeader <apiKey>" }, }); const data = await response.json();
[ { "id": "123e4567-e89b-12d3-a456-426614174000", "performanceset_id": "123e4567-e89b-12d3-a456-426614174000", "name": "text", "type": "text", "unit": "text", "value": 1 } ]
const response = await fetch('/check-my-mission/v1/limit_set_ids', { method: 'GET', headers: { "x-api-key": "APIKeyHeader <apiKey>" }, }); const data = await response.json();
[ { "id": "123e4567-e89b-12d3-a456-426614174000", "name": "text", "description": "text", "type": "text" } ]
const response = await fetch('/check-my-mission/v1/limit_set_ids/{limit_set_id}', { method: 'GET', headers: { "x-api-key": "APIKeyHeader <apiKey>" }, }); const data = await response.json();
[ { "id": "123e4567-e89b-12d3-a456-426614174000", "limitset_id": "123e4567-e89b-12d3-a456-426614174000", "limitset_name": "text", "name": "text", "type": "text", "limits": [ { "type": "text", "sequence": 1, "minvalue": 1, "maxvalue": 1 } ], "unit": "text", "altitude": 1, "altitudeunit": "text", "altitudetype": "text" } ]