/// <summary> /// Use create_account to pass user details at user registration. /// </summary> /// <exception cref="ai.thirdwatch.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="JSON">Pass user details after registration. Only `_userID` is required field. But this should contain user info.</param> /// <returns>Task of ApiResponse (EventResponse)</returns> public async System.Threading.Tasks.Task <ApiResponse <EventResponse> > CreateAccountAsyncWithHttpInfo(CreateAccount JSON) { // verify the required parameter 'JSON' is set if (JSON == null) { throw new ApiException(400, "Missing required parameter 'JSON' when calling CreateAccountApi->CreateAccount"); } var localVarPath = "/v1/create_account"; var localVarPathParams = new Dictionary <String, String>(); var localVarQueryParams = new List <KeyValuePair <String, String> >(); var localVarHeaderParams = new Dictionary <String, String>(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[] { "application/json" }; String localVarHttpContentType = Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes); // to determine the Accept header String[] localVarHttpHeaderAccepts = new String[] { "application/json" }; String localVarHttpHeaderAccept = Configuration.ApiClient.SelectHeaderAccept(localVarHttpHeaderAccepts); if (localVarHttpHeaderAccept != null) { localVarHeaderParams.Add("Accept", localVarHttpHeaderAccept); } if (JSON != null && JSON.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(JSON); // http body (model) parameter } else { localVarPostBody = JSON; // byte array } // authentication (api_key) required if (!String.IsNullOrEmpty(Configuration.GetApiKeyWithPrefix("X-THIRDWATCH-API-KEY"))) { localVarHeaderParams["X-THIRDWATCH-API-KEY"] = Configuration.GetApiKeyWithPrefix("X-THIRDWATCH-API-KEY"); } // make the HTTP request IRestResponse localVarResponse = (IRestResponse)await Configuration.ApiClient.CallApiAsync(localVarPath, Method.POST, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams, localVarPathParams, localVarHttpContentType); int localVarStatusCode = (int)localVarResponse.StatusCode; if (ExceptionFactory != null) { Exception exception = ExceptionFactory("CreateAccount", localVarResponse); if (exception != null) { throw exception; } } return(new ApiResponse <EventResponse>(localVarStatusCode, localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()), (EventResponse)Configuration.ApiClient.Deserialize(localVarResponse, typeof(EventResponse)))); }
partial void HandleImplementation(CreateAccount message) { // Implement your handler logic here. Console.WriteLine("AccountManagement received " + message.GetType().Name); }