Sort Score
Result 10 results
Languages All
Labels All
Results 3,011 - 3,020 of 3,332 for

doc to doc

(0.06 sec)
  1. Get Changes Categories | Documentation

    Note Note: The features listed in this page are working only with GroupDocs.Comparison Cloud V1 You can compare Documents and get list of changes categories by providing the JsonRequest Object data in request body. Resource The following GroupDocs.Comparison Cloud REST API resource has been used To get compared Documents changes categories. Enumeration of categories of changes enum ComparisonCategoriesType { ByTypeChanged, * "take categories by TypeChanged" ByNodeType, * "take categories by nodes Types" ContainsNumbers, * "take categories with changes which contains numbers" OnlyNumbers * "take categories with changes which contains only numbers" } cURL example Request curl -v "https:~/~/api....Upgrade an Order Free Support Docs Free Consulting Blog New Releases...

    docs.groupdocs.cloud/comparison/get-changes-cat...
  2. Parse by Template | Documentation

    This REST API provides the functionality To extract data from Documents. This method parses Document content by a user-generated template. The template can be provided as an object or sTorage path. For protected Documents, it is also required To provide a password. The table below contains the full list of properties that can be specified when parsing Documents by a template. Name Description Comment FileInfo.FilePath The path of the Document, located in the sTorage....Upgrade an Order Free Support Docs Free Consulting Blog New Releases...

    docs.groupdocs.cloud/parser/parse-by-template/
  3. GroupDocs.Assembly Cloud | Documentation

    Welcome To the GroupDocs Assembly Cloud....Upgrade an Order Free Support Docs Free Consulting Blog New Releases...

    docs.groupdocs.cloud/assembly/
  4. Get Changes | Documentation

    Note Note: The features listed in this page are working only with GroupDocs.Comparison Cloud V1 You can compare Documents and get a list of changes by providing the JsonRequest Object data in request body. Resource The following GroupDocs.Comparison Cloud REST API resource has been used To get list of changes. cURL example Request curl -v "https://api.groupDocs.cloud/v1.0/comparison/compareDocuments/changes?appsid#XXXX&signature#XXX-XX" -H "content-type: application/json" -X POST -d "{'sourceFile':{'folder':'comparisons','name':'source.Docx','password':''},'targetFiles':[{'folder':'comparisons','name':'target.Docx','password':''}],'settings ':{'generateSummaryPage':true,'showDeletedContent':true,'styleChangeDetection':true,'insertedItemsStyle':{'color':'Blue','beginSeparaTorString':'','endSeparaTorString':'','bold':false,'italic':false,'strikeThrough':false},'deletedItemsStyle':{'color':'Red','beginSeparaTorString':'','endSeparaTorString':'','bold':false,'italic':false,'strikeThrough':false},'styleChangedItemsStyle':{'color':'Green','beginSeparaTorString':'','endSeparaTorString':'','bold':false,'italic':false,'strikeThrough':false},'wordsSeparaTorChars':[],'detailLevel':'Low','useFramesForDelInsElements':false,'calculateComponentCoordinates':false,'markDeletedInsertedContentDeep':false},'changes':[{'id':0,'action':'Reject'},{'id':1,'action':'Reject'}]}" Response [ { "id": 0, "type": "Deleted", "text": "digital ", "authors": [ "Rizwan" ], "action": "None", "styleChanges": [] }, { "id": 1, "type": "Deleted", "text": "Executive ", "authors": [ "Rizwan" ], "action": "None", "styleChanges": [] }, { "id": 2, "type": "Inserted", "text": "", "authors": [ "Rizwan" ], "action": "None", "styleChanges": [] }, { "id": 3, "type": "Deleted", "text": "", "authors": [ "Rizwan" ], "action": "None", "styleChanges": [] } ] SDK example The API is completely independent of your operating system, database system or development language....Upgrade an Order Free Support Docs Free Consulting Blog New Releases...

    docs.groupdocs.cloud/comparison/get-changes/
  5. Update Barcode signatures | Documentation

    GroupDocs.Signature Cloud provides a method To update some signature properties by it’s id. The signature ID is needed To perform the update, it comes from the result of sign or search operation. API usage There are steps that usage of GroupDocs.Signature Cloud consists of: Upload input Document inTo cloud sTorage Update signatures Download output Document For sTorage operations, like uploading or downloading Documents, please refer To the corresponding articles of this manual....Upgrade an Order Free Support Docs Free Consulting Blog New Releases...

    docs.groupdocs.cloud/signature/update-barcode-s...
  6. Get Supported Barcodes | Documentation

    GroupDocs.Signature Cloud REST API supports To sign a Document with Barcode. This API lists all supported Barcode types. Resource The following GroupDocs.Signature Cloud REST API resource has been used in example To list supported Barcode types. cURL example Request curl -X GET "https://api.groupDocs.cloud/v2.0/signature/barcodes" -H "accept: application/json" -H "authorization: Bearer [Access Token]" Response { "barcodeTypes": [ { "name": "AustralianPosteParcel" }, { "name": "AustralianPost" }, { "name": "Codabar" }, { "name": "CodablockF" }, { "name": "Code11" }, { "name": "Code128" }, { "name": "Code16K" }, { "name": "Code32" }, { "name": "Code39Standard" }, { "name": "Code39Extended" }, { "name": "Code93Extended" }, { "name": "Code93Standard" }, { "name": "DatabarExpanded" }, { "name": "DatabarExpandedStacked" }, { "name": "DatabarLimited" }, { "name": "DatabarOmniDirectional" }, { "name": "DatabarStacked" }, { "name": "DatabarStackedOmniDirectional" }, { "name": "DatabarTruncated" }, { "name": "DataLogic2of5" }, { "name": "DeutschePostIdentcode" }, { "name": "DeutschePostLeitcode" }, { "name": "DotCode" }, { "name": "DutchKIX" }, { "name": "EAN8" }, { "name": "EAN13" }, { "name": "EAN14" }, { "name": "GS1CodablockF" }, { "name": "GS1Code128" }, { "name": "IATA2of5" }, { "name": "Interleaved2of5" }, { "name": "ISBN" }, { "name": "ISMN" }, { "name": "ISSN" }, { "name": "ItalianPost25" }, { "name": "ITF14" }, { "name": "ITF6" }, { "name": "MacroPdf417" }, { "name": "Matrix2of5" }, { "name": "MaxiCode" }, { "name": "MicroPdf417" }, { "name": "MSI" }, { "name": "OneCode" }, { "name": "OPC" }, { "name": "PatchCode" }, { "name": "Pdf417" }, { "name": "Pharmacode" }, { "name": "Planet" }, { "name": "Postnet" }, { "name": "PZN" }, { "name": "RM4SCC" }, { "name": "SCC14" }, { "name": "SingaporePost" }, { "name": "SSCC18" }, { "name": "Standard2of5" }, { "name": "SwissPostParcel" }, { "name": "UPCA" }, { "name": "UpcaGs1Code128Coupon" }, { "name": "UpcaGs1DatabarCoupon" }, { "name": "UPCE" }, { "name": "VIN" } ] } SDK examples The API is completely independent of your operating system, database system or development language....Upgrade an Order Free Support Docs Free Consulting Blog New Releases...

    docs.groupdocs.cloud/signature/get-supported-ba...
  7. Add annotation with downloading output document...

    AnnotateDirect method allows To add annotations To the Document and returns output Document. API usage There are steps that usage of GroupDocs.Annotation Cloud consists of: Upload input Document inTo cloud sTorage and other files, like image annotation Add annotation and get the result immediately HTTP PUT ~/annotation/add Swagger UI lets you call this REST API directly from the browser. cURL example Request // First get JSON Web Token // Please get your Client Id and Client Secret from https://dashboard....Upgrade an Order Free Support Docs Free Consulting Blog New Releases...

    docs.groupdocs.cloud/annotation/add-direct/
  8. Translating text with GroupDocs.Translation SDK...

    How To use GroupDocs.Translation Cloud SDK for translating texts....Upgrade an Order Free Support Docs Free Consulting Blog New Releases...

    docs.groupdocs.cloud/translation/text/sdk/
  9. Sending Resx files for translation | Documentation

    How To send Resx files for translation To the selected languages....Upgrade an Order Free Support Docs Free Consulting Blog New Releases...

    docs.groupdocs.cloud/translation/file/request/r...
  10. Sending Srt files for translation | Documentation

    How To send Srt files for translation To the selected languages....Upgrade an Order Free Support Docs Free Consulting Blog New Releases...

    docs.groupdocs.cloud/translation/file/request/s...