POST v2.0/ticket/unreplied
Возвращает список неотвеченных квитанций.
Request Information
URI Parameters
None.
Body Parameters
Фильтр квитанций.
Korus.Eds.Api.TicketFilter| Name | Description | Type | Additional information |
|---|---|---|---|
| ParticipantId | integer |
None. |
|
| DocumentTypeId | integer |
None. |
|
| DocumentNumber | string |
None. |
|
| From | date |
None. |
|
| To | date |
None. |
|
| Query | string |
None. |
|
| Skip | integer |
None. |
|
| Take | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"participantId": 1,
"documentTypeId": 1,
"documentNumber": "sample string 1",
"from": "2025-11-01T20:53:29.4604467+03:00",
"to": "2025-11-01T20:53:29.4604467+03:00",
"query": "sample string 2",
"skip": 3,
"take": 4
}
application/xml, text/xml
Sample:
<TicketFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Korus.Eds.Api"> <DocumentNumber>sample string 1</DocumentNumber> <DocumentTypeId>1</DocumentTypeId> <From>2025-11-01T20:53:29.4604467+03:00</From> <ParticipantId>1</ParticipantId> <Query>sample string 2</Query> <Skip>3</Skip> <Take>4</Take> <To>2025-11-01T20:53:29.4604467+03:00</To> </TicketFilter>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Список неотвеченных квитанций.
Korus.Eds.Api.PagedResultOfKorus.Eds.Api.TicketInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| Result | Collection of Korus.Eds.Api.TicketInfo |
None. |
|
| Total | integer |
None. |
|
| Take | integer |
None. |
|
| Skip | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"result": [
{
"id": 1,
"documentId": 1,
"uuid": "sample string 2",
"parentUuid": "sample string 3",
"direction": 0,
"type": 1,
"extendedType": 0,
"date": "2025-11-01T20:53:29.4604467+03:00",
"filename": "sample string 5",
"documentTypeName": "sample string 6",
"documentDescription": "sample string 7",
"senderType": "sample string 8",
"senderName": "sample string 9",
"replyType": 1,
"replyDocumentTypeName": "sample string 10",
"replyExtendedType": 0,
"status": 0,
"replyExtendedTypeName": "sample string 11"
},
{
"id": 1,
"documentId": 1,
"uuid": "sample string 2",
"parentUuid": "sample string 3",
"direction": 0,
"type": 1,
"extendedType": 0,
"date": "2025-11-01T20:53:29.4604467+03:00",
"filename": "sample string 5",
"documentTypeName": "sample string 6",
"documentDescription": "sample string 7",
"senderType": "sample string 8",
"senderName": "sample string 9",
"replyType": 1,
"replyDocumentTypeName": "sample string 10",
"replyExtendedType": 0,
"status": 0,
"replyExtendedTypeName": "sample string 11"
}
],
"total": 1,
"take": 2,
"skip": 3
}
application/xml, text/xml
Sample:
<PagedResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Korus.Eds.Api">
<Result>
<TicketInfo>
<Date>2025-11-01T20:53:29.4604467+03:00</Date>
<Direction>In</Direction>
<DocumentDescription>sample string 7</DocumentDescription>
<DocumentId>1</DocumentId>
<DocumentTypeName>sample string 6</DocumentTypeName>
<ExtendedType>Undefined</ExtendedType>
<Filename>sample string 5</Filename>
<Id>1</Id>
<ParentUuid>sample string 3</ParentUuid>
<ReplyDocumentTypeName>sample string 10</ReplyDocumentTypeName>
<ReplyExtendedType>Undefined</ReplyExtendedType>
<ReplyExtendedTypeName>sample string 11</ReplyExtendedTypeName>
<ReplyType>ReceiveNotice</ReplyType>
<SenderName>sample string 9</SenderName>
<SenderType>sample string 8</SenderType>
<Status>None</Status>
<Type>ReceiveNotice</Type>
<Uuid>sample string 2</Uuid>
</TicketInfo>
<TicketInfo>
<Date>2025-11-01T20:53:29.4604467+03:00</Date>
<Direction>In</Direction>
<DocumentDescription>sample string 7</DocumentDescription>
<DocumentId>1</DocumentId>
<DocumentTypeName>sample string 6</DocumentTypeName>
<ExtendedType>Undefined</ExtendedType>
<Filename>sample string 5</Filename>
<Id>1</Id>
<ParentUuid>sample string 3</ParentUuid>
<ReplyDocumentTypeName>sample string 10</ReplyDocumentTypeName>
<ReplyExtendedType>Undefined</ReplyExtendedType>
<ReplyExtendedTypeName>sample string 11</ReplyExtendedTypeName>
<ReplyType>ReceiveNotice</ReplyType>
<SenderName>sample string 9</SenderName>
<SenderType>sample string 8</SenderType>
<Status>None</Status>
<Type>ReceiveNotice</Type>
<Uuid>sample string 2</Uuid>
</TicketInfo>
</Result>
<Skip>3</Skip>
<Take>2</Take>
<Total>1</Total>
</PagedResult>