v2.0

get

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

Compared with v1, this version returns region details including associated countries and states.

Request

Path Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation.
Body ()
Root Schema : RegionStatesDto v2.0
Type: object
Title: RegionStatesDto v2.0
Region metadata that lists country and state associations.
Show Source
Nested Schema : RegionCountryStatesDto v2.0
Type: object
Title: RegionCountryStatesDto v2.0
Country and state metadata returned for a region.
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
    Identifier of the country linked to the region.
  • Title: Country Name
    Display name of the country associated with the region.
    Example: United States
  • Title: Region Country ID
    Unique identifier (UUID, 32-character uppercase hexadecimal string) of the region-country association.
  • Title: Reason
    Minimum Length: 0
    Maximum Length: 255
    Reason provided for the audited update.
    Example: Protocol update requested by study operations.
  • Title: State ID
    Identifier of the state associated with the country.
  • Title: State Name
    Name of the state associated with the region.
    Example: California
  • Title: Version Start
    Timestamp when this region-country association version was created.
    Example: 2026-03-17T10:00:00Z
Example:
[
    {
        "countryId":"A0E1B2C3D4E5F67890123456789ABCDE",
        "stateId":"B0C1D2E3F4A567890123456789ABCDEF",
        "stateName":"California"
    }
]
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

403 Response

Returned when the caller is authenticated but does not have permission to access this endpoint.
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