[Deprecated]: v1.0

post

/ec-site-svc/rest/v1/studies/{studyId}/{mode}/sdfs/{sdfId}/property

Deprecated in v1: use the latest SDF API version.

Request

Path Parameters
  • Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).
    Example:
    test
  • Required path parameter. SDF identifier to update. Accepted length: 32 to 36 characters.
    Example:
    C36A3197FDEE433FB5547EE83DE99E4B
  • Study identifier as a 32-character uppercase hexadecimal UUID string.
    Example:
    C36A3197FDEE433FB5547EE83DE99E4B
Supported Media Types
Request Body - application/json ()
Root Schema : SDFCreatePropertyRequest v1.0
Type: object
Title: SDFCreatePropertyRequest v1.0
Request payload that wraps multiple SDF properties.
Show Source
Nested Schema : SDFPropertyDto v1.0
Type: object
Title: SDFPropertyDto v1.0
Property metadata attached to an SDF.
Show Source
  • Title: Comment
    Minimum Length: 0
    Maximum Length: 2048
    Additional comment captured for the audited update.
    Example: Association adjusted after data reconciliation.
  • Title: SDF Property ID
    Unique identifier (UUID, 32-character uppercase hexadecimal string) of the property entry.
  • Title: Property Name
    Minimum Length: 0
    Maximum Length: 100
    Key identifying the property.
    Example: PRIMARY_CONTACT
  • Title: Property Value
    Minimum Length: 0
    Maximum Length: 100
    Value stored for the property.
    Example: ACTIVE
  • Title: Reason
    Minimum Length: 0
    Maximum Length: 255
    Reason provided for the audited update.
    Example: Protocol update requested by study operations.
  • Title: SDF ID
    Identifier of the SDF the property belongs to.
Example:
[
    {
        "propertyName":"PRIMARY_CONTACT",
        "propertyValue":"ACTIVE"
    }
]
Examples

Back to Top

Response

Supported Media Types

200 Response

Successful operation.
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

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