[Deprecated]: V1

get

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

Deprecated: Retrieves all transfers for a study based on the study mode.
Rights: DataCaptureSubjectTransferGet.

Request

Path Parameters

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 : SubjectTransfer
Type: object
Represents a subject transfer between sites, including identifiers and audit metadata.
Show Source
  • Minimum Length: 0
    Maximum Length: 2048
    Comment regarding the last change made to the entity.
    Example: Imported via migration tool.
  • Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the clinical site the subject is transferred from.
    Example: 938D23FA6B7241CCA41BD627E5DB60DA
  • Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the subject transfer record.
    Example: A1B2C3D4E5F64789AABBCCDDEEFF1122
  • Minimum Length: 1
    Maximum Length: 16
    Operation type on the record, can have values CREATED, MODIFIED or REMOVED
    Example: REMOVED
  • Randomization number associated with the subject, if assigned.
    Example: RANDOM123
  • Minimum Length: 0
    Maximum Length: 255
    Reason for the entity creation or latest modification.
    Example: Initial import.
  • Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the subject involved in the transfer.
    Example: 1BC29B36F5D64B1B95F4BDBBCEA481BE
  • Minimum Length: 0
    Maximum Length: 500
    Subject number before transfer.
    Example: SUBJ-0001
  • Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the clinical site the subject is transferred to.
    Example: 699EF3745FC545589F186D2198F3C65E
  • Timestamp representing the start of the version for this record.
    Example: 2023-01-01T09:00:00Z
Example:
{
    "id":"A1B2C3D4E5F64789AABBCCDDEEFF1122",
    "versionStart":"2023-01-01T09:00:00Z",
    "subjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
    "subjectNumber":"SUBJ-0001",
    "newSubjectNumber":"SUBJ-0001-NEW",
    "fromSiteId":"938D23FA6B7241CCA41BD627E5DB60DA",
    "toSiteId":"699EF3745FC545589F186D2198F3C65E",
    "randomizationNumber":"RANDOM123",
    "reason":"Site change",
    "comment":"Transferred due to site closure"
}

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