GET api/v1/monographs/combochemo/{structureId}
Retrieves details for a specific Combo/Chemo Regimen
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
structureId |
The structure id of the Combo/Chemo regimen |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Combo/Chemo content for an indication
ComboChemoDetailResponseName | Description | Type | Additional information |
---|---|---|---|
structureId | integer |
None. |
|
indication | string |
None. |
|
regimen | string |
None. |
|
cycleLength | string |
None. |
|
additionalInstructions | string |
None. |
|
agents | Collection of ComboChemoAgent |
None. |
|
references | Collection of Reference |
None. |
Response Codes
Code | Description | Additional information |
---|---|---|
200 | OK | The request returned without error |
204 | No Content | The request was successful but no results were returned |
400 | Bad Request | A parameter was missing or invalid |
404 | Not Found | The requested resource was not found |
Response Formats
application/json, text/json
Sample:
{ "structureId": 1, "indication": "sample string 2", "regimen": "sample string 3", "cycleLength": "sample string 4", "additionalInstructions": "sample string 5", "agents": [ { "acggName": "sample string 1", "dosage": "sample string 2" }, { "acggName": "sample string 1", "dosage": "sample string 2" } ], "references": [ { "id": 1, "title": "sample string 2", "pubMedId": 3 }, { "id": 1, "title": "sample string 2", "pubMedId": 3 } ] }
application/xml, text/xml
Sample:
<comboChemo xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <additionalInstructions>sample string 5</additionalInstructions> <agents> <agent> <acggName>sample string 1</acggName> <dosage>sample string 2</dosage> </agent> <agent> <acggName>sample string 1</acggName> <dosage>sample string 2</dosage> </agent> </agents> <cycleLength>sample string 4</cycleLength> <indication>sample string 2</indication> <references> <reference> <id>1</id> <pubMedId>3</pubMedId> <title>sample string 2</title> </reference> <reference> <id>1</id> <pubMedId>3</pubMedId> <title>sample string 2</title> </reference> </references> <regimen>sample string 3</regimen> <structureId>1</structureId> </comboChemo>