GET v2.0/ticket/documentReply/{id}
Создает ответную квитанцию по идентификатору документа и данным машиночитаемой доверенности.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
Идентификатор документа. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Ответная квитанция.
Korus.Eds.Api.DocumentReplyName | Description | Type | Additional information |
---|---|---|---|
Id | integer |
None. |
|
ParentTicketId | integer |
None. |
|
Content | Korus.Eds.Api.FileContent |
None. |
Response Formats
application/json, text/json
Sample:
{ "id": 1, "parentTicketId": 2, "content": { "filename": "sample string 1", "mimeType": "sample string 2", "content": "QEA=" } }
application/xml, text/xml
Sample:
<DocumentReply xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Korus.Eds.Api"> <Content> <Content>QEA=</Content> <Filename>sample string 1</Filename> <MimeType>sample string 2</MimeType> </Content> <Id>1</Id> <ParentTicketId>2</ParentTicketId> </DocumentReply>