v1.0

get

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

Retrieves all screened and randomized subjects for resupply grouped by site.

Request

Path Parameters
  • Indicates the operational mode of the study. Accepted values: active, test, or training.
    Example:
    active
  • Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.
    Example:
    1BC29B36F5D64B1B95F4BDBBCEA481BE
Query Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Subjects success.
Body ()
Root 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 : RestResponse
Type: object
Show Source
Nested Schema : ErrorResponseData
Type: object
Show Source
Nested Schema : result
Type: object
Nested Schema : details
Type: object
Back to Top