--- swagger: "2.0" info: x-ibm-name: inter-bank-fund-transfers title: Inter Bank Fund Transfers version: 1.0.0 description: "" schemes: - https basePath: /inter-bank-fund-transfers consumes: - application/json produces: - application/json securityDefinitions: OAuth: type: oauth2 description: OAuth Authentication flow: application scopes: GetToken: "" tokenUrl: https://apigateway.bankalfalah.com/bankalfalah/sb/oauthproviderapi/oauth2/token clientIdHeader: type: apiKey in: header name: X-IBM-Client-Id clientSecretHeader: type: apiKey in: header name: X-IBM-Client-Secret security: - clientIdHeader: [] OAuth: - GetToken clientSecretHeader: [] x-ibm-configuration: testable: true enforced: true phase: realized paths: /v1: post: responses: 200: description: 200 OK schema: $ref: '#/definitions/ResponseBody' parameters: - name: RequestData required: true in: body schema: $ref: '#/definitions/RequestData' description: RequestData definitions: RequestData: description: "" type: object properties: toBankIMD: type: string toAccountNumber: type: string fromAccountNumber: type: string rrn: type: string dateTime: type: string beneficiaryBankName: type: string senderName: type: string accountTitle: type: string branchName: type: string amount: type: string fromBankIMD: type: string example: toBankIMD: "221166" toAccountNumber: "12345678911112" fromAccountNumber: 00051005398056 rrn: "310899100722" dateTime: 0901164101 beneficiaryBankName: '1LINK BANK LIMITED ' senderName: Sender accountTitle: 'ZEESHAN AHMED ' branchName: 1LINK MAIN BRANCHPRKTOWER amount: "1.00" fromBankIMD: "627100" ResponseBody: description: "" type: object properties: ResponseCode: type: string PAN: type: string TransactionAmount: type: string DateTime: type: string STAN: type: string Date: type: string Time: type: string SettlementDate: type: string RRN: type: string AuthorizationIdentificationResponse: type: string ToBankIMD: type: string AccountNumberTo: type: string ResponseDetail: type: string example: ResponseCode: "00" PAN: "8585654171432000000" TransactionAmount: "000000000100" DateTime: "" STAN: "100722" Date: 0901 Time: "164101" SettlementDate: "1008" RRN: "310899100722" AuthorizationIdentificationResponse: "000000" ToBankIMD: "22116600000" AccountNumberTo: "12345678911112" ResponseDetail: PROCESSED OK tags: [] x-ibm-endpoints: - endpointUrl: https://apigateway.bankalfalah.com/bankalfalah/sb type: - production - development ...