CASE FrameworkCASE Framework
Management APICode lists

List codes of a study code list

GET
/v1/studies/{studyKey}/study-code-list/codes

Authorization

BearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

studyKey*string

Query Parameters

listKey*string
page?integer

page number (starting from 1)

Default1
Range1 <= value
limit?integer

maximum number of codes per page

Default10
Range1 <= value

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/studies/string/study-code-list/codes?listKey=string"
{
  "codeList": [
    {
      "id": "string",
      "studyKey": "string",
      "listKey": "string",
      "code": "string",
      "addedAt": "2019-08-24T14:15:22Z"
    }
  ],
  "pagination": {
    "totalCount": 0,
    "currentPage": 0,
    "totalPages": 0,
    "pageSize": 0
  }
}
{
  "error": "string"
}
{
  "error": "string"
}
{
  "error": "string"
}