[Deprecated]: v2.0

get

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

Deprecated: Compared with v1, this version uses ISO alpha-3 (isoCode3) filters instead of ISO alpha-2 (isoCode).

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

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation.
Body ()
Root Schema : CountriesResponse v2.0
Type: object
Title: CountriesResponse v2.0
Response wrapping the ISO3-based country list.
Show Source
Nested Schema : CountryDto2 v2.0
Type: object
Title: CountryDto2 v2.0
Country metadata for ISO3-enabled APIs.
Show Source
  • Title: Comment
    Minimum Length: 0
    Maximum Length: 2048
    Additional comment captured for the audited update.
    Example: Association adjusted after data reconciliation.
  • Title: Country ID
    Unique country identifier (UUID, 32-character uppercase hexadecimal string).
  • Title: ISO Code
    Minimum Length: 1
    Maximum Length: 10
    Alpha-2 ISO code identifying the country.
    Example: US
  • Title: ISO Code 3
    Minimum Length: 1
    Maximum Length: 10
    Alpha-3 ISO code identifying the country.
    Example: USA
  • Title: Country Name
    Minimum Length: 1
    Maximum Length: 100
    Official country name.
    Example: United States
  • Title: Reason
    Minimum Length: 0
    Maximum Length: 255
    Reason provided for the audited update.
    Example: Protocol update requested by study operations.
  • Title: Version Start
    Timestamp when this country version was created.
    Example: 2025-03-16T12:00:00Z
Example:
[
    {
        "id":"3F2504E04F8911D39A0C0305E82C3301",
        "versionStart":"2025-03-16T12:00:00.000Z",
        "isoCode":"US",
        "name":"United States",
        "isoCode3":"USA"
    }
]
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