PUT api/{context}/OriginSourceDefinition/Save

Save an origin source definition with all of the supplied information.

Request Information

ParameterDescriptionAdditional information
originSourceDefinitionModel
A model representing an entire origin source definition record.

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>