--- swagger: "2.0" info: x-ibm-name: ifttitlefetch title: IFTtitlefetch version: 1.0.0 description: "" schemes: - https basePath: /ifttitlefetch 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: [] clientSecretHeader: [] Oauth: - GetToken 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: ChannelId: type: string AccountBankIMD: type: string Amount: type: string SourceAccount: type: string DestinationAccount: type: string TransactionType: type: string example: ChannelId: "0030" AccountBankIMD: "627100" Amount: "0" SourceAccount: 04821008547668 DestinationAccount: 00311007663659 TransactionType: "1" tags: [] x-ibm-endpoints: - endpointUrl: https://apigateway.bankalfalah.com/bankalfalah/sb type: - production - development ...