DELETE api/Exams/{id}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ExamName | Description | Type | Additional information |
---|---|---|---|
ExamID | integer |
None. |
|
CertificationID | integer |
None. |
|
ExamName | string |
None. |
|
PassFail | boolean |
None. |
|
MaxScore | integer |
None. |
|
PassScore | integer |
None. |
|
Score | integer |
None. |
|
ExamDate | date |
None. |
|
Comment | string |
None. |
|
CreatedDate | date |
None. |
|
ExamShortName | string |
None. |
|
ExamNumber | string |
None. |
|
ImageName | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "ExamID": 1, "CertificationID": 2, "ExamName": "sample string 3", "PassFail": true, "MaxScore": 5, "PassScore": 6, "Score": 7, "ExamDate": "2019-02-17T18:42:39.4616775-08:00", "Comment": "sample string 8", "CreatedDate": "2019-02-17T18:42:39.4616775-08:00", "ExamShortName": "sample string 10", "ExamNumber": "sample string 11", "ImageName": "sample string 12" }
application/xml, text/xml
Sample:
<Exam xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Web_API.Entities"> <CertificationID>2</CertificationID> <Comment>sample string 8</Comment> <CreatedDate>2019-02-17T18:42:39.4616775-08:00</CreatedDate> <ExamDate>2019-02-17T18:42:39.4616775-08:00</ExamDate> <ExamID>1</ExamID> <ExamName>sample string 3</ExamName> <ExamNumber>sample string 11</ExamNumber> <ExamShortName>sample string 10</ExamShortName> <ImageName>sample string 12</ImageName> <MaxScore>5</MaxScore> <PassFail>true</PassFail> <PassScore>6</PassScore> <Score>7</Score> </Exam>