Authorization: Bearer ********************{
    "data": {
        "attributes": {
            "name": "Wordpress DB"
        }
    }
}curl --location --request POST 'https://api.servebolt.io/v1/bolts/1234/databases' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "data": {
        "attributes": {
            "name": "Wordpress DB"
        }
    }
}'{
    "data": {
        "id": 1287,
        "type": "databases",
        "attributes": {
            "webhostId": 8988,
            "name": "Wordpress DB",
            "dbHost": "xxx",
            "dbName": "wordpressd",
            "dbPass": "xxx",
            "dbUser": "wordpressd",
            "size": 0,
            "tags": "",
            "environments": []
        },
        "relationships": {
            "bolt": {
                "data": {
                    "type": "bolts",
                    "id": 8988
                }
            },
            "server": {
                "data": {
                    "type": "servers",
                    "id": 35
                }
            }
        }
    }
}