/// <summary> /// createAuthenticationToken /// </summary> /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="authenticationRequest">authenticationRequest</param> /// <returns>Task of Object</returns> public async System.Threading.Tasks.Task <Object> CreateAuthenticationTokenUsingPOSTAsync(JwtAuthenticationRequest authenticationRequest) { ApiResponse <Object> localVarResponse = await CreateAuthenticationTokenUsingPOSTAsyncWithHttpInfo(authenticationRequest); return(localVarResponse.Data); }
/// <summary> /// createAuthenticationToken /// </summary> /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="authenticationRequest">authenticationRequest</param> /// <returns>Task of ApiResponse (Object)</returns> public async System.Threading.Tasks.Task <ApiResponse <Object> > CreateAuthenticationTokenUsingPOSTAsyncWithHttpInfo(JwtAuthenticationRequest authenticationRequest) { // verify the required parameter 'authenticationRequest' is set if (authenticationRequest == null) { throw new ApiException(400, "Missing required parameter 'authenticationRequest' when calling AuthenticationrestcontrollerApi->CreateAuthenticationTokenUsingPOST"); } var localVarPath = "/auth"; 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[] { "*/*" }; String localVarHttpHeaderAccept = Configuration.ApiClient.SelectHeaderAccept(localVarHttpHeaderAccepts); if (localVarHttpHeaderAccept != null) { localVarHeaderParams.Add("Accept", localVarHttpHeaderAccept); } if (authenticationRequest != null && authenticationRequest.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(authenticationRequest); // http body (model) parameter } else { localVarPostBody = authenticationRequest; // byte array } // 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("CreateAuthenticationTokenUsingPOST", localVarResponse); if (exception != null) { throw exception; } } return(new ApiResponse <Object>(localVarStatusCode, localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()), (Object)Configuration.ApiClient.Deserialize(localVarResponse, typeof(Object)))); }
/// <summary> /// createAuthenticationToken /// </summary> /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="authenticationRequest">authenticationRequest</param> /// <returns>Object</returns> public Object CreateAuthenticationTokenUsingPOST(JwtAuthenticationRequest authenticationRequest) { ApiResponse <Object> localVarResponse = CreateAuthenticationTokenUsingPOSTWithHttpInfo(authenticationRequest); return(localVarResponse.Data); }