POST api/Alias

Create new alias

Request Information

Parameters

NameDescriptionAdditional information
value

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "DocumentGroup": "sample string 1",
  "Recipient": "sample string 2",
  "AliasValue": "sample string 3",
  "Secret": "sample string 4",
  "IdentityType": "sample string 5"
}

application/xml, text/xml

Sample:
<NewAlias xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Stralfors.NCP.BusinessLogic.Proxies.SDL">
  <AliasValue>sample string 3</AliasValue>
  <DocumentGroup>sample string 1</DocumentGroup>
  <IdentityType>sample string 5</IdentityType>
  <Recipient>sample string 2</Recipient>
  <Secret>sample string 4</Secret>
</NewAlias>

application/x-www-form-urlencoded

Sample:

Sample not available.