Method GetDocumentCurrentFulltext
GetDocumentCurrentFulltext(String, String)
Gets the currently saved fulltext from database
Declaration
string GetDocumentCurrentFulltext(string connectionId, string documentId)
Parameters
Type | Name | Description |
---|---|---|
System.String | connectionId | The connection id to identify your connection. See also ConnectionId |
System.String | documentId | The document id. See also Id |
Returns
Type | Description |
---|---|
System.String | The document current fulltext |
Examples
POST http://YourServerName/InfoShare/Json/Document/GetDocumentCurrentFulltext
Example for get document current fulltext.{
"connectionId": "b6742bb8-ef97-44ae-819b-a2fa2200908a",
"documentId": "8e58533d-75db-e911-a946-00155d290a08"
}
Response:
{
"GetDocumentCurrentFulltextResult": "text fulltext test..."
}
Exceptions
Type | Condition |
---|---|
ServiceException | The connection id {connectionId} isn't valid or has expired (10008) |
ServiceException | Verification code is needed: Verification code not yet verified (10152) |