List database types
curl --request GET \
--url https://cloud.laravel.com/api/databases/types \
--header 'Authorization: Bearer <token>'{
"data": [
{
"type": "<string>",
"label": "<string>",
"regions": [
"<string>"
],
"config_schema": [
{
"name": "<string>",
"type": "<string>",
"required": true,
"nullable": true,
"description": "<string>",
"min": 123,
"max": 123,
"enum": [
"<string>"
],
"example": "<string>"
}
]
}
]
}Database Clusters
List database types
List all available database types with their configuration schemas.
GET
/
databases
/
types
List database types
curl --request GET \
--url https://cloud.laravel.com/api/databases/types \
--header 'Authorization: Bearer <token>'{
"data": [
{
"type": "<string>",
"label": "<string>",
"regions": [
"<string>"
],
"config_schema": [
{
"name": "<string>",
"type": "<string>",
"required": true,
"nullable": true,
"description": "<string>",
"min": 123,
"max": 123,
"enum": [
"<string>"
],
"example": "<string>"
}
]
}
]
}Was this page helpful?
⌘I

