cURL
curl --request POST \ --url https://api.example.com/api/v1/buckets \ --header 'Authorization: <api-key>' \ --header 'Content-Type: application/json' \ --data ' { "is_public": true, "name": "<string>", "required_scopes": "<string>" } '
{ "bucket_id": "<string>", "created_at": "<string>", "is_public": true, "name": "<string>", "required_scopes": "<string>" }
Creates a new bucket for organizing files
Type "Bearer" followed by a space and JWT token.
Bucket creation request
OK