Apex
...
Input & Output Types
Types.CreateSharePointSiteInput
this will be used in the create sharepoint site docid\ raynk8o2wot30kfodau f function global class createsharepointsiteinput { public string name; public string url; public integer languagecode; public string description; public string templateid; public string designid; global createsharepointsiteinput(string name, string url) { this name = name; this url = url; } } class params/properties name input the display name of the site, reflecting its purpose (e g , marketing team ) url configure and input the web address for accessing the site, typically in the format https //\<organization> sharepoint com/sites/\<site name> languagecode specifies the language of the site using an iso language code (e g , 1033 for english, 1036 for french) if not, input default language shall be organisation's default language description a brief summary explaining the site's purpose or content templateid identifies the template used to create the site, determining its structure and features (e g , sts#0 for a team site) designid a unique identifier for the site's design, referring to a site design or customization for layout, branding, or functionality