GET api/InterimCommitteeTopics/{year}/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| year | integer |
Required |
|
| id | string |
Required |
Body Parameters
None.
Response Information
Resource Description
InterimCommitteeDto| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| CommitteeYear | integer |
None. |
|
| OwnerID | string |
None. |
|
| Description | string |
None. |
|
| Budget | decimal number |
None. |
|
| Meeting | string |
None. |
|
| OrderNumber | integer |
None. |
|
| InterimCommitteeTopics | Collection of InterimCommitteeTopicDto |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": 1,
"committeeYear": 2,
"ownerID": "sample string 3",
"description": "sample string 4",
"budget": 1.0,
"meeting": "sample string 5",
"orderNumber": 6,
"interimCommitteeTopics": [
{
"id": 1,
"interimCommitteeNameID": 2,
"orderNumber": 3,
"topic": "sample string 4",
"description": "sample string 5"
},
{
"id": 1,
"interimCommitteeNameID": 2,
"orderNumber": 3,
"topic": "sample string 4",
"description": "sample string 5"
}
]
}