V1.0

get

/ec-notifications-svc/rest/v1.0/studies/{studyId}/{mode}/notificationsbroadcast/{id}

Retrieves notification broadcast details by notification broadcast ID.

Request

Path Parameters
  • ID of the notification to retrieve (UUID, 32-character uppercase hexadecimal string)
    Example:
    24C9C2B19F1B46ED964CD6653FC10791
  • Mode of the study, accepts: test, active, or training.
    Example:
    active
  • Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the study.
    Example:
    6153170BDE5244A0BB3DF169C4168483

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successfully retrieved broadcast emails. status: success and errorData: null
Body ()
Root Schema : NotificationsDetailResponse
Type: object
Aggregated notification broadcast details combined with notification log metadata
Show Source
Nested Schema : NotificationsBroadcast
Type: object
Notification broadcast record representing a user-targeted notification with audit and delivery metadata
Show Source
Examples

400 Response

Error in request, check the request
Body ()
Root Schema : NotificationResponse
Type: object
Standard wrapper for API responses. Contains the request processing status, the result payload for successful requests, and error details when a request fails.
Show Source
  • Error Response
    Read Only: true
    Standard error body containing code, message and optional details.
  • result
    Read Only: true
    Result payload for the request. The concrete type depends on the endpoint and is described in the corresponding API documentation.
  • Read Only: true
    Allowed Values: [ "success, Failed" ]
    Status of the request processing. SUCCESS indicates the request was processed without errors. Any other value indicates failure.
    Example: success
Nested Schema : Error Response
Type: object
Read Only: true
Standard error body containing code, message and optional details.
Show Source
  • details
    Read Only: true
    Optional additional details about the error for diagnostics.
  • Read Only: true
    Application-specific error code representing the failure reason.
    Example: VALIDATION_ERROR
  • Read Only: true
    Human-readable message describing the error.
    Example: Request payload validation failed
Nested Schema : result
Type: object
Read Only: true
Result payload for the request. The concrete type depends on the endpoint and is described in the corresponding API documentation.
Nested Schema : details
Type: object
Read Only: true
Optional additional details about the error for diagnostics.
Examples

Back to Top