POST api/Note/CardView

Request Information

URI Parameters

None.

Body Parameters

GetNoteCardViewInputModel
NameDescriptionTypeAdditional information
Take

integer

None.

Skip

integer

None.

SourceType

integer

None.

SourceTypeId

globally unique identifier

None.

UsersList

Collection of string

None.

ReceipientsList

Collection of string

None.

IsCritical

boolean

None.

FromDate

date

None.

ToDate

date

None.

LastCreatedDate

date

None.

CurrentUserId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Take": 1,
  "Skip": 2,
  "SourceType": 3,
  "SourceTypeId": "97b6ff22-f67d-4173-8417-913d16028503",
  "UsersList": [
    "sample string 1",
    "sample string 2"
  ],
  "ReceipientsList": [
    "sample string 1",
    "sample string 2"
  ],
  "IsCritical": true,
  "FromDate": "2025-08-02T14:09:37.6925927-04:00",
  "ToDate": "2025-08-02T14:09:37.6925927-04:00",
  "LastCreatedDate": "2025-08-02T14:09:37.6925927-04:00",
  "CurrentUserId": 6
}

application/xml, text/xml

Sample:
<GetNoteCardViewInputModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cyzerg.Model.WMS.InputOutputModels">
  <CurrentUserId>6</CurrentUserId>
  <FromDate>2025-08-02T14:09:37.6925927-04:00</FromDate>
  <IsCritical>true</IsCritical>
  <LastCreatedDate>2025-08-02T14:09:37.6925927-04:00</LastCreatedDate>
  <ReceipientsList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </ReceipientsList>
  <Skip>2</Skip>
  <SourceType>3</SourceType>
  <SourceTypeId>97b6ff22-f67d-4173-8417-913d16028503</SourceTypeId>
  <Take>1</Take>
  <ToDate>2025-08-02T14:09:37.6925927-04:00</ToDate>
  <UsersList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </UsersList>
</GetNoteCardViewInputModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

text/html

Sample:
{"Take":1,"Skip":2,"SourceType":3,"SourceTypeId":"97b6ff22-f67d-4173-8417-913d16028503","UsersList":["sample string 1","sample string 2"],"ReceipientsList":["sample string 1","sample string 2"],"IsCritical":true,"FromDate":"2025-08-02T14:09:37.6925927-04:00","ToDate":"2025-08-02T14:09:37.6925927-04:00","LastCreatedDate":"2025-08-02T14:09:37.6925927-04:00","CurrentUserId":6}

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml, text/html

Sample:

Sample not available.