GET api/assessmentresponse/getassessmentresponses/{assessmentId}

Gets all assessment responses

Request Information

URI Parameters

NameDescriptionTypeAdditional information
assessmentId

Required, External ID of assessment

string

Required

Body Parameters

None.

Response Information

Resource Description

List of response IDs

ChangesResponse
NameDescriptionTypeAdditional 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>