v1.0

put

/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/sdfs/{sdfType}/status

Updates SDF (site or depot) status for a particular study ID and mode ID.

Request

Path Parameters
  • Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).
    Example:
    test
  • SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).
    Example:
    site
  • Study identifier as a 32-character uppercase hexadecimal UUID string.
    Example:
    C36A3197FDEE433FB5547EE83DE99E4B
Supported Media Types
Request Body - application/json ()
Root Schema : schema
Type: object
Show Source
Nested Schema : sdfStatuses
Type: array
Show Source
Example:
[
    "ACTIVE"
]
Nested Schema : SDFUpdateStatusDto
Type: object
Show Source
Example:
[
    "ACTIVE"
]
Examples

Back to Top

Response

Supported Media Types

200 Response

Successful operation.
Body ()
Root Schema : SDFUpdateStatusResponse
Type: object
Show Source
Nested Schema : sdfstatuses
Type: array
Show Source
Example:
[{\"sdfId\":\"B1B8327AFAA6412287106192AB5984EF\",\"statusId\":\"B1B8327AFAA6412287106192AB5984EF\",\"versionStart\":\"2026-01-15T10:30:00Z\"}]
Nested Schema : SDFUpdateStatusDto
Type: object
Show Source
Example:
[
    "ACTIVE"
]
Examples

400 Response

Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.
Body ()
Root Schema : SDFResponse
Type: object
Title: SDFResponse
Wrapper for service responses containing result or error data.
Show Source
Nested Schema : ErrorResponseData
Type: object
Show Source
Nested Schema : result
Type: object
The result object for successful requests. Type depends on the API operation.
Example:
{
    "hasMore":"true",
    "totalResults":5,
    "count":5,
    "data":[
    ]
}
Nested Schema : details
Type: object
Examples

Back to Top