/// <summary>
 /// Creates a Scopevisio organisation. Creates a Scopevisio organisation with the given name (if not existing) and the given scoa (standard chart of accounts). &lt;strong&gt;The scoa set up takes some time. Please make sure you set your timeout to at least 5 min.&lt;/strong&gt; Required profiles: &lt;i&gt;Organisation (Bearbeiten)&lt;/i&gt;
 /// </summary>
 /// <exception cref="CompuMaster.Scopevisio.OpenApi.Client.ApiException">Thrown when fails to make API call</exception>
 /// <param name="body"> (optional)</param>
 /// <returns>Task of void</returns>
 public async System.Threading.Tasks.Task CreateOrganisationAsync(OrganisationForm body = default(OrganisationForm))
 {
     await CreateOrganisationAsyncWithHttpInfo(body);
 }
        /// <summary>
        /// Creates a Scopevisio organisation. Creates a Scopevisio organisation with the given name (if not existing) and the given scoa (standard chart of accounts). &lt;strong&gt;The scoa set up takes some time. Please make sure you set your timeout to at least 5 min.&lt;/strong&gt; Required profiles: &lt;i&gt;Organisation (Bearbeiten)&lt;/i&gt;
        /// </summary>
        /// <exception cref="CompuMaster.Scopevisio.OpenApi.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="body"> (optional)</param>
        /// <returns>Task of ApiResponse</returns>
        public async System.Threading.Tasks.Task <ApiResponse <Object> > CreateOrganisationAsyncWithHttpInfo(OrganisationForm body = default(OrganisationForm))
        {
            var    localVarPath         = "/organisation/new";
            var    localVarPathParams   = new Dictionary <String, String>();
            var    localVarQueryParams  = new List <KeyValuePair <String, String> >();
            var    localVarHeaderParams = new Dictionary <String, String>(this.Configuration.DefaultHeader);
            var    localVarFormParams   = new Dictionary <String, String>();
            var    localVarFileParams   = new Dictionary <String, FileParameter>();
            Object localVarPostBody     = null;

            // to determine the Content-Type header
            String[] localVarHttpContentTypes = new String[] {
            };
            String localVarHttpContentType    = this.Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes);

            // to determine the Accept header
            String[] localVarHttpHeaderAccepts = new String[] {
            };
            String localVarHttpHeaderAccept    = this.Configuration.ApiClient.SelectHeaderAccept(localVarHttpHeaderAccepts);

            if (localVarHttpHeaderAccept != null)
            {
                localVarHeaderParams.Add("Accept", localVarHttpHeaderAccept);
            }

            if (body != null && body.GetType() != typeof(byte[]))
            {
                localVarPostBody = this.Configuration.ApiClient.Serialize(body); // http body (model) parameter
            }
            else
            {
                localVarPostBody = body; // byte array
            }

            // authentication (oauth) required
            // oauth required
            if (!String.IsNullOrEmpty(this.Configuration.AccessToken))
            {
                localVarHeaderParams["Authorization"] = "Bearer " + this.Configuration.AccessToken;
            }

            // make the HTTP request
            IRestResponse localVarResponse = (IRestResponse)await this.Configuration.ApiClient.CallApiAsync(localVarPath,
                                                                                                            Method.POST, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams,
                                                                                                            localVarPathParams, localVarHttpContentType);

            int localVarStatusCode = (int)localVarResponse.StatusCode;

            if (ExceptionFactory != null)
            {
                Exception exception = ExceptionFactory("CreateOrganisation", localVarResponse);
                if (exception != null)
                {
                    throw exception;
                }
            }

            return(new ApiResponse <Object>(localVarStatusCode,
                                            localVarResponse.Headers.ToDictionary(x => x.Name, x => string.Join(",", x.Value)),
                                            localVarResponse.Content,
                                            null));
        }
 /// <summary>
 /// Creates a Scopevisio organisation. Creates a Scopevisio organisation with the given name (if not existing) and the given scoa (standard chart of accounts). &lt;strong&gt;The scoa set up takes some time. Please make sure you set your timeout to at least 5 min.&lt;/strong&gt; Required profiles: &lt;i&gt;Organisation (Bearbeiten)&lt;/i&gt;
 /// </summary>
 /// <exception cref="CompuMaster.Scopevisio.OpenApi.Client.ApiException">Thrown when fails to make API call</exception>
 /// <param name="body"> (optional)</param>
 /// <returns></returns>
 public void CreateOrganisation(OrganisationForm body = default(OrganisationForm))
 {
     CreateOrganisationWithHttpInfo(body);
 }