GET Account/IssueUserVerification?userName={userName}&password={password}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
userName

string

Required

password

string

Required

Body Parameters

None.

Response Information

Resource Description

UserVerificationDto
NameDescriptionTypeAdditional information
VerificationId

integer

None.

TermsAndConsAgreed

boolean

None.

AuthCode

string

None.

ValidTo

date

None.

Response Formats

application/json, text/json

Sample:
{
  "VerificationId": 1,
  "TermsAndConsAgreed": true,
  "AuthCode": "sample string 3",
  "ValidTo": "2025-12-05T22:42:32.7290952-05:00"
}

application/xml, text/xml

Sample:
<UserVerificationDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Img.MyiCLC.Core.Interfaces.Dto.Identity">
  <AuthCode>sample string 3</AuthCode>
  <TermsAndConsAgreed>true</TermsAndConsAgreed>
  <ValidTo>2025-12-05T22:42:32.7290952-05:00</ValidTo>
  <VerificationId>1</VerificationId>
</UserVerificationDto>