fix: contract deliver endpoint

This commit is contained in:
Joel Brubaker 2022-10-06 09:03:53 -07:00
parent 182986fa1e
commit 97853a9dbe

View File

@ -589,16 +589,16 @@
} }
] ]
}, },
"/my/ships/{shipSymbol}/deliver": { "/my/contracts/{contractId}/deliver": {
"parameters": [ "parameters": [
{ {
"schema": { "schema": {
"type": "string" "type": "string"
}, },
"name": "shipSymbol", "name": "contractId",
"in": "path", "in": "path",
"required": true, "required": true,
"description": "The symbol of the ship" "description": "The ID of the contract"
} }
], ],
"post": { "post": {