{
    "_type": "export",
    "__export_format": 4,
    "__export_date": "2026-07-28T14:56:47-03:00",
    "__export_source": "lrv_cloud_manager",
    "resources": [
        {
            "_type": "workspace",
            "_id": "wrk_lrv_api_v1",
            "name": "LRV Cloud Manager API v1",
            "description": "API Pública do LRV Cloud Manager"
        },
        {
            "_type": "environment",
            "_id": "env_production",
            "parentId": "wrk_lrv_api_v1",
            "name": "Production",
            "data": {
                "base_url": "https://seudominio.com",
                "api_key": "lrv_live_sua_chave"
            }
        },
        {
            "_type": "environment",
            "_id": "env_sandbox",
            "parentId": "wrk_lrv_api_v1",
            "name": "Sandbox",
            "data": {
                "base_url": "https://seudominio.com",
                "api_key": "lrv_test_sua_chave"
            }
        },
        {
            "_type": "request_group",
            "_id": "fld_authentication",
            "parentId": "wrk_lrv_api_v1",
            "name": "Authentication"
        },
        {
            "_type": "request_group",
            "_id": "fld_api_keys",
            "parentId": "wrk_lrv_api_v1",
            "name": "API Keys"
        },
        {
            "_type": "request_group",
            "_id": "fld_hosting",
            "parentId": "wrk_lrv_api_v1",
            "name": "Hosting"
        },
        {
            "_type": "request_group",
            "_id": "fld_tickets",
            "parentId": "wrk_lrv_api_v1",
            "name": "Tickets"
        },
        {
            "_type": "request_group",
            "_id": "fld_subscriptions",
            "parentId": "wrk_lrv_api_v1",
            "name": "Subscriptions"
        },
        {
            "_type": "request_group",
            "_id": "fld_domains",
            "parentId": "wrk_lrv_api_v1",
            "name": "Domains"
        },
        {
            "_type": "request_group",
            "_id": "fld_databases",
            "parentId": "wrk_lrv_api_v1",
            "name": "Databases"
        },
        {
            "_type": "request_group",
            "_id": "fld_backups",
            "parentId": "wrk_lrv_api_v1",
            "name": "Backups"
        },
        {
            "_type": "request_group",
            "_id": "fld_applications",
            "parentId": "wrk_lrv_api_v1",
            "name": "Applications"
        },
        {
            "_type": "request_group",
            "_id": "fld_emails",
            "parentId": "wrk_lrv_api_v1",
            "name": "Emails"
        },
        {
            "_type": "request_group",
            "_id": "fld_webhooks",
            "parentId": "wrk_lrv_api_v1",
            "name": "Webhooks"
        },
        {
            "_type": "request_group",
            "_id": "fld_status",
            "parentId": "wrk_lrv_api_v1",
            "name": "Status"
        },
        {
            "_type": "request_group",
            "_id": "fld_logs",
            "parentId": "wrk_lrv_api_v1",
            "name": "Logs"
        },
        {
            "_type": "request_group",
            "_id": "fld_changelog",
            "parentId": "wrk_lrv_api_v1",
            "name": "Changelog"
        },
        {
            "_type": "request",
            "_id": "req_1",
            "parentId": "fld_authentication",
            "name": "Issue Tokens",
            "method": "POST",
            "url": "{{ _.base_url }}/api/v1/auth/token",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ],
            "body": {
                "mimeType": "application/json",
                "text": "{\"api_key\": \"lrv_live_your_key\"}"
            }
        },
        {
            "_type": "request",
            "_id": "req_2",
            "parentId": "fld_authentication",
            "name": "Refresh Token",
            "method": "POST",
            "url": "{{ _.base_url }}/api/v1/auth/refresh",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ],
            "body": {
                "mimeType": "application/json",
                "text": "{\"refresh_token\": \"your_refresh_token\"}"
            }
        },
        {
            "_type": "request",
            "_id": "req_3",
            "parentId": "fld_authentication",
            "name": "Revoke Tokens",
            "method": "POST",
            "url": "{{ _.base_url }}/api/v1/auth/revoke",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ]
        },
        {
            "_type": "request",
            "_id": "req_4",
            "parentId": "fld_api_keys",
            "name": "List Keys",
            "method": "GET",
            "url": "{{ _.base_url }}/api/v1/keys",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ]
        },
        {
            "_type": "request",
            "_id": "req_5",
            "parentId": "fld_api_keys",
            "name": "Create Key",
            "method": "POST",
            "url": "{{ _.base_url }}/api/v1/keys",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ],
            "body": {
                "mimeType": "application/json",
                "text": "{\"name\": \"My App\", \"environment\": \"production\", \"scopes\": [\"hosting.read\", \"tickets.read\"]}"
            }
        },
        {
            "_type": "request",
            "_id": "req_6",
            "parentId": "fld_api_keys",
            "name": "Revoke Key",
            "method": "POST",
            "url": "{{ _.base_url }}/api/v1/keys/revoke",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ]
        },
        {
            "_type": "request",
            "_id": "req_7",
            "parentId": "fld_api_keys",
            "name": "Rotate Key",
            "method": "POST",
            "url": "{{ _.base_url }}/api/v1/keys/rotate",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ]
        },
        {
            "_type": "request",
            "_id": "req_8",
            "parentId": "fld_hosting",
            "name": "List VPS",
            "method": "GET",
            "url": "{{ _.base_url }}/api/v1/hosting",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ]
        },
        {
            "_type": "request",
            "_id": "req_9",
            "parentId": "fld_hosting",
            "name": "VPS Details",
            "method": "GET",
            "url": "{{ _.base_url }}/api/v1/hosting/show",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ]
        },
        {
            "_type": "request",
            "_id": "req_10",
            "parentId": "fld_hosting",
            "name": "Restart VPS",
            "method": "POST",
            "url": "{{ _.base_url }}/api/v1/hosting/restart",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ]
        },
        {
            "_type": "request",
            "_id": "req_11",
            "parentId": "fld_hosting",
            "name": "VPS Metrics",
            "method": "GET",
            "url": "{{ _.base_url }}/api/v1/hosting/metrics",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ]
        },
        {
            "_type": "request",
            "_id": "req_12",
            "parentId": "fld_tickets",
            "name": "List Tickets",
            "method": "GET",
            "url": "{{ _.base_url }}/api/v1/tickets",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ]
        },
        {
            "_type": "request",
            "_id": "req_13",
            "parentId": "fld_tickets",
            "name": "Ticket Details",
            "method": "GET",
            "url": "{{ _.base_url }}/api/v1/tickets/show",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ]
        },
        {
            "_type": "request",
            "_id": "req_14",
            "parentId": "fld_tickets",
            "name": "Create Ticket",
            "method": "POST",
            "url": "{{ _.base_url }}/api/v1/tickets",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ],
            "body": {
                "mimeType": "application/json",
                "text": "{\"subject\": \"Server issue\", \"message\": \"Details...\", \"priority\": \"high\", \"department\": \"suporte\"}"
            }
        },
        {
            "_type": "request",
            "_id": "req_15",
            "parentId": "fld_tickets",
            "name": "Reply to Ticket",
            "method": "POST",
            "url": "{{ _.base_url }}/api/v1/tickets/reply",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ],
            "body": {
                "mimeType": "application/json",
                "text": "{\"ticket_id\": 1, \"message\": \"Additional info...\"}"
            }
        },
        {
            "_type": "request",
            "_id": "req_16",
            "parentId": "fld_tickets",
            "name": "Close Ticket",
            "method": "POST",
            "url": "{{ _.base_url }}/api/v1/tickets/close",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ]
        },
        {
            "_type": "request",
            "_id": "req_17",
            "parentId": "fld_subscriptions",
            "name": "List Subscriptions",
            "method": "GET",
            "url": "{{ _.base_url }}/api/v1/subscriptions",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ]
        },
        {
            "_type": "request",
            "_id": "req_18",
            "parentId": "fld_subscriptions",
            "name": "Subscription Details",
            "method": "GET",
            "url": "{{ _.base_url }}/api/v1/subscriptions/show",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ]
        },
        {
            "_type": "request",
            "_id": "req_19",
            "parentId": "fld_subscriptions",
            "name": "Subscription Invoices",
            "method": "GET",
            "url": "{{ _.base_url }}/api/v1/subscriptions/invoices",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ]
        },
        {
            "_type": "request",
            "_id": "req_20",
            "parentId": "fld_domains",
            "name": "List Domains",
            "method": "GET",
            "url": "{{ _.base_url }}/api/v1/domains",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ]
        },
        {
            "_type": "request",
            "_id": "req_21",
            "parentId": "fld_domains",
            "name": "Domain Details",
            "method": "GET",
            "url": "{{ _.base_url }}/api/v1/domains/show",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ]
        },
        {
            "_type": "request",
            "_id": "req_22",
            "parentId": "fld_domains",
            "name": "Add Domain",
            "method": "POST",
            "url": "{{ _.base_url }}/api/v1/domains",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ],
            "body": {
                "mimeType": "application/json",
                "text": "{\"domain\": \"example.com\", \"vps_id\": 1, \"type\": \"addon\"}"
            }
        },
        {
            "_type": "request",
            "_id": "req_23",
            "parentId": "fld_domains",
            "name": "Remove Domain",
            "method": "POST",
            "url": "{{ _.base_url }}/api/v1/domains/remove",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ]
        },
        {
            "_type": "request",
            "_id": "req_24",
            "parentId": "fld_databases",
            "name": "List Databases",
            "method": "GET",
            "url": "{{ _.base_url }}/api/v1/databases",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ]
        },
        {
            "_type": "request",
            "_id": "req_25",
            "parentId": "fld_databases",
            "name": "Create Database",
            "method": "POST",
            "url": "{{ _.base_url }}/api/v1/databases",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ],
            "body": {
                "mimeType": "application/json",
                "text": "{\"vps_id\": 1, \"db_name\": \"myapp_db\", \"db_type\": \"mysql\"}"
            }
        },
        {
            "_type": "request",
            "_id": "req_26",
            "parentId": "fld_databases",
            "name": "Remove Database",
            "method": "POST",
            "url": "{{ _.base_url }}/api/v1/databases/remove",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ]
        },
        {
            "_type": "request",
            "_id": "req_27",
            "parentId": "fld_backups",
            "name": "List Backups",
            "method": "GET",
            "url": "{{ _.base_url }}/api/v1/backups",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ]
        },
        {
            "_type": "request",
            "_id": "req_28",
            "parentId": "fld_backups",
            "name": "Create Backup",
            "method": "POST",
            "url": "{{ _.base_url }}/api/v1/backups",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ],
            "body": {
                "mimeType": "application/json",
                "text": "{\"vps_id\": 1}"
            }
        },
        {
            "_type": "request",
            "_id": "req_29",
            "parentId": "fld_backups",
            "name": "Restore Backup",
            "method": "POST",
            "url": "{{ _.base_url }}/api/v1/backups/restore",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ],
            "body": {
                "mimeType": "application/json",
                "text": "{\"backup_id\": 1}"
            }
        },
        {
            "_type": "request",
            "_id": "req_30",
            "parentId": "fld_applications",
            "name": "List Applications",
            "method": "GET",
            "url": "{{ _.base_url }}/api/v1/applications",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ]
        },
        {
            "_type": "request",
            "_id": "req_31",
            "parentId": "fld_applications",
            "name": "Application Catalog",
            "method": "GET",
            "url": "{{ _.base_url }}/api/v1/applications/catalog",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ]
        },
        {
            "_type": "request",
            "_id": "req_32",
            "parentId": "fld_applications",
            "name": "Install Application",
            "method": "POST",
            "url": "{{ _.base_url }}/api/v1/applications/install",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ],
            "body": {
                "mimeType": "application/json",
                "text": "{\"template_id\": 1, \"vps_id\": 1, \"domain\": \"app.example.com\"}"
            }
        },
        {
            "_type": "request",
            "_id": "req_33",
            "parentId": "fld_applications",
            "name": "Application Status",
            "method": "GET",
            "url": "{{ _.base_url }}/api/v1/applications/status",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ]
        },
        {
            "_type": "request",
            "_id": "req_34",
            "parentId": "fld_emails",
            "name": "List Emails",
            "method": "GET",
            "url": "{{ _.base_url }}/api/v1/emails",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ]
        },
        {
            "_type": "request",
            "_id": "req_35",
            "parentId": "fld_emails",
            "name": "Create Email",
            "method": "POST",
            "url": "{{ _.base_url }}/api/v1/emails",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ],
            "body": {
                "mimeType": "application/json",
                "text": "{\"email_address\": \"user@example.com\", \"password\": \"SecurePass123!\", \"quota_mb\": 1024}"
            }
        },
        {
            "_type": "request",
            "_id": "req_36",
            "parentId": "fld_emails",
            "name": "Remove Email",
            "method": "POST",
            "url": "{{ _.base_url }}/api/v1/emails/remove",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ]
        },
        {
            "_type": "request",
            "_id": "req_37",
            "parentId": "fld_webhooks",
            "name": "List Webhooks",
            "method": "GET",
            "url": "{{ _.base_url }}/api/v1/webhooks",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ]
        },
        {
            "_type": "request",
            "_id": "req_38",
            "parentId": "fld_webhooks",
            "name": "Available Events",
            "method": "GET",
            "url": "{{ _.base_url }}/api/v1/webhooks/events",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ]
        },
        {
            "_type": "request",
            "_id": "req_39",
            "parentId": "fld_webhooks",
            "name": "Create Webhook",
            "method": "POST",
            "url": "{{ _.base_url }}/api/v1/webhooks",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ],
            "body": {
                "mimeType": "application/json",
                "text": "{\"url\": \"https://your-server.com/webhook\", \"events\": [\"ticket.created\", \"payment.received\"]}"
            }
        },
        {
            "_type": "request",
            "_id": "req_40",
            "parentId": "fld_webhooks",
            "name": "Delivery History",
            "method": "GET",
            "url": "{{ _.base_url }}/api/v1/webhooks/deliveries",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ]
        },
        {
            "_type": "request",
            "_id": "req_41",
            "parentId": "fld_webhooks",
            "name": "Resend Delivery",
            "method": "POST",
            "url": "{{ _.base_url }}/api/v1/webhooks/resend",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ]
        },
        {
            "_type": "request",
            "_id": "req_42",
            "parentId": "fld_status",
            "name": "API Status",
            "method": "GET",
            "url": "{{ _.base_url }}/api/v1/status",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ]
        },
        {
            "_type": "request",
            "_id": "req_43",
            "parentId": "fld_status",
            "name": "Incidents",
            "method": "GET",
            "url": "{{ _.base_url }}/api/v1/status/incidents",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ]
        },
        {
            "_type": "request",
            "_id": "req_44",
            "parentId": "fld_logs",
            "name": "Request Logs",
            "method": "GET",
            "url": "{{ _.base_url }}/api/v1/logs",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ]
        },
        {
            "_type": "request",
            "_id": "req_45",
            "parentId": "fld_changelog",
            "name": "API Changelog",
            "method": "GET",
            "url": "{{ _.base_url }}/api/v1/changelog",
            "headers": [
                {
                    "name": "X-API-Key",
                    "value": "{{ _.api_key }}"
                },
                {
                    "name": "Content-Type",
                    "value": "application/json"
                }
            ]
        }
    ]
}