조직의 데이터베이스 목록을 조회합니다. 조직을 만들 때 각 단계(production + development)별 데이터베이스가 하나씩 자동으로 생성됩니다.
/organizations/:orgId/databases조직의 모든 데이터베이스를 반환합니다. `stage`는 `production` 또는 `development`입니다.
{
"databases": [
{
"id": "db_abc123",
"name": "My Database",
"stage": "production",
"createdAt": "2026-03-20T...",
"updatedAt": "2026-03-20T..."
},
{
"id": "db_def456",
"name": "My Database",
"stage": "development",
"createdAt": "2026-03-20T...",
"updatedAt": "2026-03-20T..."
}
]
}