POST v1/take/finish-take
Finish a Take of a Quiz.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
A response containing the start time, or validation errors if the Take could not be finished.
FinishTakePostResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Finished | date |
None. |
Response Codes
- 200 OK: A Take of a Quiz successfully finished.
- 400 BadRequest: Data validation failed, see the response body for more information.
- 401 Unauthorized:
- 500 InternalServerError:
Response Formats
application/json, text/json
Sample:
{
"Finished": "2025-12-11T11:07:49.183119-06:00"
}
text/html
Sample:
{"Finished":"2025-12-11T11:07:49.183119-06:00"}
application/xml, text/xml
Sample:
<FinishTakePostResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ITAGroup.Questionnaire.Api.Contracts.v1.Responses"> <Finished>2025-12-11T11:07:49.183119-06:00</Finished> </FinishTakePostResponse>