/api/moons/{moonId}/send
/api/moons/{moonId}/send
Sends ships/cargo from a planet to a moon.
Method
POST
Request Structure
{
"sourcePlanetId": 35572,
"ships": [
{ "shipDefId": 6, "quantity": 5 }
],
"cargo": {
"ore": 1000
}
}
Response Structure
{
"mission": {}
}
Notes
- Payload shape confirmed from addon logistics send logic.
- Safe invalid probe on
s0returned400with validation payload (error,details).