# core_launcher_create POST: Launch a new edX platform Params: user_id: The ID of the requesting user (required) key: The Deep LMS subdomain (required) name: The edX platform name ("optional") org: The edX organization ("optional") lms_url: LMS URL ("optional") cms_url: CMS URL ("optional") portal_url: Portal URL ("optional") Endpoint: POST /api/core/launcher/ Version: 3.59.0-ai-plus Security: PlatformApiKeyAuthentication ## Request fields (application/json): - `user_id` (integer, required) - `key` (string, required) - `name` (string) - `org` (string) - `lms_url` (string) - `cms_url` (string) - `portal_url` (string) ## Response 200 fields (application/json): - `key` (string, required) The platform key - `name` (string,null) The name of the platform - `org` (string,null) The associated edX org code - `lms_url` (string,null) The LMS URL for the platform - `cms_url` (string,null) The CMS URL for the platform - `portal_url` (string,null) The portal URL for the platform - `status` (integer) * -2 - FAILED * -1 - TERMINATED * 0 - PENDING * 1 - BUILDING * 2 - RUNNING * 3 - PAUSED * 4 - STOPPING * 5 - STOPPED * 6 - REPAIR Enum: -2, -1, 0, 1, 2, 3, 4, 5, 6 - `active` (boolean)