V1

get

/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjects/selectionStatus/{siteId}

Retrieves the SDV subject selection status for the provided site. Returns current and previous selection information for all subjects under the site.

Request

Path Parameters
  • Mode of the study, accepts: test, active, or training.
    Example:
    test
  • Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the clinical site.
    Example:
    FEDCBA1234567890FEDCBA1234567890
  • Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the study.
    Example:
    ABCDEF1234567890ABCDEF1234567890

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

List of SDV subjects for the given siteId with their selection status and previous subject number.
Body ()
Root Schema : SubjectSDVDtoList
Type: object
List of SDV subject selection objects with the previously selected subject number.
Show Source
Nested Schema : subjectsList
Type: array
List of SDV subject objects returned as selection status result.
Show Source
Nested Schema : SubjectSDVDto
Type: object
Basic SDV subject selection information.
Show Source
  • Unique identifier for the SDV subject (UUID, 32-character uppercase hexadecimal string)
    Example: 22223333444455556666777788889999
  • Source data verification selection status for the subject it can be NOT_SELECTED, INITIALCOUNT_SELECTED, POST_INITIALCOUNT_SELECTED.
    Example: NOT_SELECTED
  • Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the clinical site.
    Example: FEDCBA1234567890FEDCBA1234567890
  • Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the study.
    Example: ABCDEF1234567890ABCDEF1234567890
  • Minimum Length: 0
    Maximum Length: 500
    Unique subject Number representing the patient/participant enrolled in the study.
    Example: SUBJ-0204
Examples

400 Response

Bad request.
Body ()
Root Schema : DcsResponse
Type: object
Show Source
Nested Schema : ErrorResponseData
Type: object
Structure representing an error response from the reporting service. Contains an error code, human-readable message, and details.
Show Source
  • details
    Detailed error context or debugging information such as validation error, stack trace, or field/parameter cause.
  • Application or business-specific error code representing the error type.
    Example: REPT_401
  • Human-readable error message describing the failure or issue.
    Example: Unauthorized: User does not have access to the requested resource
Nested Schema : result
Type: object
Nested Schema : details
Type: object
Detailed error context or debugging information such as validation error, stack trace, or field/parameter cause.
Example:
User role is missing required permission REPORTING_VIEW. Field: userId
Back to Top