[Deprecated]: v2.0

get

/ec-site-svc/rest/v2/studies/{studyId}/{mode}/sdfcountry

Compared with v1, this deprecated v2 endpoint supports sdfId and countries filters for SDF-country associations. Use /v5.0/studies/{studyId}/{mode}/sdfcountry for enriched details.

Request

Path Parameters
  • Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).
    Example:
    test
  • Study identifier as a 32-character uppercase hexadecimal UUID string.
    Example:
    C36A3197FDEE433FB5547EE83DE99E4B
Query Parameters
  • Minimum Length: 3
    Maximum Length: 1536
    Pattern: ^([A-Z]{3})(,[A-Z]{3})*$
    Comma-separated list of ISO alpha-3 country codes.
    Example:
    USA
  • Minimum Length: 32
    Maximum Length: 32
    Pattern: ^[A-F0-9]{32}$
    SDF identifier as a 32-character uppercase hexadecimal UUID string.
    Example:
    C36A3197FDEE433FB5547EE83DE99E4B

There's no request body for this operation.

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/query parameters are invalid or the request body fails 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