创建数据库
创建一个新数据库。
认证
需要 X-Glue-Authentication。
HTTP 请求
1POST /v1/databases HTTP/1.1
2Host: api.hola.cloud
3X-Glue-Authentication: your-glue-token
4Content-Type: application/json
5
6{
7 "name": "my-database"
8}
响应
1{
2 "id": "c3d4e5f6-a7b8-9012-cdef-123456789012",
3 "name": "my-database",
4 "creation_date": "2025-07-01T14:00:00Z",
5 "owners": ["owner-id"],
6 "api_keys": [],
7 "owners_length": 1
8}
评论