WebSockets are here. Bring real-time functionality to your apps, powered by Reverb →
curl --request GET \
--url https://app.laravel.cloud/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>"
}
]
}
]
}List all available database types with their configuration schemas.
curl --request GET \
--url https://app.laravel.cloud/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>"
}
]
}
]
}The Bearer Token generated on the Cloud UI.
Show child attributes
Show child attributes
Was this page helpful?