GET api/{context}/OriginSourceDefinition/ID/{text}

Retrieve an origin source by its Id (i.e., name).

Request Information

ParameterDescriptionAdditional information
text
The Origin Source Name (i.e., Code).

Define this parameter in the request URI.

Special Field Notes

Field NameNotes
Name
Primary key for Origin sources.

Response Information

Response 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>