StaffNotificationRecipient
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.
type StaffNotificationRecipient implements Node {
id: ID!
user: User
email: String
active: Boolean
}
Fields
StaffNotificationRecipient.id
● ID!
non-null scalar miscellaneous
The ID of the staff notification recipient.
StaffNotificationRecipient.user
● User
object users
Returns a user subscribed to email notifications.
StaffNotificationRecipient.email
● String
scalar miscellaneous
Returns email address of a user subscribed to email notifications.
StaffNotificationRecipient.active
● Boolean
scalar miscellaneous
Determines if a notification active.
Interfaces
Node
interface miscellaneous
An object with an ID
Member Of
Shop
object ● StaffNotificationRecipientCreate
object ● StaffNotificationRecipientDelete
object ● StaffNotificationRecipientUpdate
object