update: add view ship cargo endpoint

This commit is contained in:
SpaceAdmiral 2023-04-17 13:16:27 -07:00
parent 7e282138ee
commit 57845959c6

View File

@ -1181,6 +1181,53 @@
}
]
},
"/my/ships/{shipSymbol}/cargo": {
"parameters": [
{
"description": "The symbol of the ship",
"in": "path",
"name": "shipSymbol",
"required": true,
"schema": {
"type": "string"
}
}
],
"get": {
"description": "Retrieve the cargo of your ship.",
"operationId": "get-my-ship-cargo",
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"description": "",
"properties": {
"data": {
"$ref": "../models/ShipCargo.json"
}
},
"required": [
"data"
],
"type": "object"
}
}
},
"description": "OK"
}
},
"security": [
{
"AgentToken": []
}
],
"summary": "Get Ship Cargo",
"tags": [
"fleet"
]
}
},
"/my/ships/{shipSymbol}/orbit": {
"parameters": [
{