GET api/assessmentresponse/getassessmentresponsechanges/{assessmentId}/{requestDate}
Performs search for assessment responses that have been completed for a given assessment after given date. If no date is supplied, all completed assessments are returned
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
assessmentId |
Required, External ID of assessment |
string |
Required |
requestDate |
Optional change date search start. Accepts date in MM-DD-YYYY and YYYY-MM-DD formats |
date |
None. |
Body Parameters
None.
Response Information
Resource Description
List of response IDs
ChangesResponseName | Description | Type | Additional information |
---|---|---|---|
ResponseIds | Collection of integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "ResponseIds": [ 1, 2 ] }
application/xml, text/xml
Sample:
<ChangesResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BrilliantAssessments.Services.AssessmentIntegration.Models"> <ResponseIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:int>1</d2p1:int> <d2p1:int>2</d2p1:int> </ResponseIds> </ChangesResponse>