# createFeatureBundle **Type:** GraphQL mutations **Description:** Create a new feature bundle. ## Arguments - input (CreateFeatureBundleInput, Not Null): Input data for creating a feature bundle - autoDeploy (Boolean): Auto Deploy flag to indicate whether the feature bundle should be deployed or not. If true, the feature bundle will be automatically deployed after creation. - description (String): Describe the characteristics of this feature bundle that make it unique. Example: "This feature bundle enables advanced reporting." - featureBundleName (String): Name to uniquely identify the feature bundle. Must contain only ASCII letters, numbers, or _ (underscore) with no whitespace. Maximum length: 64 characters. Example: "MyFeatureBundle" - featureList (FeatureBundleFeatureInput): Optional feature list for the feature bundle. - featureName (String): Name to uniquely identify the feature. Must contain only ASCII letters, numbers, or _ (underscore) with no whitespace. Maximum length: 64 characters. Example: "MyFeature" - quantity (Int): Quantity of the feature (minimum value is 1). Example: 1 - version (String): Version of the feature (for FIXED version format). Maximum length: 64 characters. Example: "1.0" ## Response **Type:** FeatureBundleCreateResponse **Description:** Response for feature bundle creation ### Fields - featureBundle (String): Name of the created feature bundle - message (String): Success or error message