# Create a theme Endpoint: POST /api/v1/themes Version: 0.0.1 Security: bearerAuth ## Request fields (application/json): - `name` (string, required) - `light` (object) - `light.logo` (string,null) - `light.show_header` (boolean,null) - `light.show_form_name` (boolean,null) - `light.show_updated_fields_count` (boolean,null) - `light.next_button_text` (string,null) - `light.back_button_text` (string,null) - `light.custom_background` (string,null) - `light.custom_foreground` (string,null) - `light.primary_background` (string,null) - `light.primary_foreground` (string,null) - `light.secondary_background` (string,null) - `light.secondary_foreground` (string,null) - `light.progress` (string,null) - `light.border` (string,null) - `light.radius` (string,null) - `dark` (object) ## Response 201 fields (application/json): - `id` (string, required) - `name` (string, required) - `light` (object) - `light.logo` (string,null) - `light.show_header` (boolean,null) - `light.show_form_name` (boolean,null) - `light.show_updated_fields_count` (boolean,null) - `light.next_button_text` (string,null) - `light.back_button_text` (string,null) - `light.custom_background` (string,null) - `light.custom_foreground` (string,null) - `light.primary_background` (string,null) - `light.primary_foreground` (string,null) - `light.secondary_background` (string,null) - `light.secondary_foreground` (string,null) - `light.progress` (string,null) - `light.border` (string,null) - `light.radius` (string,null) - `dark` (object) - `created_at` (string, required) - `updated_at` (string, required) ## Response 400 fields (application/json): - `message` (string, required) ## Response 401 fields (application/json): - `message` (string, required) Enum: "Not authorized"