> ## Documentation Index
> Fetch the complete documentation index at: https://learn.nexudus.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get one SystemNotification

> Retrieve a single SystemNotification record by its Id.

A **SystemNotification** represents a platform-level notification displayed to administrators, such as billing alerts, integration issues, or system announcements. Notifications have a severity level and message type.

## Authentication

<Note>
  This endpoint requires OAuth2 authentication. Include a valid bearer token in the `Authorization` header.
  The authenticated user must be a full unrestricted administrator or have the **`SystemNotification-Read`** role.
</Note>

## Path Parameters

<ParamField path="id" type="integer" required>
  The Id of the SystemNotification record to retrieve.
</ParamField>

## Code Examples

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET \
    "https://spaces.nexudus.com/api/sys/systemnotifications/87654321" \
    -H "Authorization: Bearer YOUR_TOKEN"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch(
    'https://spaces.nexudus.com/api/sys/systemnotifications/87654321',
    {
      headers: {
        'Authorization': 'Bearer YOUR_TOKEN'
      }
    }
  );

  const record = await response.json();
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      'https://spaces.nexudus.com/api/sys/systemnotifications/87654321',
      headers={
          'Authorization': 'Bearer YOUR_TOKEN'
      }
  )

  record = response.json()
  ```
</CodeGroup>

## Response

### 200

<ResponseField name="Title" type="string">
  The title value for this system notification.
</ResponseField>

<ResponseField name="Severity" type="integer">
  The severity value for this system notification. See `eSystemNotificationSeverity` enum values: `1` = Low, `2` = Medium, `3` = High.
</ResponseField>

<ResponseField name="StartTime" type="string">
  Date/time value for start time.
</ResponseField>

<ResponseField name="PublishOn" type="string">
  Date/time value for publish on.
</ResponseField>

<ResponseField name="UnPublishOn" type="string">
  Date/time value for un publish on.
</ResponseField>

<ResponseField name="ShortDescription" type="string">
  The short description value for this system notification.
</ResponseField>

<ResponseField name="Description" type="string">
  Free-text description of this system notification.
</ResponseField>

<ResponseField name="ResolutionDescription" type="string">
  The resolution description value for this system notification.
</ResponseField>

<ResponseField name="Resolved" type="boolean">
  Whether resolved is enabled.
</ResponseField>

<ResponseField name="ResolvedOn" type="string">
  Date/time value for resolved on.
</ResponseField>

<ResponseField name="DisplayToAdmins" type="boolean">
  Whether display to admins is enabled.
</ResponseField>

<ResponseField name="DisplayToSettingIntegrations" type="string">
  The display to setting integrations value for this system notification.
</ResponseField>

<ResponseField name="DisplayToSettingGeneral" type="string">
  The display to setting general value for this system notification.
</ResponseField>

<ResponseField name="DisplayToPortalVersion" type="string">
  The display to portal version value for this system notification.
</ResponseField>

<ResponseField name="ApprovedBy" type="string">
  The approved by value for this system notification.
</ResponseField>

<ResponseField name="ApprovedOn" type="string">
  Date/time value for approved on.
</ResponseField>

<ResponseField name="MessageType" type="integer">
  The message type value for this system notification. See `eSystemNotificationMessageType` enum values: `1` = Issue, `2` = Announcement.
</ResponseField>

<ResponseField name="HasButton" type="boolean">
  Whether has button is enabled.
</ResponseField>

<ResponseField name="ButtonLabel" type="string">
  The button label value for this system notification.
</ResponseField>

<ResponseField name="ButtonUrl" type="string">
  The button url value for this system notification.
</ResponseField>

<ResponseField name="Id" type="integer">
  Unique record identifier.
</ResponseField>

<ResponseField name="UniqueId" type="string">
  UUID of the record.
</ResponseField>

<ResponseField name="CreatedOn" type="string">
  Date and time the record was created (ISO 8601).
</ResponseField>

<ResponseField name="UpdatedOn" type="string">
  Date and time the record was last updated (ISO 8601).
</ResponseField>

<ResponseField name="UpdatedBy" type="string">
  Email of the user who last updated this record.
</ResponseField>

<ResponseField name="IsNew" type="boolean">
  Whether the record was recently created.
</ResponseField>

<ResponseField name="SystemId" type="string">
  External system identifier.
</ResponseField>

```json Example Response theme={null}
{
  "Title": "",
  "Severity": 0,
  "StartTime": "2025-01-15T10:30:00Z",
  "PublishOn": null,
  "UnPublishOn": null,
  "ShortDescription": "",
  "Description": "",
  "ResolutionDescription": null,
  "Resolved": false,
  "ResolvedOn": null,
  "DisplayToAdmins": false,
  "DisplayToSettingIntegrations": null,
  "DisplayToSettingGeneral": null,
  "DisplayToPortalVersion": null,
  "ApprovedBy": null,
  "ApprovedOn": null,
  "MessageType": 0,
  "HasButton": false,
  "ButtonLabel": null,
  "ButtonUrl": null,
  "Id": 87654321,
  "UpdatedOn": "2025-01-15T10:30:00Z",
  "CreatedOn": "2025-01-10T08:00:00Z",
  "UniqueId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "UpdatedBy": "admin@example.com",
  "IsNew": false,
  "SystemId": null,
  "ToStringText": "SystemNotification Example",
  "LocalizationDetails": null,
  "CustomFields": null
}
```
