CASE FrameworkCASE Framework
Management APIParticipants

List participant responses

GET
/v1/studies/{studyKey}/participants/{participantID}/responses

Authorization

BearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

studyKey*string
participantID*string

Query Parameters

page?integer
Range1 <= value
limit?integer
Range1 <= value <= 100
filter?

bson.M object to filter responses

sort?

bson.M object to sort responses

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/studies/string/participants/string/responses"
{
  "responses": [
    {
      "id": "string",
      "key": "string",
      "participantId": "string",
      "versionId": "string",
      "openedAt": 0,
      "submittedAt": 0,
      "arrivedAt": 0,
      "responses": [
        {}
      ],
      "context": {
        "property1": "string",
        "property2": "string"
      }
    }
  ],
  "pagination": {
    "totalCount": 0,
    "currentPage": 0,
    "totalPages": 0,
    "pageSize": 0
  }
}
{
  "error": "string"
}
{
  "error": "string"
}
{
  "error": "string"
}