{ "post": { "tags": [ "LienCheck" ], "summary": "Lien Check Request", "description": "This method is to check the amount of the lien on a specific account", "operationId": "lienCheck", "requestBody": { "required": true, "content": { "application/json": { "schema": { "$ref": "../schemas/LienCheckRequest.json" } }, "application/xml": { "schema": { "$ref": "../schemas/LienCheckRequest.json" } }, "application/x-www-form-urlencoded": { "schema": { "$ref": "../schemas/LienCheckRequest.json" } } } }, "responses": { "200": { "description": "Lien check successful", "content": { "application/json": { "schema": { "$ref": "../schemas/LienCheckResponse.json" } }, "application/xml": { "schema": { "$ref": "../schemas/LienCheckResponse.json" } } } }, "400": { "description": "Invalid request" }, "500": { "description": "Internal server error" } }, "security": [ { "api_key": [] } ] } }