Skip Headers
Oracle® Health Sciences ClearTrial Cloud Service Web Services API User Guide
Release 5.1

Part Number E39879-02
Go to Documentation Home
Home
Go to Book List
Book List
Go to Table of Contents
Contents
Go to Feedback page
Contact Us

Go to previous page
Previous
Go to next page
Next
View PDF

3 Therapeutic Area and Indications API

This ClearTrial Web Services API supports the therapeutic areas and indications that are present in ClearTrial applications.

Get Therapeutic Areas

Returns the list of therapeutic areas that the ClearTrial software supports.

Method: GET

URL: /cleartrial-ws/therapeuticAreas

Sample output in JSON:

{
"List": [
    {
    "id": 1,
    "name":"Blood and Blood Forming Organs",
    "indicationsUrl":"/cleartrial-ws/therapeuticAreas/1/indications",
    "url":"/cleartrial-ws/therapeuticAreas/1"
    },
    {
    "id": 2,
    "name":"Circulatory System",
    "indicationsUrl":"/cleartrial-ws/therapeuticAreas/2/indications",
    "url":"/cleartrial-ws/therapeuticAreas/2"
    },
    {
    ...
   }
  ]
}

Sample output in XML:

<therapeuticAreaRepresentations>
   <therapeuticArea>
       <id>1</id>
       <name>Blood and Blood Forming Organs</name>
        <indicationsUrl>/cleartrial-ws/therapeuticAreas/1/indications
        </indicationsUrl>
       <url>/cleartrial-ws/therapeuticAreas/1</url>
   </therapeuticArea>
   <therapeuticArea>
       <id>2</id>
       <name>Circulatory System</name>
       <indicationsUrl>/cleartrial-ws/therapeuticAreas/2/indications
       </indicationsUrl>
       <url>/cleartrial-ws/therapeuticAreas/2</url>
   </therapeuticArea>
   ...
</therapeuticAreaRepresentations>

Sub-Resources: Indications

Get Indications

Returns the indications under a specified therapeutic area.

Method: GET

URL: /cleartrial-ws/therapeuticAreas/{therapeuticAreaId}/indications

Sample output in JSON:

{
"List": [
    {
    "id": 8,
    "therapeuticAreaId": 1,
    "name":"Anemias",
    "description":"Anemias",
    "url":"/cleartrial-ws/therapeuticAreas/1/indications/8"
    },
    {
    "id": 21,
    "therapeuticAreaId": 1,
    "name":"Blood Dyscrasias",
    "description":"Blood Dyscrasias",
    "url":"/cleartrial-ws/therapeuticAreas/1/indications/21"
    },
    {
      ...   
    }                                    
  ]
}

Sample output in XML:

<indicationRepresentations>
   <indication>
       <id>8</id>
       <therapeuticAreaId>1</therapeuticAreaId>
       <name>Anemias</name>
       <description>Anemias</description>
       <url>/cleartrial-ws/therapeuticAreas/1/indications/8</url>
   </indication>
   <indication>
       <id>21</id>
       <therapeuticAreaId>1</therapeuticAreaId>
       <name>Blood Dyscrasias</name>
       <description>Blood Dyscrasias</description>
       <url>/cleartrial-ws/therapeuticAreas/1/indications/21</url>
   </indication>
   ...
</indicationRepresentations>

Sub-Resources: None