Sort Score
Result 10 results
Languages All
Labels All
Results 1,911 - 1,920 of 2,048 for

docx to doc

(0.05 sec)
  1. Set Metadata By Property Name | Documentation

    This REST API allows To set Document metadata new values choosing properties with specified name. cURL example The following example demonstrates how To set metadata date and time information in all properties that may have names containing “Date” value. Linux/MacOS/Bash # First get JSON Web Token # Please get your Client Id and Client Secret from https://dashboard.groupDocs.cloud/applications. # The credentials are read from environment variables CLIENT_ID and CLIENT_SECRET. curl -v "https://api....Upgrade an Order Free Support Docs Free Consulting Blog New Releases..."FilePath": "documents/input.docx", "StorageName": "" }, "Properties":...

    docs.groupdocs.cloud/metadata/set-metadata-by-p...
  2. Add Metadata By Property Name Match Regex | Doc...

    This REST API allows you To add metadata information as properties which names are match the specified regular expression. cURL example The following example demonstrates how To add metadata date and time information in all properties with the same name that have string ‘print’ in any place of the name. Linux/MacOS/Bash # Get JSON Web Token # Retrieve CLIENT_ID and CLIENT_SECRET from your GroupDocs Cloud dashboard. curl -v "https://api.groupDocs.cloud/connect/Token" \ -X POST \ -d "grant_type=client_credentials&client_id=$CLIENT_ID&client_secret=$CLIENT_SECRET" \ -H "Content-Type: application/x-www-form-urlencoded" \ -H "Accept: application/json" # Add metadata To a Document (example) curl -v "https://api....Upgrade an Order Free Support Docs Free Consulting Blog New Releases..."FilePath": "documents\\input.docx", "StorageName": "" }, "Properties":...

    docs.groupdocs.cloud/metadata/add-metadata-by-p...
  3. Extract Metadata By Possible Tag Name | Documen...

    This REST API allows To extract metadata properties from the Document choosing the properties To extract by approximate or a part of metadata tag name. This API allows you To specify any part of metadata tag name or tag category name. cURL example The following example demonstrates how To extract metadata creaTor information from all properties that have particular string phrase in theirs tag names. Linux/MacOS/Bash # 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..."FilePath": "documents/input.docx", "StorageName": "" }, "SearchCriteria":...

    docs.groupdocs.cloud/metadata/extract-metadata-...
  4. Extract Metadata By Property Name Match Exact P...

    This REST API allows To extract metadata properties from the Document choosing the properties To extract by name. cURL example The following example demonstrates how To extract metadata information from all properties with the exact same name as specified. Linux/MacOS/Bash # First get JSON Web Token # Please get your Client Id and Client Secret from https://dashboard.groupDocs.cloud/applications. # Place Client Id in $CLIENT_ID and Client Secret in $CLIENT_SECRET. curl -v "https://api....Upgrade an Order Free Support Docs Free Consulting Blog New Releases..."FilePath": "documents\\input.docx", "StorageName": "" }, "SearchCriteria":...

    docs.groupdocs.cloud/metadata/extract-metadata-...
  5. Change Page Orientation | Documentation

    This REST API allows setting Portrait or Landscape page orientation for specific or all Document pages. The result is a new Document that has orientation changed for specified pages. There are several ways To specify desired page numbers: Provide exact page numbers via Pages collection; Specify pages range start/end page numbers. There is also an ability To get only even/odd pages from the specified page range by setting RangeMode property. For protected Documents, it is also required To provide a password....Upgrade an Order Free Support Docs Free Consulting Blog New Releases..."/WordProcessing/four-pages.docx"}, "Pages": [ 2, 4 ], "Mode":...

    docs.groupdocs.cloud/merger/change-page-orienta...
  6. Security Operations | Documentation

    Add Document Password Protection This REST API allows adding Document password protection. API endpoint accepts Document sTorage path as input payload and returns path To the created a password-protected Document. The description of the important API parameters is given below: Name Description Comment FilePath The file path in the sTorage Required property STorageName STorage name It could be omitted for default sTorage. VersionId File version Id Useful for sTorages that support file versioning Password The password To open file Should be specified only for password-protected Documents OutputPath Path To resultant Document Required Resource URI HTTP PUT ~/password Swagger UI lets you call this REST API directly from the browser....Upgrade an Order Free Support Docs Free Consulting Blog New Releases..."FilePath": "words/four-pages.docx"}, "Password": "Password", "OutputPath":...

    docs.groupdocs.cloud/merger/security-operations/
  7. Extract Whole Metadata Tree | Documentation

    This REST API allows To extract whole metadata properties tree. cURL example The following example demonstrates how To retrieve all metadata properties. Linux/MacOS/Bash # First get JSON Web Token # Please get your Client Id and Client Secret from https://dashboard.groupDocs.cloud/applications. curl -v "https://api.groupDocs.cloud/connect/Token" \ -X POST \ -d "grant_type=client_credentials&client_id=$CLIENT_ID&client_secret=$CLIENT_SECRET" \ -H "Content-Type: application/x-www-form-urlencoded" \ -H "Accept: application/json" # Example To join several Documents inTo one curl -v "https://api.groupDocs.cloud/v1.0/metadata" \ -X POST \ -H "Content-Type: application/json" \ -H "Accept: application/json" \ -H "Authorization: Bearer $JWT_ToKEN" \ -d '{ "FileInfo": { "FilePath": "Documents/input....Upgrade an Order Free Support Docs Free Consulting Blog New Releases..."FilePath": "documents/input.docx", "StorageName": "" } }' Windows...

    docs.groupdocs.cloud/metadata/extract-whole-met...
  8. Add Metadata By Tag | Documentation

    This REST API allows To add metadata properties To the Document choosing the right place To add by exact tag and category name. cURL example The following example demonstrates how To add metadata date and time information in all properties that have specified tag. Linux/MacOS/Bash # Get JWT Token curl -v 'https://api.groupDocs.cloud/connect/Token' \ -X POST \ -d "grant_type=client_credentials&client_id=$CLIENT_ID&client_secret=$CLIENT_SECRET" \ -H 'Content-Type: application/x-www-form-urlencoded' \ -H 'Accept: application/json' # Join several Documents inTo one curl -v 'https://api....Upgrade an Order Free Support Docs Free Consulting Blog New Releases..."FilePath": "documents/input.docx", "StorageName": "" }, "Properties":...

    docs.groupdocs.cloud/metadata/add-metadata-by-tag/
  9. Add Metadata By Possible Tag Name | Documentation

    This REST API allows To add metadata properties To the Document choosing the right place To add by approximate or a part of metadata tag name. This API allows you To specify any part of metadata tag name or tag category name. cURL example The following example demonstrates how To add metadata date and time information in all properties that have particular string phrase in theirs tag names. Linux/MacOS/Bash # Get JSON Web Token curl -v "https://api....Upgrade an Order Free Support Docs Free Consulting Blog New Releases..."FilePath": "documents\\input.docx", "StorageName": "" }, "Properties":...

    docs.groupdocs.cloud/metadata/add-metadata-by-p...
  10. Extract Pages | Documentation

    Extract Pages by Exact Page Numbers This REST API allows extracting pages from source Documents by providing exact page numbers via Pages collection. The result is a new Document that contains only specified pages from a source Document. For protected Documents, it is also required To provide a password. The following example demonstrates how To extract pages 2,4,7 from a source Document inTo a new Document. Resource URI HTTP POST ~/Pages/Extract Swagger UI lets you call this REST API directly from the browser....Upgrade an Order Free Support Docs Free Consulting Blog New Releases..."/WordProcessing/sample-10-pages.docx"}, "Pages": [2, 4, 7], "OutputPath":...

    docs.groupdocs.cloud/merger/extract-pages/