--- swagger: "2.0" info: x-ibm-name: ibfttitlefetch title: IBFTTitleFetch version: 1.0.0 description: "" schemes: - https basePath: /ibfttitlefetch consumes: - application/json produces: - application/json securityDefinitions: Oauth: type: oauth2 description: Authorization flow: application scopes: GetToken: "" tokenUrl: https://apigateway.bankalfalah.com/bankalfalah/sb/oauthproviderapi/oauth2/token clientSecretHeader: type: apiKey description: "" in: header name: X-IBM-Client-Secret clientIdHeader: type: apiKey in: header name: X-IBM-Client-Id security: - clientIdHeader: [] Oauth: - GetToken clientSecretHeader: [] x-ibm-configuration: testable: true enforced: true phase: realized paths: /v1: post: responses: 200: description: 200 OK parameters: - name: RequestBody required: true in: body schema: $ref: '#/definitions/RequestData' definitions: RequestData: description: "" type: object properties: dateTime: type: string amount: type: string rrn: type: string fromAccountNumber: type: string toAccountNumber: type: string toBankIMD: type: string beneficiaryBankName: type: string fromBankIMD: type: string example: dateTime: "0503011135" amount: "00000000000" rrn: "825430036147" fromAccountNumber: 09601008079068 toAccountNumber: "10250095007009010" toBankIMD: "627197" beneficiaryBankName: "" fromBankIMD: "627100" tags: [] x-ibm-endpoints: - endpointUrl: https://apigateway.bankalfalah.com/bankalfalah/sb type: - production - development ...