POST api/{context}/OriginSourceDefinition/Create

Create an origin source definition in Aegis CRM.

Request Information

ParameterDescriptionAdditional information
originSourceDefinitionModel

Define this parameter in the request body.

Special Field Notes

Field NameNotes
Name
Primary key for Origin sources.

Request body formats

application/json, text/json

Sample:
{
  "Name": "sample string 1",
  "Description": "sample string 2",
  "Active": true
}

application/xml, text/xml

Sample:
<OriginSourceDefinitionModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BDS.Web.WebApi.Models">
  <Active>true</Active>
  <Description>sample string 2</Description>
  <Name>sample string 1</Name>
</OriginSourceDefinitionModel>