POST api/SocialHistoryDrugs
Creates a new drug use entry or updates an existing one.
Request Information
URI Parameters
None.
Body Parameters
Model used to create or modify a drug abuse entry.
SocialHistoryDrugModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Name |
Name of the social history drug (Required). |
string |
None. |
| IsDefault |
Indicates if this social history drug is the default or not (Required). |
boolean |
None. |
| SortOrder |
Indicates the sort order of this social history drug in the list (Required). |
integer |
None. |
| Id |
Unique ID of the model in the portal (Read only). |
globally unique identifier |
None. |
| ExternalId |
Unique ID of the model on integrating system (Required). |
string |
None. |
Request Formats
application/json, text/json
{
"name": "sample string 1",
"isDefault": true,
"sortOrder": 3,
"id": "1738299e-41d6-4ef6-819b-5fc6fae8e6ee",
"externalId": "sample string 5"
}
application/xml, text/xml
<SocialHistoryDrugModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Api.Models.SocialHistoryDrugs"> <ExternalId xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Api.Models">sample string 5</ExternalId> <Id xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Api.Models">1738299e-41d6-4ef6-819b-5fc6fae8e6ee</Id> <IsDefault>true</IsDefault> <Name>sample string 1</Name> <SortOrder>3</SortOrder> </SocialHistoryDrugModel>
application/x-www-form-urlencoded
Response Information
Resource Description
SocialHistoryDrugModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Name |
Name of the social history drug (Required). |
string |
None. |
| IsDefault |
Indicates if this social history drug is the default or not (Required). |
boolean |
None. |
| SortOrder |
Indicates the sort order of this social history drug in the list (Required). |
integer |
None. |
| Id |
Unique ID of the model in the portal (Read only). |
globally unique identifier |
None. |
| ExternalId |
Unique ID of the model on integrating system (Required). |
string |
None. |
Response Formats
application/json, text/json
{
"name": "sample string 1",
"isDefault": true,
"sortOrder": 3,
"id": "60837ac2-1943-4076-991d-99017cc843b4",
"externalId": "sample string 5"
}
application/xml, text/xml
<SocialHistoryDrugModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Api.Models.SocialHistoryDrugs"> <ExternalId xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Api.Models">sample string 5</ExternalId> <Id xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Api.Models">60837ac2-1943-4076-991d-99017cc843b4</Id> <IsDefault>true</IsDefault> <Name>sample string 1</Name> <SortOrder>3</SortOrder> </SocialHistoryDrugModel>