POST api/verifyPerson

Request Information

URI Parameters

None.

Body Parameters

VerifyPersonRequest
NameDescriptionTypeAdditional information
Email

string

None.

Password

string

None.

ComfirmPassword

string

None.

AppConnectionId

string

None.

username

string

None.

memberID

integer

None.

IsAllowConsent

string

None.

Consent

Collection of ConsentRequest

None.

Request Formats

application/json, text/json

Sample:
{
  "email": "sample string 1",
  "password": "sample string 2",
  "comfirmPassword": "sample string 3",
  "appConnectionId": "sample string 4",
  "username": "sample string 5",
  "memberID": 6,
  "isAllowConsent": "sample string 7",
  "consent": [
    {
      "consentId": 1,
      "memberID": 2,
      "id": 3,
      "value": "sample string 4",
      "isActive": "sample string 5",
      "createBy": "sample string 6",
      "crmCode": "sample string 7"
    },
    {
      "consentId": 1,
      "memberID": 2,
      "id": 3,
      "value": "sample string 4",
      "isActive": "sample string 5",
      "createBy": "sample string 6",
      "crmCode": "sample string 7"
    }
  ]
}

application/xml, text/xml

Sample:
<VerifyPersonRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VentilatorAPI.HTTP.Request">
  <AppConnectionId>sample string 4</AppConnectionId>
  <ComfirmPassword>sample string 3</ComfirmPassword>
  <Consent>
    <ConsentRequest>
      <ConsentId>1</ConsentId>
      <CreateBy>sample string 6</CreateBy>
      <Id>3</Id>
      <IsActive>sample string 5</IsActive>
      <Value>sample string 4</Value>
      <crmCode>sample string 7</crmCode>
      <memberID>2</memberID>
    </ConsentRequest>
    <ConsentRequest>
      <ConsentId>1</ConsentId>
      <CreateBy>sample string 6</CreateBy>
      <Id>3</Id>
      <IsActive>sample string 5</IsActive>
      <Value>sample string 4</Value>
      <crmCode>sample string 7</crmCode>
      <memberID>2</memberID>
    </ConsentRequest>
  </Consent>
  <Email>sample string 1</Email>
  <IsAllowConsent>sample string 7</IsAllowConsent>
  <Password>sample string 2</Password>
  <memberID>6</memberID>
  <username>sample string 5</username>
</VerifyPersonRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.