{
    "info": {
        "name": "LRV Cloud Manager - Public API v1",
        "_postman_id": "lrv-api-v1-20260728",
        "description": "API Pública do LRV Cloud Manager. Autenticação via X-API-Key ou Bearer Token.",
        "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
    },
    "auth": {
        "type": "apikey",
        "apikey": [
            {
                "key": "key",
                "value": "X-API-Key",
                "type": "string"
            },
            {
                "key": "value",
                "value": "{{api_key}}",
                "type": "string"
            },
            {
                "key": "in",
                "value": "header",
                "type": "string"
            }
        ]
    },
    "variable": [
        {
            "key": "base_url",
            "value": "https://seudominio.com",
            "type": "string"
        },
        {
            "key": "api_key",
            "value": "lrv_live_sua_chave_aqui",
            "type": "string"
        },
        {
            "key": "access_token",
            "value": "",
            "type": "string"
        },
        {
            "key": "environment",
            "value": "production",
            "type": "string"
        }
    ],
    "item": [
        {
            "name": "Authentication",
            "item": [
                {
                    "name": "Issue Tokens",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/auth/token",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "auth",
                                "4": "token"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": "Exchange API Key for access + refresh tokens"
                    }
                },
                {
                    "name": "Refresh Token",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/auth/refresh",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "auth",
                                "4": "refresh"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                },
                {
                    "name": "Revoke Tokens",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/auth/revoke",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "auth",
                                "4": "revoke"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                }
            ]
        },
        {
            "name": "API Keys",
            "item": [
                {
                    "name": "List Keys",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/keys",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "keys"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                },
                {
                    "name": "Create Key",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/keys",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "keys"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                },
                {
                    "name": "Revoke Key",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/keys/revoke?id=1",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "keys",
                                "4": "revoke"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                },
                {
                    "name": "Rotate Key",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/keys/rotate?id=1",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "keys",
                                "4": "rotate"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                }
            ]
        },
        {
            "name": "Hosting",
            "item": [
                {
                    "name": "List VPS",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/hosting",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "hosting"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                },
                {
                    "name": "VPS Details",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/hosting/show?id=1",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "hosting",
                                "4": "show"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                },
                {
                    "name": "Restart VPS",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/hosting/restart?id=1",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "hosting",
                                "4": "restart"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                },
                {
                    "name": "VPS Metrics",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/hosting/metrics?id=1&hours=24",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "hosting",
                                "4": "metrics"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                }
            ]
        },
        {
            "name": "Tickets",
            "item": [
                {
                    "name": "List Tickets",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/tickets",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "tickets"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                },
                {
                    "name": "Ticket Details",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/tickets/show?id=1",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "tickets",
                                "4": "show"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                },
                {
                    "name": "Create Ticket",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/tickets",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "tickets"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                },
                {
                    "name": "Reply to Ticket",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/tickets/reply",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "tickets",
                                "4": "reply"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                },
                {
                    "name": "Close Ticket",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/tickets/close?id=1",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "tickets",
                                "4": "close"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                }
            ]
        },
        {
            "name": "Subscriptions",
            "item": [
                {
                    "name": "List Subscriptions",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/subscriptions",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "subscriptions"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                },
                {
                    "name": "Subscription Details",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/subscriptions/show?id=1",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "subscriptions",
                                "4": "show"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                },
                {
                    "name": "Subscription Invoices",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/subscriptions/invoices?subscription_id=1",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "subscriptions",
                                "4": "invoices"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                }
            ]
        },
        {
            "name": "Domains",
            "item": [
                {
                    "name": "List Domains",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/domains",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "domains"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                },
                {
                    "name": "Domain Details",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/domains/show?id=1",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "domains",
                                "4": "show"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                },
                {
                    "name": "Add Domain",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/domains",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "domains"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                },
                {
                    "name": "Remove Domain",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/domains/remove?id=1",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "domains",
                                "4": "remove"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                }
            ]
        },
        {
            "name": "Databases",
            "item": [
                {
                    "name": "List Databases",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/databases",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "databases"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                },
                {
                    "name": "Create Database",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/databases",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "databases"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                },
                {
                    "name": "Remove Database",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/databases/remove?id=1",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "databases",
                                "4": "remove"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                }
            ]
        },
        {
            "name": "Backups",
            "item": [
                {
                    "name": "List Backups",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/backups",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "backups"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                },
                {
                    "name": "Create Backup",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/backups",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "backups"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                },
                {
                    "name": "Restore Backup",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/backups/restore",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "backups",
                                "4": "restore"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                }
            ]
        },
        {
            "name": "Applications",
            "item": [
                {
                    "name": "List Applications",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/applications",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "applications"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                },
                {
                    "name": "Application Catalog",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/applications/catalog",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "applications",
                                "4": "catalog"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                },
                {
                    "name": "Install Application",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/applications/install",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "applications",
                                "4": "install"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                },
                {
                    "name": "Application Status",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/applications/status?id=1",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "applications",
                                "4": "status"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                }
            ]
        },
        {
            "name": "Emails",
            "item": [
                {
                    "name": "List Emails",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/emails",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "emails"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                },
                {
                    "name": "Create Email",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/emails",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "emails"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                },
                {
                    "name": "Remove Email",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/emails/remove?id=1",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "emails",
                                "4": "remove"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                }
            ]
        },
        {
            "name": "Webhooks",
            "item": [
                {
                    "name": "List Webhooks",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/webhooks",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "webhooks"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                },
                {
                    "name": "Available Events",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/webhooks/events",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "webhooks",
                                "4": "events"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                },
                {
                    "name": "Create Webhook",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/webhooks",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "webhooks"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                },
                {
                    "name": "Delivery History",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/webhooks/deliveries?webhook_id=1",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "webhooks",
                                "4": "deliveries"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                },
                {
                    "name": "Resend Delivery",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/webhooks/resend?delivery_id=1",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "webhooks",
                                "4": "resend"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                }
            ]
        },
        {
            "name": "Status",
            "item": [
                {
                    "name": "API Status",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/status",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "status"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                },
                {
                    "name": "Incidents",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/status/incidents",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "status",
                                "4": "incidents"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                }
            ]
        },
        {
            "name": "Logs",
            "item": [
                {
                    "name": "Request Logs",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/logs",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "logs"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                }
            ]
        },
        {
            "name": "Changelog",
            "item": [
                {
                    "name": "API Changelog",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "X-API-Key",
                                "value": "{{api_key}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/api/v1/changelog",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": {
                                "1": "api",
                                "2": "v1",
                                "3": "changelog"
                            },
                            "query": []
                        },
                        "body": null,
                        "description": ""
                    }
                }
            ]
        }
    ]
}