heilog.ch.Api

<back to all web services

GetIndicationRequest

The following routes are available for this service:
All Verbs/indication/{IndicationId}
GetIndicationRequest Parameters:
NameParameterData TypeRequiredDescription
IndicationIdpathlongNo
GetIndicationResponse Parameters:
NameParameterData TypeRequiredDescription
IndicationformIndicationDetailDtoNo
ResolvesToIllnessesformList<IllnessListItemDto>No
IndicationDetailDto Parameters:
NameParameterData TypeRequiredDescription
IdformlongNo
TargetTypeformTargetTypeNo
IsActiveformboolNo
LocalizationsformList<IndicationLocalizationDto>No
TargetType Enum:
NameValue
Human1
Animal2
IndicationLocalizationDto Parameters:
NameParameterData TypeRequiredDescription
IdformlongNo
LanguageCodeformLanguageCodeNo
NameformstringNo
LanguageCode Enum:
NameValue
de1
fr2
it3
IllnessListItemDto Parameters:
NameParameterData TypeRequiredDescription
IdformlongNo
NameformstringNo
TargetTypeformTargetTypeNo
IsActiveformboolNo

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /indication/{IndicationId} HTTP/1.1 
Host: heidak-api.build.exanic.ch 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<GetIndicationRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/heilog.ch.Api.ServiceModel.Indication">
  <IndicationId>0</IndicationId>
</GetIndicationRequest>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<GetIndicationResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/heilog.ch.Api.ServiceModel.Indication">
  <Indication xmlns:d2p1="http://schemas.datacontract.org/2004/07/heilog.ch.Api.Dto.Indication">
    <d2p1:Id>0</d2p1:Id>
    <d2p1:IsActive>false</d2p1:IsActive>
    <d2p1:Localizations>
      <d2p1:IndicationLocalizationDto>
        <d2p1:Id>0</d2p1:Id>
        <d2p1:LanguageCode>de</d2p1:LanguageCode>
        <d2p1:Name>String</d2p1:Name>
      </d2p1:IndicationLocalizationDto>
    </d2p1:Localizations>
    <d2p1:TargetType>Human</d2p1:TargetType>
  </Indication>
  <ResolvesToIllnesses xmlns:d2p1="http://schemas.datacontract.org/2004/07/heilog.ch.Api.Dto.Illness">
    <d2p1:IllnessListItemDto>
      <d2p1:Id>0</d2p1:Id>
      <d2p1:IsActive>false</d2p1:IsActive>
      <d2p1:Name>String</d2p1:Name>
      <d2p1:TargetType>Human</d2p1:TargetType>
    </d2p1:IllnessListItemDto>
  </ResolvesToIllnesses>
</GetIndicationResponse>