> Documentation index: [Saleor](/llms.txt) · [This section](/api-reference/miscellaneous/llms.txt)
> Source: https://docs.saleor.io/api-reference/miscellaneous/objects/staff-notification-recipient

# StaffNotificationRecipient Object

Represents a recipient of email notifications send by Saleor, such as notifications about new orders. Notifications can be assigned to staff users or arbitrary email addresses.

```graphql
type StaffNotificationRecipient implements Node {
  id: ID!
  user: User
  email: String
  active: Boolean
}
```

<a id="fields"></a>

### Fields

<a id="id"></a>

#### [`id`](#id) ● [`ID!`](/api-reference/miscellaneous/scalars/id.md)

The ID of the staff notification recipient.

<a id="user"></a>

#### [`user`](#user) ● [`User`](/api-reference/users/objects/user.md)

Returns a user subscribed to email notifications.

<a id="email"></a>

#### [`email`](#email) ● [`String`](/api-reference/miscellaneous/scalars/string.md)

Returns email address of a user subscribed to email notifications.

<a id="active"></a>

#### [`active`](#active) ● [`Boolean`](/api-reference/miscellaneous/scalars/boolean.md)

Determines if a notification active.

<a id="interfaces"></a>

### Interfaces

<a id="node"></a>

#### [`Node`](/api-reference/miscellaneous/interfaces/node.md)

An object with an ID

<a id="member-of"></a>

### Member Of

[`Shop`](/api-reference/miscellaneous/objects/shop.md) object  ● [`StaffNotificationRecipientCreate`](/api-reference/users/objects/staff-notification-recipient-create.md) object  ● [`StaffNotificationRecipientDelete`](/api-reference/users/objects/staff-notification-recipient-delete.md) object  ● [`StaffNotificationRecipientUpdate`](/api-reference/users/objects/staff-notification-recipient-update.md) object
