{
  "openapi": "3.1.0",
  "info": {
    "title": "Whish Variable Topup",
    "version": "1.1",
    "description": "Direct du and Etisalat airtime top-ups."
  },
  "servers": [
    {
      "url": "https://api.whish.money/itel-service/api",
      "description": "Production"
    },
    {
      "url": "https://api.sandbox.whish.money/itel-service/api",
      "description": "Sandbox"
    }
  ],
  "components": {
    "securitySchemes": {
      "sessionIdAuth": {
        "type": "apiKey",
        "in": "header",
        "name": "sessionId"
      },
      "tokenAuth": {
        "type": "apiKey",
        "in": "header",
        "name": "token"
      },
      "UserAgentAuth": {
        "type": "apiKey",
        "in": "header",
        "name": "User-Agent"
      }
    }
  },
  "security": [
    {
      "sessionIdAuth": [],
      "tokenAuth": [],
      "UserAgentAuth": []
    }
  ],
  "paths": {
    "/account/balance": {
      "get": {
        "summary": "Get balance",
        "responses": {
          "200": {
            "description": "Standard response envelope.",
            "content": {
              "application/json": {
                "example": {
                  "status": true,
                  "code": null,
                  "dialog": null,
                  "data": {
                    "balance": 999890.646
                  }
                }
              }
            }
          }
        }
      }
    },
    "/transfer/airtime": {
      "post": {
        "summary": "Post variable topup",
        "responses": {
          "200": {
            "description": "Standard response envelope.",
            "content": {
              "application/json": {
                "example": {
                  "status": true,
                  "code": null,
                  "dialog": null,
                  "data": null
                }
              }
            }
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "example": {
                "externalId": 1234,
                "id": 40000,
                "countryCode": "971",
                "msisdn": "971522222222",
                "amount": 50.0
              }
            }
          }
        }
      }
    }
  }
}