--- swagger: "2.0" info: x-ibm-name: ivrrest title: IVR_REST version: 1.0.0 description: "" schemes: - https basePath: /ivrrest-getaccount 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 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: RequestData required: true in: body schema: $ref: '#/definitions/RequestData' tags: [] definitions: RequestData: description: "" type: object properties: MobileNumber: type: string example: "{\n\t\"MobileNumber\" : \"923378022264\"\n}" x-ibm-endpoints: - endpointUrl: https://apigateway.bankalfalah.com/bankalfalah/sb type: - production - development ...