--- swagger: "2.0" info: x-ibm-name: account-balance title: Account Balance version: 1.0.0 description: This API contains call for sending Account Balance to provided Mobile Number. schemes: - https basePath: /account-balance 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 clientIdHeader: type: apiKey in: header name: X-IBM-Client-Id clientSecretHeader: type: apiKey in: header name: X-IBM-Client-Secret security: - clientIdHeader: [] clientSecretHeader: [] oauth: - GetToken x-ibm-configuration: testable: true enforced: true phase: realized paths: /API/AccountBalance: get: responses: 200: description: 200 OK parameters: - $ref: '#/parameters/MobileNo' post: responses: 200: description: 200 OK parameters: - $ref: '#/parameters/AccountNumber' tags: [] parameters: AccountNumber: name: AccountNumber required: true in: body description: Account Number schema: type: object x-ibm-endpoints: - endpointUrl: https://apigateway.bankalfalah.com/bankalfalah/sb type: - production - development ...