--- swagger: "2.0" info: x-ibm-name: ift title: IFT version: 1.0.0 description: "" schemes: - https basePath: /ift 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: ChannelId: type: string AccountBankIMD: type: string Amount: type: string SourceAccount: type: string DestinationAccount: type: string ReferenceNumber: type: string example: ChannelId: "1010" AccountBankIMD: "627100" Amount: "50" SourceAccount: 4005PKR159740005 DestinationAccount: 00311007663659 ReferenceNumber: "123451000002" tags: [] x-ibm-endpoints: - endpointUrl: https://apigateway.bankalfalah.com/bankalfalah/sb type: - production - development ...