Example #1
0
        public void ChangePasswordTest()
        {
            // TODO: add unit test for the method 'ChangePassword'
            string             appId = null; // TODO: replace null with proper value
            PasswordChangeBody body  = null; // TODO: replace null with proper value

            var response = instance.ChangePassword(appId, body);

            Assert.IsInstanceOf <CloudUser> (response, "response is CloudUser");
        }
Example #2
0
        /// <summary>
        /// change a password changes the password for a logged in user without logging them out
        /// </summary>
        /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="appId">ID of app</param>
        /// <param name="body">request body</param>
        /// <returns>Task of ApiResponse (CloudUser)</returns>
        public async System.Threading.Tasks.Task<ApiResponse<CloudUser>> ChangePasswordAsyncWithHttpInfo (string appId, PasswordChangeBody body)
        {
            // verify the required parameter 'appId' is set
            if (appId == null) throw new ApiException(400, "Missing required parameter 'appId' when calling ChangePassword");
            // verify the required parameter 'body' is set
            if (body == null) throw new ApiException(400, "Missing required parameter 'body' when calling ChangePassword");
            
    
            var localVarPath = "user/{app_id}/changePassword";
    
            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 (appId != null) localVarPathParams.Add("app_id", Configuration.ApiClient.ParameterToString(appId)); // path parameter
            
            
            
            
            if (body.GetType() != typeof(byte[]))
            {
                localVarPostBody = Configuration.ApiClient.Serialize(body); // http body (model) parameter
            }
            else
            {
                localVarPostBody = body; // byte array
            }

            

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

            int localVarStatusCode = (int) localVarResponse.StatusCode;
 
            if (localVarStatusCode >= 400)
                throw new ApiException (localVarStatusCode, "Error calling ChangePassword: "******"Error calling ChangePassword: " + localVarResponse.ErrorMessage, localVarResponse.ErrorMessage);

            return new ApiResponse<CloudUser>(localVarStatusCode,
                localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()),
                (CloudUser) Configuration.ApiClient.Deserialize(localVarResponse, typeof(CloudUser)));
            
        }
Example #3
0
        /// <summary>
        /// change a password changes the password for a logged in user without logging them out
        /// </summary>
        /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="appId">ID of app</param>
        /// <param name="body">request body</param>
        /// <returns>Task of CloudUser</returns>
        public async System.Threading.Tasks.Task<CloudUser> ChangePasswordAsync (string appId, PasswordChangeBody body)
        {
             ApiResponse<CloudUser> localVarResponse = await ChangePasswordAsyncWithHttpInfo(appId, body);
             return localVarResponse.Data;

        }
Example #4
0
 /// <summary>
 /// change a password changes the password for a logged in user without logging them out
 /// </summary>
 /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception>
 /// <param name="appId">ID of app</param> 
 /// <param name="body">request body</param> 
 /// <returns>CloudUser</returns>
 public CloudUser ChangePassword (string appId, PasswordChangeBody body)
 {
      ApiResponse<CloudUser> localVarResponse = ChangePasswordWithHttpInfo(appId, body);
      return localVarResponse.Data;
 }
Example #5
0
 public void Init()
 {
     instance = new PasswordChangeBody();
 }
 public void Init()
 {
     instance = new PasswordChangeBody();
 }