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
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
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