{
    "openapi": "3.1.0",
    "info": {
        "title": "Lisans API",
        "version": "2.1.0",
        "description": "Müşteri lisans ürünleri ve siparişleri için JSON uç noktaları.",
        "x-shell-helper-url": "https://uptime.seonita.com/api/pre.sh"
    },
    "servers": [
        {
            "url": "https://uptime.seonita.com/api/api/v2.php"
        }
    ],
    "components": {
        "securitySchemes": {
            "ApiKeyAuth": {
                "type": "apiKey",
                "in": "header",
                "name": "X-API-Key"
            }
        }
    },
    "paths": {
        "/api/v2.php?action=status": {
            "get": {
                "summary": "Status"
            }
        },
        "/api/v2.php?action=products": {
            "get": {
                "summary": "Products"
            }
        },
        "/api/v2.php?action=me": {
            "get": {
                "summary": "Current client/app",
                "security": [
                    {
                        "ApiKeyAuth": {}
                    }
                ]
            }
        },
        "/api/v2.php?action=licenses": {
            "get": {
                "summary": "Licenses",
                "security": [
                    {
                        "ApiKeyAuth": {}
                    }
                ]
            }
        },
        "/api/v2.php?action=orders": {
            "get": {
                "summary": "Client orders",
                "security": [
                    {
                        "ApiKeyAuth": {}
                    }
                ]
            }
        },
        "/api/v2.php?action=wallet": {
            "get": {
                "summary": "Client wallet",
                "security": [
                    {
                        "ApiKeyAuth": {}
                    }
                ]
            }
        },
        "/api/v2.php?action=payment_requests": {
            "get": {
                "summary": "Client payment requests",
                "security": [
                    {
                        "ApiKeyAuth": {}
                    }
                ]
            }
        },
        "/api/v2.php?action=create_payment_request": {
            "post": {
                "summary": "Create payment request",
                "security": [
                    {
                        "ApiKeyAuth": {}
                    }
                ]
            }
        },
        "/api/v2.php?action=create_order": {
            "post": {
                "summary": "Create client order",
                "security": [
                    {
                        "ApiKeyAuth": {}
                    }
                ]
            }
        },
        "/api/v2.php?action=register_license": {
            "post": {
                "summary": "Register license",
                "security": [
                    {
                        "ApiKeyAuth": {}
                    }
                ]
            }
        },
        "/api/v2.php?action=renew_license": {
            "post": {
                "summary": "Renew license",
                "security": [
                    {
                        "ApiKeyAuth": {}
                    }
                ]
            }
        },
        "/api/v2.php?action=change_license_ip": {
            "post": {
                "summary": "Change license IP",
                "security": [
                    {
                        "ApiKeyAuth": {}
                    }
                ]
            }
        },
        "/api/v2.php?action=change_litespeed_core": {
            "post": {
                "summary": "Change LiteSpeed core",
                "security": [
                    {
                        "ApiKeyAuth": {}
                    }
                ]
            }
        }
    }
}