GET api/arciveApi/getdocinfo?docid={docid}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| docid | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
retDocInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| State | integer |
None. |
|
| Message | string |
None. |
|
| doc | docInfo |
None. |
|
| imglst | Collection of imageInfo |
None. |
Response Formats
application/json, text/json
Sample:
{
"doc": {
"doccode": 1,
"docmaintype": 2,
"subject": "sample string 3",
"securityLevel": 4,
"doctype": 5,
"docfrom": 6,
"owner": 7,
"state": 8,
"printeddate": "sample string 9",
"printedno": "sample string 10",
"docdate": "2025-12-11T08:36:26.6499279-06:00",
"sendtols": [
{
"sidecode": 1,
"sendtype": 2
},
{
"sidecode": 1,
"sendtype": 2
}
]
},
"imglst": [
{
"imdata": "QEA=",
"ext": "sample string 1",
"filetype": 2,
"imageid": 3,
"filname": "sample string 4"
},
{
"imdata": "QEA=",
"ext": "sample string 1",
"filetype": 2,
"imageid": 3,
"filname": "sample string 4"
}
],
"State": 1,
"Message": "sample string 2"
}
application/xml, text/xml
Sample:
<retDocInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/avapi">
<Message>sample string 2</Message>
<State>1</State>
<doc>
<doccode>1</doccode>
<docdate>2025-12-11T08:36:26.6499279-06:00</docdate>
<docfrom>6</docfrom>
<docmaintype>2</docmaintype>
<doctype>5</doctype>
<owner>7</owner>
<printeddate>sample string 9</printeddate>
<printedno>sample string 10</printedno>
<securityLevel>4</securityLevel>
<sendtols>
<_sendto>
<sendtype>2</sendtype>
<sidecode>1</sidecode>
</_sendto>
<_sendto>
<sendtype>2</sendtype>
<sidecode>1</sidecode>
</_sendto>
</sendtols>
<state>8</state>
<subject>sample string 3</subject>
</doc>
<imglst>
<imageInfo>
<ext>sample string 1</ext>
<filetype>2</filetype>
<filname>sample string 4</filname>
<imageid>3</imageid>
<imdata>QEA=</imdata>
</imageInfo>
<imageInfo>
<ext>sample string 1</ext>
<filetype>2</filetype>
<filname>sample string 4</filname>
<imageid>3</imageid>
<imdata>QEA=</imdata>
</imageInfo>
</imglst>
</retDocInfo>