--- swagger: "2.0" info: x-ibm-name: title-fetch title: Title Fetch version: 1.0.0 description: Title Fetch APIs fetch the title of Account Number. schemes: - https basePath: /title-fetch 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: - ClientSecret: [] ClientID: [] x-ibm-configuration: testable: true enforced: true phase: realized paths: /TitleFetch: post: responses: 200: description: 200 OK Successful operation. schema: $ref: '#/definitions/ResponseBody' parameters: - name: RequestData required: true in: body description: '{ "referenceNo": "PC128078165055930", "nbrAccount": "04451008104327", "sendAmount": { "amount": "0", "currency": "PKR" }, "bankCode": "627618", "isIBAN": "N" }' schema: $ref: '#/definitions/RequestBody' tags: [] definitions: RequestBody: description: "" type: object properties: referenceNo: type: string nbrAccount: type: string sendAmount: type: object properties: amount: type: string currency: type: string bankCode: type: string isIBAN: type: string example: referenceNo: PC128078165055930 nbrAccount: PK12ABCD7891234657891234 sendAmount: amount: "0" currency: PKR bankCode: "627618" isIBAN: "Y" ResponseBody: description: "" type: object properties: responseCode: type: string authIdResponse: type: string transactionLogId: type: string accountTitle: type: string toAccountNumber: type: string beneficiaryIBAN: type: string beneficiaryBank: type: string beneficiaryBranch: type: string example: responseCode: "000" authIdResponse: "" transactionLogId: "545346865" accountTitle: 'TEST ACCOUNT ' toAccountNumber: '0445100810**** ' beneficiaryIBAN: ' ' beneficiaryBank: ' ' beneficiaryBranch: ' ' x-ibm-endpoints: - endpointUrl: https://apigateway.bankalfalah.com/bankalfalah/sb type: - production - development ...