GET api/CourseAccreditation/{courseID}?StateIDs={StateIDs}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| courseID | integer |
Required |
|
| StateIDs | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of CourseAccreditationModel| Name | Description | Type | Additional information |
|---|---|---|---|
| StateID | integer |
None. |
|
| StateAbbreviation | string |
None. |
|
| Hours | decimal number |
None. |
|
| SpecialtyHours | decimal number |
None. |
|
| SpecialtyID | integer |
None. |
|
| ShortSpecialtyTitle | string |
None. |
|
| SpecialtyTitle | string |
None. |
|
| CourseCode | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"StateID": 3,
"StateAbbreviation": "sample string 4",
"Hours": 5.0,
"SpecialtyHours": 6.0,
"SpecialtyID": 1,
"ShortSpecialtyTitle": "sample string 7",
"SpecialtyTitle": "sample string 8",
"CourseCode": "sample string 11"
},
{
"StateID": 3,
"StateAbbreviation": "sample string 4",
"Hours": 5.0,
"SpecialtyHours": 6.0,
"SpecialtyID": 1,
"ShortSpecialtyTitle": "sample string 7",
"SpecialtyTitle": "sample string 8",
"CourseCode": "sample string 11"
}
]