--- swagger: "2.0" info: x-ibm-name: fundstransfer title: FundsTransfer version: 1.0.0 description: Fund Transfer APIs provide functions to transfer money between own accounts or to third parties within the bank. schemes: - https basePath: /fundstransfer consumes: - application/json produces: - application/json securityDefinitions: ClientSecret: type: apiKey description: "" in: header name: X-IBM-Client-Secret ClientID: type: apiKey in: header name: X-IBM-Client-Id security: - ClientID: [] ClientSecret: [] x-ibm-configuration: testable: true enforced: true phase: realized paths: /FundsTransfer: post: responses: 200: description: Successful operation. schema: $ref: '#/definitions/ResponseData' parameters: - name: RequestData required: true in: body description: '{ "referenceNo": "PC3851890388343", "partyId": "000801", "fromAccountNo": "AT30008010014", "amount": { "amount": "130", "currency": "PKR" }, "remarks": "370", "toAccountNo": "1587412586", "bankDetails": { "network": "NEFT", "networkCode": "627618" } }' schema: $ref: '#/definitions/RequestData' definitions: RequestData: description: "" type: object properties: referenceNo: type: string fromAccountNo: type: string amount: type: object properties: amount: type: string currency: type: string remarks: type: string toAccountNo: type: string bankDetails: type: object properties: BankName: type: string BankIMD: type: string example: referenceNo: PC3851890388343 fromAccountNo: AT30008010014 amount: amount: "130" currency: PKR remarks: "370" toAccountNo: "1587412586" bankDetails: BankName: NEFT BankIMD: "627618" ResponseData: description: "" type: object properties: responseCode: type: string authIdResponse: type: string transactionLogId: type: string example: responseCode: "000" authIdResponse: "021620" transactionLogId: "545068533" tags: [] x-ibm-endpoints: - endpointUrl: https://apigateway.bankalfalah.com/bankalfalah/sb type: - production - development ...