POST api/Notification/DismissSPNotification

Request Information

URI Parameters

None.

Body Parameters

DismissSPNotification
NameDescriptionTypeAdditional information
EmployeeId

integer

None.

ListItemId

integer

None.

ListId

globally unique identifier

None.

isDismissed

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "employeeId": 1,
  "listItemId": 2,
  "listId": "8a0ac2ac-cfb6-41d4-97b2-d34bf8f0e5ef",
  "isDismissed": true
}

application/xml, text/xml

Sample:
<DismissSPNotification xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GTI.DW.PeopleProfile.Domain.Models">
  <EmployeeId>1</EmployeeId>
  <ListId>8a0ac2ac-cfb6-41d4-97b2-d34bf8f0e5ef</ListId>
  <ListItemId>2</ListItemId>
  <isDismissed>true</isDismissed>
</DismissSPNotification>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Object

None.

Response Formats

application/json, text/json

Sample:
{}

application/xml, text/xml

Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />