V1.0

get

/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{subjectId}/events/{eventId}/locks/visits

Get visit level lock records for a visit

Request

Path Parameters
  • Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.
    Example:
    D3AE48BD29FC4E379BC94AB8265A72CF
  • Indicates the operational mode of the study. Accepted values: active, test, or training.
    Example:
    test
  • Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.
    Example:
    BA62DB18A9E347B899743D46853CEDCA
  • Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.
    Example:
    BA62DB18A9E347B899743D46853CEDCA
Query Parameters
  • Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.
    Example:
    1

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Success
Body ()
Root Schema : schema
Type: array
Show Source
Nested Schema : VisitLockDetails
Type: object
DTO containing lock status details for a visit, including subject, event, lock statuses, and related timestamps.
Show Source
  • Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.
    Example: D3AE48BD29FC4E379BC94AB8265A72CF
  • Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.
    Example: 1
  • Lock status for this visit. applicable values are LOCKED, UNLOCKED
    Example: LOCKED
  • Timestamp when current lock status became effective.
    Example: 2023-10-15T18:25:43Z
  • Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.
    Example: BA62DB18A9E347B899743D46853CEDCA
  • Lock status for the visit start date. applicable values are LOCKED, UNLOCKED
    Example: UNLOCKED
  • Timestamp when visitStartDateLockStatus was set.
    Example: 2023-10-15T18:25:43Z
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