# Create enterprise Create a new enterprise. Returns enterprise metadata, created/update timestamps and status. Endpoint: POST /enterprise/{cspId} Version: 1.0.0 Security: BearerAuth ## Path parameters: - `cspId` (string, required) Unique ID for which the enterprise is being created. Example: "CSP0000003" ## Request fields (application/json): - `name` (string, required) Example: "test" - `contact` (string, required) Example: "test" - `number` (string, required) Example: "+13234222322" - `email` (string, required) Example: "test@gmail.com" - `defaultMmsSelection` (boolean) Default MMS selection preference Example: true - `enterpriseFeatures` (array) Array of platform-specific enterprise feature configurations Example: [{"platformType":"Teams","enabled":true,"groupTexting":true,"broadcastTexting":true,"mmsEnabled":false,"teamTexting":true,"scheduleSend":true,"aiSmartReplies":false,"aiChatAssist":false,"cdrAccess":false,"crmIntegration":false,"contactsIntegration":false},{"platformType":"Webex","enabled":true,"groupTexting":true,"broadcastTexting":true,"mmsEnabled":false,"teamTexting":true,"scheduleSend":true,"aiSmartReplies":false,"aiChatAssist":false,"cdrAccess":false,"crmIntegration":false,"contactsIntegration":false}] - `enterpriseFeatures.platformType` (string) Enum: "Teams", "Webex" - `enterpriseFeatures.enabled` (boolean) Indicates if the feature is enabled (isActive) Example: true - `enterpriseFeatures.groupTexting` (boolean) Example: true - `enterpriseFeatures.broadcastTexting` (boolean) Example: true - `enterpriseFeatures.mmsEnabled` (boolean) - `enterpriseFeatures.teamTexting` (boolean) Example: true - `enterpriseFeatures.scheduleSend` (boolean) Example: true - `enterpriseFeatures.aiSmartReplies` (boolean) - `enterpriseFeatures.aiChatAssist` (boolean) - `enterpriseFeatures.cdrAccess` (boolean) - `enterpriseFeatures.crmIntegration` (boolean) - `enterpriseFeatures.contactsIntegration` (boolean) ## 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` (string) Example: "2023-10-29T12:06:17.442Z" - `updateDate` (string) Example: "2023-10-29T12:06:17.443Z" ## Response 400 fields (application/json): - `fields` (string) - `message` (string) ## Response 401 fields ## Response 403 fields