GET api/Curricula/{id}?ClientId={ClientId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientId | integer |
None. |
|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Mimic_Curriculum| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| description | string |
None. |
|
| startmenu_id | integer |
None. |
|
| preferred_device_id | integer |
None. |
|
| tooltip | string |
None. |
|
| notes | string |
None. |
|
| is_system | boolean |
None. |
|
| is_enabled | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": 1,
"description": "sample string 2",
"startmenu_id": 1,
"preferred_device_id": 1,
"tooltip": "sample string 3",
"notes": "sample string 4",
"is_system": true,
"is_enabled": true
}
application/xml, text/xml
Sample:
<Mimic_Curriculum xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MScore.Synchronization.WebApi.Dto.Sync.Tables"> <description>sample string 2</description> <id>1</id> <is_enabled>true</is_enabled> <is_system>true</is_system> <notes>sample string 4</notes> <preferred_device_id>1</preferred_device_id> <startmenu_id>1</startmenu_id> <tooltip>sample string 3</tooltip> </Mimic_Curriculum>