V1

post

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

Retrieves the list of subjects selected for SDV for the specified study and mode, filtered by site(s) and optional date range. Accepts a body with site IDs and start/end dates, validates the date window, and returns subject-level SDV selection entries.

Request

Path Parameters
Supported Media Types
Request Body - application/json ()
Root Schema : schema
Type: object
SDV subject selection request, providing list of site UUIDs and date range for SDV operation.
Show Source
  • End date for SDV selection in dd-MMM-yyyy pattern
    Example: 31-JAN-2023
  • sites
    List of participating Site identifiers (UUID, 32-character uppercase hexadecimal strings).
  • Start date for SDV selection in dd-MMM-yyyy pattern.
    Example: 01-JAN-2023
Nested Schema : sites
Type: array
List of participating Site identifiers (UUID, 32-character uppercase hexadecimal strings).
Show Source
  • List of participating Site identifiers (UUID, 32-character uppercase hexadecimal strings).
Example:
[
    "AA11BB22CC33DD44EE55FF6677889900",
    "1234567890ABCDEF1234567890ABCDEF"
]
Examples

Back to Top

Response

Supported Media Types

200 Response

Success
Body ()
Root Schema : SubjectSDVDto2
Type: object
Subject SDV details (version 2) with visit window timestamps.
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
  • The timestamp when the versioned SDV record ended.
    Example: 2025-08-31T18:00:00Z
  • The timestamp when the versioned SDV record began.
    Example: 2025-08-01T09:00:00Z
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