/// <summary> /// Updates an existing user with the specified ID /// </summary> /// <param name="id">ID of user to update</param> /// <param name="data"></param> /// <returns>Task of UserResponseSingle</returns> public async System.Threading.Tasks.Task<UserResponseSingle> EditUserAsync (long? id, User data) { ApiResponse<UserResponseSingle> response = await EditUserAsyncWithHttpInfo(id, data); return response.Data; }
/// <summary> /// Updates an existing user with the specified ID /// </summary> /// <param name="id">ID of user to update</param> /// <param name="data"></param> /// <returns>Task of ApiResponse (UserResponseSingle)</returns> public async System.Threading.Tasks.Task<ApiResponse<UserResponseSingle>> EditUserAsyncWithHttpInfo (long? id, User data) { // verify the required parameter 'id' is set if (id == null) throw new ApiException(400, "Missing required parameter 'id' when calling EditUser"); // verify the required parameter 'data' is set if (data == null) throw new ApiException(400, "Missing required parameter 'data' when calling EditUser"); var path_ = "/users/{id}"; var pathParams = new Dictionary<String, String>(); var queryParams = new Dictionary<String, String>(); var headerParams = new Dictionary<String, String>(); var formParams = new Dictionary<String, String>(); var fileParams = new Dictionary<String, FileParameter>(); Object postBody = null; // to determine the Content-Type header String[] httpContentTypes = new String[] { "application/json" }; String httpContentType = Configuration.ApiClient.SelectHeaderContentType(httpContentTypes); // to determine the Accept header String[] httpHeaderAccepts = new String[] { "application/json" }; String httpHeaderAccept = Configuration.ApiClient.SelectHeaderAccept(httpHeaderAccepts); if (httpHeaderAccept != null) headerParams.Add("Accept", httpHeaderAccept); // set "format" to json by default // e.g. /pet/{petId}.{format} becomes /pet/{petId}.json pathParams.Add("format", "json"); if (id != null) pathParams.Add("id", Configuration.ApiClient.ParameterToString(id)); // path parameter postBody = Configuration.ApiClient.Serialize(data); // http body (model) parameter // authentication (jwt) required var apiKeyValue = Configuration.GetApiKeyWithPrefix("Authorization"); if (!String.IsNullOrEmpty(apiKeyValue)) { headerParams["Authorization"] = apiKeyValue; } // make the HTTP request IRestResponse response = (IRestResponse) await Configuration.ApiClient.CallApiAsync(path_, Method.PATCH, queryParams, postBody, headerParams, formParams, fileParams, pathParams, httpContentType); int statusCode = (int) response.StatusCode; if (statusCode >= 400) throw new ApiException (statusCode, "Error calling EditUser: "******"Error calling EditUser: " + response.ErrorMessage, response.ErrorMessage); return new ApiResponse<UserResponseSingle>(statusCode, response.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()), (UserResponseSingle) Configuration.ApiClient.Deserialize(response, typeof(UserResponseSingle))); }
/// <summary> /// Creates a new user /// </summary> /// <param name="data"></param> /// <returns>Task of UserResponseSingle</returns> public async System.Threading.Tasks.Task<UserResponseSingle> AddUserAsync (User data) { ApiResponse<UserResponseSingle> response = await AddUserAsyncWithHttpInfo(data); return response.Data; }
/// <summary> /// Updates an existing user with the specified ID /// </summary> /// <param name="id">ID of user to update</param> /// <param name="data"></param> /// <returns>UserResponseSingle</returns> public UserResponseSingle EditUser (long? id, User data) { ApiResponse<UserResponseSingle> response = EditUserWithHttpInfo(id, data); return response.Data; }
/// <summary> /// Creates a new user /// </summary> /// <param name="data"></param> /// <returns>UserResponseSingle</returns> public UserResponseSingle AddUser (User data) { ApiResponse<UserResponseSingle> response = AddUserWithHttpInfo(data); return response.Data; }
/// <summary> /// Creates a new user /// </summary> /// <param name="data"></param> /// <returns>ApiResponse of UserResponseSingle</returns> public ApiResponse< UserResponseSingle > AddUserWithHttpInfo (User data) { // verify the required parameter 'data' is set if (data == null) throw new ApiException(400, "Missing required parameter 'data' when calling SquiggleApi->AddUser"); var path_ = "/users"; var pathParams = new Dictionary<String, String>(); var queryParams = new Dictionary<String, String>(); var headerParams = new Dictionary<String, String>(Configuration.DefaultHeader); var formParams = new Dictionary<String, String>(); var fileParams = new Dictionary<String, FileParameter>(); Object postBody = null; // to determine the Content-Type header String[] httpContentTypes = new String[] { "application/json" }; String httpContentType = Configuration.ApiClient.SelectHeaderContentType(httpContentTypes); // to determine the Accept header String[] httpHeaderAccepts = new String[] { "application/json" }; String httpHeaderAccept = Configuration.ApiClient.SelectHeaderAccept(httpHeaderAccepts); if (httpHeaderAccept != null) headerParams.Add("Accept", httpHeaderAccept); // set "format" to json by default // e.g. /pet/{petId}.{format} becomes /pet/{petId}.json pathParams.Add("format", "json"); if (data.GetType() != typeof(byte[])) { postBody = Configuration.ApiClient.Serialize(data); // http body (model) parameter } else { postBody = data; // byte array } // authentication (jwt) required var apiKeyValue = Configuration.GetApiKeyWithPrefix("Authorization"); if (!String.IsNullOrEmpty(apiKeyValue)) { headerParams["Authorization"] = apiKeyValue; } // make the HTTP request IRestResponse response = (IRestResponse) Configuration.ApiClient.CallApi(path_, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, pathParams, httpContentType); int statusCode = (int) response.StatusCode; if (statusCode >= 400) throw new ApiException (statusCode, "Error calling AddUser: "******"Error calling AddUser: " + response.ErrorMessage, response.ErrorMessage); return new ApiResponse<UserResponseSingle>(statusCode, response.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()), (UserResponseSingle) Configuration.ApiClient.Deserialize(response, typeof(UserResponseSingle))); }
/// <summary> /// Updates an existing user with the specified ID /// </summary> /// <exception cref="Squiggle.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="id">ID of user to update</param> /// <param name="data"></param> /// <returns>ApiResponse of User</returns> public ApiResponse<User> EditUserWithHttpInfo(long? id, User data) { // verify the required parameter 'id' is set if (id == null) throw new ApiException(400, "Missing required parameter 'id' when calling DefaultApi->EditUser"); // verify the required parameter 'data' is set if (data == null) throw new ApiException(400, "Missing required parameter 'data' when calling DefaultApi->EditUser"); var localVarPath = "/users/{id}"; var localVarPathParams = new Dictionary<String, String>(); var localVarQueryParams = new Dictionary<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); // set "format" to json by default // e.g. /pet/{petId}.{format} becomes /pet/{petId}.json localVarPathParams.Add("format", "json"); if (id != null) localVarPathParams.Add("id", Configuration.ApiClient.ParameterToString(id)); // path parameter if (data != null && data.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(data); // http body (model) parameter } else { localVarPostBody = data; // byte array } // authentication (jwt) required if (!String.IsNullOrEmpty(Configuration.GetApiKeyWithPrefix("Authorization"))) { localVarHeaderParams["Authorization"] = Configuration.GetApiKeyWithPrefix("Authorization"); } // make the HTTP request IRestResponse localVarResponse = (IRestResponse) Configuration.ApiClient.CallApi(localVarPath, Method.PATCH, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams, localVarPathParams, localVarHttpContentType); int localVarStatusCode = (int) localVarResponse.StatusCode; if (ExceptionFactory != null) { Exception exception = ExceptionFactory("EditUser", localVarResponse); if (exception != null) throw exception; } return new ApiResponse<User>(localVarStatusCode, localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()), (User) Configuration.ApiClient.Deserialize(localVarResponse, typeof(User))); }
/// <summary> /// Updates an existing user with the specified ID /// </summary> /// <exception cref="Squiggle.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="id">ID of user to update</param> /// <param name="data"></param> /// <returns>User</returns> public User EditUser(long? id, User data) { ApiResponse<User> localVarResponse = EditUserWithHttpInfo(id, data); return localVarResponse.Data; }
/// <summary> /// Creates a new user /// </summary> /// <exception cref="Squiggle.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="data"></param> /// <returns>User</returns> public User AddUser(User data) { ApiResponse<User> localVarResponse = AddUserWithHttpInfo(data); return localVarResponse.Data; }
/// <summary> /// Updates an existing user with the specified ID /// </summary> /// <param name="id">ID of user to update</param> /// <param name="data"></param> /// <returns>UserResponseSingle</returns> public UserResponseSingle EditUser (long? id, User data) { // verify the required parameter 'id' is set if (id == null) throw new ApiException(400, "Missing required parameter 'id' when calling EditUser"); // verify the required parameter 'data' is set if (data == null) throw new ApiException(400, "Missing required parameter 'data' when calling EditUser"); var path = "/users/{id}"; path = path.Replace("{format}", "json"); path = path.Replace("{" + "id" + "}", ApiClient.ParameterToString(id)); var queryParams = new Dictionary<String, String>(); var headerParams = new Dictionary<String, String>(); var formParams = new Dictionary<String, String>(); var fileParams = new Dictionary<String, FileParameter>(); String postBody = null; postBody = ApiClient.Serialize(data); // http body (model) parameter // authentication setting, if any String[] authSettings = new String[] { "jwt" }; // make the HTTP request IRestResponse response = (IRestResponse) ApiClient.CallApi(path, Method.PATCH, queryParams, postBody, headerParams, formParams, fileParams, authSettings); if (((int)response.StatusCode) >= 400) throw new ApiException ((int)response.StatusCode, "Error calling EditUser: "******"Error calling EditUser: " + response.ErrorMessage, response.ErrorMessage); return (UserResponseSingle) ApiClient.Deserialize(response.Content, typeof(UserResponseSingle), response.Headers); }
public void Init() { instance = new User(); }