IB Password Restore Reset POST

Reset password using access token

# ENDPOINT
/oauth/v2/passwordRestoreReset
# REQUEST BODY
Schema: passwordRestoreReset
Type: object
Variable Name Type Format Usage Description
client_timezone Client Timezone string M Client timezone offset (to GMT)
ip IP string M Client IP address
response_type Response Type string M Indicates that your server expects to receive an authorization code. Values: "access_token","code","sign_token"
source_system Source system string M Source system. For Internetbank please setup "IB"
# REQUEST BODY EXAMPLE
							{
    "response_type":"access_token",
    "ip":"::1",
    "client_timezone":"-3",
    "source_system":"IB"
}						
# POSITIVE RESPONSE

200 - Response successfully when status is OK

200 - Response successfully when status is OK

Schema: HeaderResponseStatusOkEmpty
Type: application/json
Variable Name Type Format Description
# RESPONSE POSITIVE EXAMPLE
							{}						
# NEGATIVE RESPONSE

200 - Response with error when status is ERROR

200 - Response with error when status is ERROR

Schema: HeaderResponseStatusErrorOAuth
Type: object
Variable Name Type Format Description
error_description Error Description string Description of error
error Error Code string Error code
# RESPONSE NEGATIVE EXAMPLE
							{
    "error": "invalid_scope",
    "error_description": "Invalid scope."
}