V1.0

get

/ec-designer-svc/rest/v1.0/studies/welcome

Retrieves the welcome message for the requested study. When no study-level message exists, the response returns the tenant-level message or the system default text.

Request

Path Parameters
Query Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation.
Body ()
Root Schema : Welcome Response v1.0
Type: object
Title: Welcome Response v1.0
Welcome message returned by the Welcome APIs.
Show Source
  • Minimum Length: 32
    Maximum Length: 32
    Pattern: ^[0-9A-F]{32}$
    Welcome message ID. UUID, 32-character uppercase hexadecimal string. Optional in requests and returned when a stored welcome message exists.
  • Maximum Length: 4000
    Welcome message text displayed to users. Optional; maximum 4000 characters. For update requests, a blank value removes the existing message.
    Example: Welcome to Clinical One
Example:
{
    "id":"B1B8327AFAA6412287106192AB5984EF",
    "stringValue":"Welcome to Clinical One"
}
Examples

400 Response

Bad request.
Body ()
Root Schema : ErrorResponseData
Type: object
Title: ErrorResponseData
Error Response Details Information
Show Source
  • Object
    Title: Object
    Object with error details information.
  • Error code which is stored in ErrorCode enum. Example : C1-003
    Example: C1-003
  • Error message which is stored in service property file. Example : Cannot modify object after a study version has been approved
    Example: Cannot modify object after a study version has been approved
Nested Schema : Object
Type: object
Title: Object
Object with error details information.
Example:
{
    "field":"studyId",
    "reason":"Invalid value"
}

500 Response

Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.
Body ()
Root Schema : ErrorResponseData
Type: object
Title: ErrorResponseData
Error Response Details Information
Show Source
  • Object
    Title: Object
    Object with error details information.
  • Error code which is stored in ErrorCode enum. Example : C1-003
    Example: C1-003
  • Error message which is stored in service property file. Example : Cannot modify object after a study version has been approved
    Example: Cannot modify object after a study version has been approved
Nested Schema : Object
Type: object
Title: Object
Object with error details information.
Example:
{
    "field":"studyId",
    "reason":"Invalid value"
}
Back to Top