Home / API / ASP.NET Web API Details

POST api/v1/Account/PostEncryptAccountID

Description

Encrypted Account Info

Request Information

Parameters

NameDescriptionAdditional information
AccountId
No documentation available.

Define this parameter in the request body.

TechnicianId
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "AccountId": 1,
  "TechnicianId": 2
}

application/xml, text/xml

Sample:
<EncryptedAccount xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APICOMMON">
  <AccountId>1</AccountId>
  <TechnicianId>2</TechnicianId>
</EncryptedAccount>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "SecretCode": "sample string 1",
  "Message": "sample string 2"
}

application/xml, text/xml

Sample:
<EncryptedAccountresult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APICOMMON">
  <Message>sample string 2</Message>
  <SecretCode>sample string 1</SecretCode>
</EncryptedAccountresult>