POST api/resident/accountlink

Returns an account link for auto login to the Conservice resident account portal.

Request Information

Parameters

NameDescriptionAdditional information
request

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "ManagementFirmName": "sample string 1",
  "PropertyCode": "sample string 2",
  "ResidentId": "sample string 3"
}

application/xml, text/xml

Sample:
<AccountLinkRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VendorIntegration.ClientModels.BOL">
  <ManagementFirmName>sample string 1</ManagementFirmName>
  <PropertyCode>sample string 2</PropertyCode>
  <ResidentId>sample string 3</ResidentId>
</AccountLinkRequest>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'AccountLinkRequest'.

Response Information

application/json, text/json

Sample:
{
  "AccountLink": "sample string 1",
  "Code": "sample string 2",
  "Message": "sample string 3",
  "Description": "sample string 4",
  "Link": "sample string 5"
}

application/xml, text/xml

Sample:
<AccountLinkResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VendorIntegration.ClientModels.BOL">
  <Code>sample string 2</Code>
  <Description>sample string 4</Description>
  <Link>sample string 5</Link>
  <Message>sample string 3</Message>
  <AccountLink>sample string 1</AccountLink>
</AccountLinkResponse>