Skip to content

Latest commit

 

History

History
61 lines (42 loc) · 2.02 KB

ResetPasswordApi.md

File metadata and controls

61 lines (42 loc) · 2.02 KB

stcloud.ResetPasswordApi

All URIs are relative to /

Method HTTP request Description
reset_password_using_post1 POST /users-web/api/v3/account/password/reset Reset Password

reset_password_using_post1

GenericMapBasedApiResponse reset_password_using_post1(body)

Reset Password

Example

from __future__ import print_function
import time
import stcloud
from stcloud.rest import ApiException
from pprint import pprint

# Configure API key authorization: api_key
configuration = stcloud.Configuration()
configuration.api_key['Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Authorization'] = 'Bearer'

# create an instance of the API class
api_instance = stcloud.ResetPasswordApi(stcloud.ApiClient(configuration))
body = stcloud.UserInfo() # UserInfo | dto

try:
    # Reset Password
    api_response = api_instance.reset_password_using_post1(body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ResetPasswordApi->reset_password_using_post1: %s\n" % e)

Parameters

Name Type Description Notes
body UserInfo dto

Return type

GenericMapBasedApiResponse

Authorization

api_key

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]