Skip to content
This repository was archived by the owner on Aug 3, 2025. It is now read-only.

Mission Stage Endpoints

Jason edited this page May 10, 2024 · 9 revisions

MissionStage (GET)

✍️ Input
{
	"stageId": "bob"
}
🤖 Output (data property)
{
    "key": "testHello",
    "stageId": "bob",
    "stageName": "initialize",
    "stageStatus": "NOT_STARTED",
    "vehicleKeys": [
        {
		        "vehicleName": "ERU",
            "target": {
                "latitude": 1.0,
                "longitude": 2.0
            },
            "searchArea": [
                {
                    "latitude": 6.0,
                    "longitude": 5.5
                }
            ],
            "localIP": "1.0.0.0"
        },
        {
		        "vehicleName": "MRA",
            "target": {
                "latitude": 2.5,
                "longitude": 3.9
            },
            "searchArea": [
                {
                    "latitude": 9.0,
                    "longitude": 15.6
                }
            ],
            "localIP": "2.1.1.0"
        }
    ]
}

MissionStage(POST)

✍️ Input
{
    "key": "testHello",
    "stageId": "bob",
    "stageName": "initialize",
    "stageStatus": "NOT_STARTED",
    "vehicleKeys": [
        {
            "target": {
                "latitude": 1.0,
                "longitude": 2.0
            },
            "searchArea": [
                {
                    "latitude": 6.0,
                    "longitude": 5.5
                }
            ],
            "localIP": "1.0.0.0"
        },
        {
            "target": {
                "latitude": 2.5,
                "longitude": 3.9
            },
            "searchArea": [
                {
                    "latitude": 9.0,
                    "longitude": 15.6
                }
            ],
            "localIP": "2.1.1.0"
        }
    ]
}
🤖 Output

Clone this wiki locally