v1.0
post
/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/visit/verify/history
Retrieves either the latest or the audit records for Source Data Verification (SDV) with site information where visit was completed.
Request
Path Parameters
-
mode(required): string
Mode of the study, accepts: test, active, or training.Example:
active -
studyId(required): string
Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the study.Example:
5D5F9311C591424F852B99FD902E98A4
Supported Media Types
- application/json
Root Schema : schema
Type:
objectRequest to fetch visit verify history for specified subjects within a date range. Dates must be provided in dd-MMM-yyyy format (Example- 01-Jan-2023).
Show Source
-
endDate: string
(date-time)
End date in dd-MMM-yyyy format
-
startDate: string
(date-time)
Start date in dd-MMM-yyyy format
-
subjects: array
subjects
List of subject unique identifiers in UUID, 32-character uppercase hexadecimal string format to filter by
Nested Schema : subjects
Type:
arrayList of subject unique identifiers in UUID, 32-character uppercase hexadecimal string format to filter by
Show Source
-
Array of:
string(uuid)
List of subject unique identifiers in UUID, 32-character uppercase hexadecimal string format to filter by
Example:
[
"5D5F9311C591424F852B99FD902E98A4",
"6D5F9311C591424F852B99FD902E98A4"
]Examples
Back to Top
Response
Supported Media Types
- application/json
200 Response
Success
Root Schema : schema
Type:
Show Source
array-
Array of:
object SubjectVisitVerifyHistoryDto2
Visit verification history for a subject and event including version window, siteId and study version.
Nested Schema : SubjectVisitVerifyHistoryDto2
Type:
objectVisit verification history for a subject and event including version window, siteId and study version.
Show Source
-
eventId: string
Study event identifierExample:
ADF5A7800A954FA5B831E7B6B9CA39A9 -
eventInstanceNum: integer
(int64)
Instance number of the eventExample:
1 -
siteId: string
Site identifier where the visit verification occurredExample:
SITE001 -
studyVersion: string
Study version stringExample:
3.0.0.1 -
subjectId: string
Subject identifierExample:
93CC828113AC439181071CB44D2C6FE5 -
verifyStatus: string
Verification status of the subject's visit, Example values can be SIGNED, VERIFIED, UNSIGNED, UNVERIFIED, NEVER_SIGNED, NEVER_VERIFIED, VERIFY_REQUIRED, NOT_APPLICABLE, FROZEN, UNFROZEN, NEVER_FROZEN, PARTIAL_SIGNEDExample:
VERIFIED -
versionEnd: string
(date-time)
End of version validity window (exclusive, if present)Example:
2023-01-31T09:00:00Z -
versionSatrt: string
(date-time)
Start of version validity window (inclusive)Example:
2023-01-01T09:00:00Z
Examples