POST Documents/MarkAsRead

Request Information

URI Parameters

None.

Body Parameters

EmployeeInfo
NameDescriptionTypeAdditional information
EmployeeID

string

None.

EmployeeName

string

None.

EmployeeUserID

string

None.

EmployeeAzureID

string

None.

ListDocumentsIDs

Collection of integer

None.

Request Formats

application/json, text/json

Sample:
{
  "EmployeeID": "sample string 1",
  "EmployeeName": "sample string 2",
  "EmployeeUserID": "sample string 3",
  "EmployeeAzureID": "sample string 4",
  "ListDocumentsIDs": [
    1,
    2
  ]
}

application/xml, text/xml

Sample:
<EmployeeInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CubesApi.Models">
  <EmployeeAzureID>sample string 4</EmployeeAzureID>
  <EmployeeID>sample string 1</EmployeeID>
  <EmployeeName>sample string 2</EmployeeName>
  <EmployeeUserID>sample string 3</EmployeeUserID>
  <ListDocumentsIDs xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:long>1</d2p1:long>
    <d2p1:long>2</d2p1:long>
  </ListDocumentsIDs>
</EmployeeInfo>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'EmployeeInfo'.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>