v4.0

get

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

Compared with v3, this version adds pagination (limit and offset) and optional history retrieval.

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
  • Comma-separated list of ISO alpha-3 country codes.
  • Maximum number of rows to return. Only non-negative integers are accepted.
  • Zero-based row index to start pagination. Only non-negative integers are accepted.
  • SDF identifier as a 32-character uppercase hexadecimal UUID string.

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation.
Body ()
Root Schema : SDFCountriesResponse v2.0
Type: object
Title: SDFCountriesResponse v2.0
Response containing ISO3-based country/SDF associations.
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":"A0E1B2C3D4E5F67890123456789ABCDE",
        "versionStart":"2025-03-16T12:00:00.000Z",
        "isoCode":"US",
        "name":"United States",
        "isoCode3":"USA"
    }
]
Nested Schema : SDFCountryDto v1.0
Type: object
Title: SDFCountryDto v1.0
SDF-country association details returned by the 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 identifier of the country linked to the SDF (UUID, 32-character uppercase hexadecimal string).
  • Title: SDF Country ID
    Unique identifier for the SDF-country association (UUID, 32-character uppercase hexadecimal string).
  • Title: Primary Supply
    Minimum Length: 0
    Maximum Length: 10
    Primary supply type for the SDF-country association.
    Example: PRIMARY
  • Title: Reason
    Minimum Length: 0
    Maximum Length: 255
    Reason provided for the audited update.
    Example: Protocol update requested by study operations.
  • Title: SDF ID
    Unique SDF identifier (UUID, 32-character uppercase hexadecimal string).
  • Title: Version Start
    Timestamp when this association version was created.
    Example: 2025-03-16T12:00:00Z
Example:
[
    {
        "id":"3F2504E04F8911D39A0C0305E82C3301",
        "versionStart":"2025-03-16T12:00:00.000Z",
        "countryId":"A0E1B2C3D4E5F67890123456789ABCDE",
        "sdfId":"9C10C9F402C44BD6A7CFC7F4F1A6EED8",
        "primarySupply":"PRIMARY"
    }
]
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