curl --request PATCH \
--url https://cloud.laravel.com/api/buckets/{filesystem} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"visibility": "private",
"allowed_origins": [
"<string>"
],
"cors_settings": {
"allowed_origins": [
"<string>"
],
"allowed_methods": [
"GET"
],
"allowed_headers": [
"<string>"
],
"expose_headers": [
"<string>"
],
"max_age_seconds": 2
}
}
'