getAvailableSubjectDomains

This method returns the list of subject domains which are currently supported by OpenDover.

Input parameters

Tag Description
apiKey

Your API key

Output

Tag Description
return The method returns the list of subject domains. This tag represents one item from the list.
return/code subject domain code
return/name subject domain name

Request Sample

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:stub="stubs.api.opendover.byelex.nl">
   <soapenv:Header/>
   <soapenv:Body>
      <stub:getAvailableSubjectDomains>
         <apiKey>abcdefg0123456789abcdefg</apiKey>
      </stub:getAvailableSubjectDomains>
   </soapenv:Body>
</soapenv:Envelope>

Response Sample

<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
   <S:Body>
      <ns2:getAvailableSubjectDomainsResponse xmlns:ns2="stubs.api.opendover.byelex.nl">
         <return>
            <code>economics_finance_business</code>
            <name>Economics, Finance, Business</name>
         </return>
         <return>
            <code>health</code>
            <name>Health</name>
         </return>
         <return>
            <code>health.medical_care</code>
            <name>Health - Medical Care</name>
         </return>
         <return>
            <code>law</code>
            <name>Law</name>
         </return>
         <return>
            <code>politics</code>
            <name>Politics</name>
         </return>
         <return>
            <code>product.camera</code>
            <name>Product - Camera</name>
         </return>
         <return>
            <code>product.computer</code>
            <name>Product - Computer</name>
         </return>
      </ns2:getAvailableSubjectDomainsResponse>
   </S:Body>
</S:Envelope>