V1.0

get

/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/forResupply

Retrieve the list of subjects per site eligible for resupply evaluation. Subjects are filtered based on visit windows, skip rules, and site selection.

Request

Path Parameters
Query Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

List of resupply-eligible subjects retrieved per site.
Body ()
Root Schema : schema
Type: array
Show Source
Nested Schema : ResupplySubjectsListDto
Type: object
Aggregated subjects per site for resupply evaluation based on visit windows and skip rules
Show Source
Nested Schema : siteResupplySubjectsList
Type: array
Collection of per-site resupply subject lists
Show Source
Nested Schema : SiteResupplySubjectsListDto
Type: object
Subjects per site categorized by screening and randomization status for resupply processing
Show Source
Nested Schema : randomizedSubjects
Type: array
Subject Identifiers (UUID, 32-character uppercase hexadecimal string) that are randomized at the site
Show Source
  • Subject Identifiers (UUID, 32-character uppercase hexadecimal string) that are randomized at the site
Example:
[
    "3C1D5E7F9A0B2C4D6E8F0A1B2C3D4E5F",
    "ABCDEF1234567890ABCDEF1234567890"
]
Nested Schema : screenedSubjects
Type: array
Subject Identifiers (UUID, 32-character uppercase hexadecimal string) that are screened at the site
Show Source
  • Subject Identifiers (UUID, 32-character uppercase hexadecimal string) that are screened at the site
Example:
[
    "A3F1C4B2D8E947F0A1B2C3D4E5F6A7B8",
    "9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D"
]
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