v1.0

get

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

Retrieves site or depot details for a study using filter parameters. If sdfType is ALL, both sites and depots are returned; if SITE or DEPOT, only that type is returned.

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
Query Parameters
  • Minimum Length: 2
    Maximum Length: 1024
    Pattern: ^([A-Z]{2})(,[A-Z]{2})*$
    Comma-separated list of ISO alpha-2 country codes.
    Example:
    US
  • Minimum Length: 32
    Maximum Length: 32
    Pattern: ^[A-F0-9]{32}$
    Country identifier as a 32-character uppercase hexadecimal UUID string.
    Example:
    C36A3197FDEE433FB5547EE83DE99E4B
  • Retrieve extended properties for site only if the excludeExtendedProperties flag is false.
    Allowed Values: [ "true", "false" ]
    Example:
    false
  • Minimum Value: 0
    Maximum Value: 1000
    Maximum number of rows to return. Only non-negative integers are accepted.
    Example:
    50
  • Minimum Length: 1
    Maximum Length: 255
    Name search filter for site.
    Example:
    Site A
  • Minimum Value: 0
    Zero-based row index to start pagination. Only non-negative integers are accepted.
    Example:
    0
  • Optional query parameter. Sort direction for returned rows. Allowed values: asc, desc, ASC, DESC.
    Allowed Values: [ "ASC", "DESC", "asc", "desc" ]
    Example:
    DESC
  • SDF status filter. Allowed values: ACTIVE (available), NEW (newly created), RESTRICTED (limited use), DISBARRED (blocked), DECEASED (closed), RETIRED (inactive).
    Allowed Values: [ "ACTIVE", "NEW", "RESTRICTED", "DISBARRED", "DECEASED", "RETIRED" ]
    Example:
    ACTIVE
  • Minimum Length: 1
    Maximum Length: 20
    Pattern: ^[0-9]+$
    Study version filter for sites or depots. Accepts non-negative integer version numbers.
    Example:
    1
  • Minimum Length: 32
    Maximum Length: 32
    Pattern: ^[A-F0-9]{32}$
    Supply Country ID.
    Example:
    C36A3197FDEE433FB5547EE83DE99E4B

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation.
Body ()
Root Schema : SDFsPaginatedResponse v2.0
Type: object
Title: SDFsPaginatedResponse v2.0
Paginated response wrapper used by CTMS/SDF endpoints.
Show Source
Nested Schema : SDFsPaginatedResponse v2.0
Type: object
Title: SDFsPaginatedResponse v2.0
Payload of the paginated response.
Example:
{
}
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
Title: ErrorResponseData
Error Response Details Information
Show Source
  • Object
    Title: Object
    Object with error details information.
  • Error code which is stored in ErrorCode enum. Example : C1-003
    Example: C1-003
  • Error message which is stored in service property file. Example : Cannot modify object after a study version has been approved
    Example: Cannot modify object after a study version has been approved
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 : Object
Type: object
Title: Object
Object with error details information.
Example:
{
    "field":"studyId",
    "reason":"Invalid value"
}
Examples

Back to Top