v2.0

put

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

Compared with v1, this version updates both country and state associations for the region.

Request

Path Parameters
Supported Media Types
Request Body - application/json ()
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

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

Invalid region, country, or state ID or the association already exists in another region.
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