# Create a new account Endpoint: POST /accounts Version: 1.0.0 Security: bearerAuth ## Request fields (application/json): - `name` (string, required) Name of the account Example: "Acme Corporation" - `id` (string) Optional custom account ID (must start with 'scd-' and be exactly 12 characters total) Example: "scd-dev00001" ## Response 201 fields (application/json): - `id` (string, required) Short account ID with scd- prefix Example: "scd-k2j8n4m1" - `name` (string, required) Example: "Acme Corporation" - `createdAt` (string, required) Example: "2024-01-15T10:30:00Z" - `updatedAt` (string,null, required) Example: "2024-01-15T14:30:00Z" ## Response 400 fields