GeoNetAgent, LDAPWeb, server-audit, server-connection
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

808 B

API — Database Registry

Base URL: https://console.gisportal.id/api/v1 Auth: Authorization: Bearer <token> + scope databases:read


GET /databases

List semua database yang terdaftar di registry.

Response 200:

{
    "data": [
        {
            "id": "uuid",
            "name": "GIS_Production",
            "type": "mssql",
            "host": "10.100.1.25",
            "port": 1433,
            "status": "online",
            "last_checked_at": "2026-06-29T09:00:00+07:00"
        }
    ]
}

POST /databases/{database}/offline

Tandai database sebagai offline (scope: databases:write).

Request:

{"reason": "Maintenance scheduled"}

Response 200:

{"status": "offline", "updated_at": "2026-06-29T09:00:00+07:00"}