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.
Budi Setiawan
39fe810cba
docs: buat struktur docapi AI-Friendly untuk geonet-console
- README.md, index.md, authentication.md, common-response.md, common-error.md, integration-guide.md
- services/auth/README.md + login.md
- services/service-tokens/README.md + create, show, list, revoke, regenerate, delete, by-service, active, expired
- services/databases/README.md
- services/ldap/README.md
- services/project-search/README.md
Dokumentasi mencakup: business rule, contoh request/response, sequence flow,
audit log, error guide, retry policy, SDK cURL/Python/Laravel, dampak ke GeoNetAgent.
|
4 weeks ago |
| .. |
|
README.md
|
docs: buat struktur docapi AI-Friendly untuk geonet-console
|
4 weeks ago |
Databases Service
Deskripsi
Registry dan monitoring database yang terdaftar di geonet-console (eks. databaselist).
Endpoint
| Method |
Path |
Scope |
Deskripsi |
| GET |
/databases |
databases:read |
List semua database |
| POST |
/databases/{database}/offline |
databases:write |
Tandai database offline |
Authentication
Authorization: Bearer <jwt_atau_api_token_dengan_scope_databases:read>
Contoh Request
# List databases
curl -s https://console.gisportal.id/api/v1/databases \
-H "Authorization: Bearer <token>"
# Tandai offline
curl -s -X POST \
https://console.gisportal.id/api/v1/databases/my-database/offline \
-H "Authorization: Bearer <token>"
Database yang Digunakan
databaselist_app — tabel databases
Changelog
| Tanggal |
Perubahan |
| 2026-06-23 |
README dibuat |