# Create a new enterprise for a given CSP and return details Create a new enterprise record under the specified CSP. Returns the created enterprise object. Endpoint: POST /enterprise/{cspId} Version: 1.0.0 Security: BearerAuth ## Path parameters: - `cspId` (string, required) CSP identifier (e.g. CSP001) Example: "CSP001" ## Request fields (application/json): - `name` (string, required) Name of the enterprise Example: "test enterprise2" - `contact` (string, required) Enterprise contact name Example: "Test Contact" - `number` (string, required) Enterprise contact number Example: "+12223334444" - `email` (string, required) Enterprise business admin email Example: "test@email.com" - `defaultMmsSelection` (boolean) Default selection of the mmsEnabled flag when creating NumberMapping. If MMS feature is Strict or Disabled, follow the feature settings. If Partial, can be true or false. Example: true ## Response 201 fields (application/json): - `enterpriseId` (string) Example: "E0000090" - `name` (string) Example: "test enterprise2" - `contact` (string) Example: "Test Contact" - `number` (string) Example: "+12223334444" - `email` (string) Example: "test@email.com" - `deleted` (boolean) - `createdDate` (integer) Example: 1698446777442 - `updateDate` (integer) Example: 1698446777443 - `webexSettings` (object,null) - `numberToMessageAppMaps` (array,null) - `defaultMmsSelection` (boolean) Example: true ## Response 400 fields (application/json): - `error` (string) Example: "Invalid credentials"