POST api/Note/CardView
Request Information
URI Parameters
None.
Body Parameters
GetNoteCardViewInputModel| Name | Description | Type | Additional 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": "ac2708aa-a243-4b0c-93c2-906c622a94ef",
"UsersList": [
"sample string 1",
"sample string 2"
],
"ReceipientsList": [
"sample string 1",
"sample string 2"
],
"IsCritical": true,
"FromDate": "2026-02-04T20:49:05.2986236-05:00",
"ToDate": "2026-02-04T20:49:05.2986236-05:00",
"LastCreatedDate": "2026-02-04T20:49:05.2986236-05: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>2026-02-04T20:49:05.2986236-05:00</FromDate>
<IsCritical>true</IsCritical>
<LastCreatedDate>2026-02-04T20:49:05.2986236-05: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>ac2708aa-a243-4b0c-93c2-906c622a94ef</SourceTypeId>
<Take>1</Take>
<ToDate>2026-02-04T20:49:05.2986236-05: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":"ac2708aa-a243-4b0c-93c2-906c622a94ef","UsersList":["sample string 1","sample string 2"],"ReceipientsList":["sample string 1","sample string 2"],"IsCritical":true,"FromDate":"2026-02-04T20:49:05.2986236-05:00","ToDate":"2026-02-04T20:49:05.2986236-05:00","LastCreatedDate":"2026-02-04T20:49:05.2986236-05:00","CurrentUserId":6}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml, text/html
Sample:
Sample not available.