Create Database
Creates a new database.
Authentication
Requires X-Glue-Authentication.
Request Body
| Field | Type | Description |
|---|---|---|
| name | string | Database name |
HTTP Request
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}
Response
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}
Comments