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

4 Study Phases API

This ClearTrial Web Services API returns information about ClearTrial study phases from the application.

Get Study Phases

Returns the study phases.

Method: GET

URL: /cleartrial-ws/studyPhases

Sample output in JSON:

{
"List": [
    {
    "id": 10,    "name":"I (Healthy Volunteers)"    },
    {
    "id": 1,
    "name":"I (Oncology/Vaccines)"
    },
    {
    "id": 4,
    "name":"IIa"
    },
    {
    "id": 3,
    "name":"II"
    },
    {
    "id": 5,
    "name":"IIb"
    },
    {
    "id": 6,
    "name":"III"
    },
    {
    "id": 7,
    "name":"IIIb"
    },
    {
    "id": 8,
    "name":"IV with IND"
    },
    {
    "id": 9,
    "name":"IV no IND"
    }
 ]
}

Sample output in XML:

<studyPhaseRepresentations>
    <studyPhase>    <id>10</id>    <name>I (Healthy Volunteers)</name>    </studyPhase>    <studyPhase>
       <id>1</id>
       <name>I (Oncology/Vaccines)</name>
    </studyPhase>
    <studyPhase>
       <id>4</id>
       <name>IIa</name>
    </studyPhase>
    <studyPhase>
       <id>3</id>
       <name>II</name>
    </studyPhase>
    <studyPhase>
       <id>5</id>
       <name>IIb</name>
    </studyPhase>
    <studyPhase>
       <id>6</id>
       <name>III</name>
    </studyPhase>
    <studyPhase>
       <id>7</id>
       <name>IIIb</name>
    </studyPhase>
    <studyPhase>
       <id>8</id>
       <name>IV with IND</name>
    </studyPhase>
    <studyPhase>
       <id>9</id>
       <name>IV no IND</name>
    </studyPhase>
</studyPhaseRepresentations>

Sub-Resources: None