Retrieves the thumbnail image bytes for a document. Returns the raw GIF image data that was previously uploaded via UpdateDocumentThumbnail.
/srv.asmx/GetDocumentThumbnail
/srv.asmx/GetDocumentThumbnail?authenticationTicket=...&documentPath=.../srv.asmx/GetDocumentThumbnail (form data)http://tempuri.org/GetDocumentThumbnail| Parameter | Type | Required | Description |
|---|---|---|---|
authenticationTicket |
string | Yes | Authentication ticket obtained from AuthenticateUser. |
documentPath |
string | Yes | Full infoRouter path of the document (e.g. /Finance/Reports/Q1Summary.pdf). |
Raw GIF image bytes (image/gif). The response body contains the binary thumbnail data with no XML wrapper.
An empty byte array is returned (zero-length response body) when:
There is no XML error envelope — callers should treat a zero-length response as “no thumbnail available”.
The calling user must have read access to the document.
GET /srv.asmx/GetDocumentThumbnail?authenticationTicket=abc123&documentPath=/Finance/Reports/Q1Summary.pdf
POST /srv.asmx/GetDocumentThumbnail HTTP/1.1
Content-Type: application/x-www-form-urlencoded
authenticationTicket=abc123&documentPath=/Finance/Reports/Q1Summary.pdf
ThumbnailExists attribute returned by GetDocument.UpdateDocumentThumbnail.DeleteDocumentThumbnail.ThumbnailExists flag.