V1.0

put

/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/unsign-unverify

Removes signature or verification from the specified set of subjects. Request body contains the set of subject IDs and optional reason and comment.

Request

Path Parameters
  • 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:
    3F2504E04F8911D39A0C0305E82C3301
Supported Media Types
Request Body - application/json ()
Root Schema : schema
Type: object
DTO to request the unsign and/or unverify operations on one or more subjects.
Show Source
  • Additional comments for the operation.
    Example: Investigator request for subject data change
  • Reason for the unsign/unverify action.
    Example: Audit requirement for unsigning
  • subjects
    Unique Items Required: true
    List of Unique Identifier(UUID, 32-character uppercase hexadecimal string) representing Subjects.
Example:
{
    "subjects":[
        "6D5E607D3E644F1DB8FFC4BCCEA48FFE",
        "2A2E107D3E644F1DB8FFC4BCCEA48ABC"
    ],
    "reason":"Audit requirement for unsigning",
    "comment":"Investigator request for subject data change"
}
Nested Schema : subjects
Type: array
Unique Items Required: true
List of Unique Identifier(UUID, 32-character uppercase hexadecimal string) representing Subjects.
Show Source
  • List of Unique Identifier(UUID, 32-character uppercase hexadecimal string) representing Subjects.
Example:
[
    "6D5E607D3E644F1DB8FFC4BCCEA48FFE",
    "2A2E107D3E644F1DB8FFC4BCCEA48ABC"
]
Back to Top

Response

Supported Media Types

200 Response

Success
Body ()
Root Schema : schema
Type: array
Show Source
Nested Schema : UnsignUnverifyResponse
Type: object
Show Source
  • List of Unique Identifier(UUID, 32-character uppercase hexadecimal string) representing Subjects.
    Example: ["2C3F40649C654D0F995A7FDBBCEA4FAB"]
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