spo eventreceiver get
Retrieves specific event receiver for the specified web, site or list by event receiver name or id.
Usage
m365 spo eventreceiver get [options]
Options
-u, --webUrl <webUrl>
The URL of the web for which to retrieve the event receivers.
--listTitle [listTitle]
The title of the list for which to retrieve the event receivers, if the event receivers should be retrieved from a list. Specify either
listTitle
,listId
orlistUrl
.--listId [listId]
The id of the list for which to retrieve the event receivers, if the event receivers should be retrieved from a list. Specify either
listTitle
,listId
orlistUrl
.--listUrl [listUrl]
The url of the list for which to retrieve the event receivers, if the event receivers should be retrieved from a list. Specify either
listTitle
,listId
orlistUrl
.-n, --name [name]
The name of the event receiver to retrieve. Specify either
name
orid
but not both.-i, --id [id]
The id of the event receiver to retrieve. Specify either
name
orid
but not both.-s, --scope [scope]
The scope of which to retrieve the event receivers. Can be either
site
orweb
. Defaults toweb
. Only applicable when not specifying any of the list properties.
-h, --help [help]
Output usage information. Optionally, specify which section of command's help you want to see. Allowed values are
options
,examples
,remarks
,response
,full
. Default isoptions
.--query [query]
JMESPath query string. See http://jmespath.org/ for more information and examples.
-o, --output [output]
Output type.
json
,text
,csv
,md
,none
. Defaultjson
.--verbose
Runs command with verbose logging.
--debug
Runs command with debug logging.
Examples
Retrieve an event receiver with the given name in the specified site.
m365 spo eventreceiver get --webUrl https://contoso.sharepoint.com/sites/contoso-sales --name 'PnP Test Receiver'
Retrieve an event receiver with the given id in the specified site.
m365 spo eventreceiver get --webUrl https://contoso.sharepoint.com/sites/contoso-sales --scope site --id c5a6444a-9c7f-4a0d-9e29-fc6fe30e34ec
Retrieve an event receiver with the given name for a list with the given title in the specified site.
m365 spo eventreceiver get --webUrl https://contoso.sharepoint.com/sites/contoso-sales --listTitle Events --name 'PnP Test Receiver'
Retrieve an event receiver with the given id for a list with the given ID in the specified site.
m365 spo eventreceiver get --webUrl https://contoso.sharepoint.com/sites/contoso-sales --listId '202b8199-b9de-43fd-9737-7f213f51c991' --id c5a6444a-9c7f-4a0d-9e29-fc6fe30e34ec
Retrieve an event receiver with the given name for a list with the given url in the specified site.
m365 spo eventreceiver get --webUrl https://contoso.sharepoint.com/sites/contoso-sales --listUrl '/sites/contoso-sales/lists/Events' --name 'PnP Test Receiver'
Response
- JSON
- Text
- CSV
- Markdown
{
"ReceiverAssembly": "Microsoft.Office.Server.UserProfiles, Version=16.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c",
"ReceiverClass": "Microsoft.Office.Server.UserProfiles.ContentFollowingWebEventReceiver",
"ReceiverId": "c5a6444a-9c7f-4a0d-9e29-fc6fe30e34ec",
"ReceiverName": "PnP Test Receiver",
"SequenceNumber": 10000,
"Synchronization": 2,
"EventType": 10204,
"ReceiverUrl": "https://northeurope1-0.pushnp.svc.ms/notifications?token=b4c0def2-a5ea-490a-bb85-c2e423b1384b"
}
EventType : 10204
ReceiverAssembly: Microsoft.Office.Server.UserProfiles, Version=16.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c
ReceiverClass : Microsoft.Office.Server.UserProfiles.ContentFollowingWebEventReceiver
ReceiverId : c5a6444a-9c7f-4a0d-9e29-fc6fe30e34ec
ReceiverName : PnP Test Receiver
ReceiverUrl : https://northeurope1-0.pushnp.svc.ms/notifications?token=b4c0def2-a5ea-490a-bb85-c2e423b1384b
SequenceNumber : 10000
Synchronization : 2
ReceiverAssembly,ReceiverClass,ReceiverId,ReceiverName,SequenceNumber,Synchronization,EventType,ReceiverUrl
"Microsoft.Office.Server.UserProfiles, Version=16.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c",Microsoft.Office.Server.UserProfiles.ContentFollowingWebEventReceiver,c5a6444a-9c7f-4a0d-9e29-fc6fe30e34ec,PnP Test Receiver,10000,2,10204,https://northeurope1-0.pushnp.svc.ms/notifications?token=b4c0def2-a5ea-490a-bb85-c2e423b1384b
# spo eventreceiver get --webUrl "https://contoso.sharepoint.com/sites/contoso-sales" --id "c5a6444a-9c7f-4a0d-9e29-fc6fe30e34ec"
Date: 10/2/2023
Property | Value
---------|-------
ReceiverAssembly | Microsoft.Office.Server.UserProfiles, Version=16.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c
ReceiverClass | Microsoft.Office.Server.UserProfiles.ContentFollowingWebEventReceiver
ReceiverId | c5a6444a-9c7f-4a0d-9e29-fc6fe30e34ec
ReceiverName | PnP Test Receiver
SequenceNumber | 10000
Synchronization | 2
EventType | 10204