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": "671de092-37bb-4aaa-b3bc-d3b3c107d94e",
  "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>671de092-37bb-4aaa-b3bc-d3b3c107d94e</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/" />