{ "post": { "tags": [ "Disbursement" ], "summary": "Loan Disbursement Request", "description": "This request should be executed as a simultaneous operation where loan provision and collection are executed together in same API call. If one of the operations is failed, the whole transaction should be rolled back.", "operationId": "disbursement", "requestBody": { "required": true, "content": { "application/json": { "schema": { "$ref": "../schemas/DisbursementRequest.json" } }, "application/xml": { "schema": { "$ref": "../schemas/DisbursementRequest.json" } }, "application/x-www-form-urlencoded": { "schema": { "$ref": "../schemas/DisbursementRequest.json" } } } }, "responses": { "200": { "description": "Disbursement request accepted", "content": { "application/json": { "schema": { "$ref": "../schemas/DisbursementResponse.json" } }, "application/xml": { "schema": { "$ref": "../schemas/DisbursementResponse.json" } } } }, "400": { "description": "Invalid request" }, "500": { "description": "Internal server error" } }, "security": [ { "api_key": [] } ] } }