Sort Score
Result 10 results
Languages All
Labels All
Results 2,291 - 2,300 of 10,446 for

json

(0.15 sec)
  1. Extract Text From The Whole Document | Document...

    This REST API allows extracting text from the whole document by default. You need to specify only the file information parameters. Resource The following GroupDocs.Parser Cloud REST API resource has been used in the extract text from the whole document example. cURL example The following example demonstrates how to extract text from the whole document. Linux/MacOS/Bash # Get Json Web Token # Ensure CLIENT_ID and CLIENT_SECRET are set as environment variables.... Linux/MacOS/Bash # Get JSON Web Token # Ensure CLIENT_ID..." \ -H "Accept: application/json" # Join several documents into...

    docs.groupdocs.cloud/parser/extract-text-from-t...
  2. Get Supported File Types | Documentation

    This REST API allows getting a list of all file formats supported by GroupDocs.Parser Cloud product. Resources The following GroupDocs.Parser Cloud REST API resource has been used in the get supported file types example. HTTP POST ~~/formats cURL example The following example demonstrates how to get supported file types. Linux/MacOS/Bash # First get Json Web Token # Please get your Client Id and Client Secret from https://dashboard.groupdocs.cloud/applications. # The environment variables CLIENT_ID and CLIENT_SECRET must be set....Linux/MacOS/Bash # First get JSON Web Token # Please get your...' \ -H 'Accept: application/json' # cURL example to get document...

    docs.groupdocs.cloud/parser/get-supported-file-...
  3. Extract Metadata By Tag | Documentation

    This REST API allows to extract metadata properties from the document choosing the properties by exact tag and category name. cURL example The following example demonstrates how to extract metadata information from all properties with Created tag. Linux/MacOS/Bash # Get Json Web Token # Provide your Client Id and Client Secret via environment variables CLIENT_ID and CLIENT_SECRET. 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" # cURL example to join several documents into one curl -v "https://api.... Linux/MacOS/Bash # Get JSON Web Token # Provide your Client..." \ -H "Accept: application/json" # cURL example to join several...

    docs.groupdocs.cloud/metadata/extract-metadata-...
  4. Remove Metadata By Possible Tag Name | Document...

    This REST API allows to remove metadata properties from the document choosing the properties to remove 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 remove metadata properties that have “creator” phrase in theirs tag names. Linux/MacOS/Bash # Get Json Web Token # Ensure CLIENT_ID and CLIENT_SECRET env variables are set.... Linux/MacOS/Bash # Get JSON Web Token # Ensure CLIENT_ID..." \ -H "Accept: application/json" # Example: remove metadata...

    docs.groupdocs.cloud/metadata/remove-metadata-b...
  5. Add Metadata By Property Name | Documentation

    This REST API allows you to add metadata information as properties with specified name. cURL example The following example demonstrates how to add metadata date and time information in all properties that may have names containing specified string value. Linux/MacOS/Bash # Get Json Web Token # Ensure CLIENT_ID and CLIENT_SECRET are set as environment variables. 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 curl -v "https://api.... Linux/MacOS/Bash # Get JSON Web Token # Ensure CLIENT_ID..." \ -H "Accept: application/json" # Add metadata to a document...

    docs.groupdocs.cloud/metadata/add-metadata-by-p...
  6. GroupDocs.Conversion Cloud Product Family

    Document Automation APIs along with open-source SDKs to enhance Java, Python, Node.js, C# .NET, Ruby, C++, and PHP applications to view, edit, annotate, convert, compare, e-sign, parse, split, merge, extract, redact, watermark, metadata, paraphrase, classify, repair, and translate documents of almost all the popular file formats....Polski Convert JSON to CSV Online for Free Convert JSON files to CSV...format with our free online JSON to CSV converter. Please follow...

    blog.groupdocs.cloud/categories/groupdocs.conve...
  7. Remove Metadata By Tag | Documentation

    This REST API allows to remove metadata properties from the document choosing the properties by exact tag and category name. cURL example The following example demonstrates how to remove all metadata properties with the “Created” tag name. Linux/MacOS/Bash # 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: remove metadata from a document curl -v "https://api.... Linux/MacOS/Bash # Get JSON Web Token # Please get your..." \ -H "Accept: application/json" # Example: remove metadata...

    docs.groupdocs.cloud/metadata/remove-metadata-b...
  8. Extract Metadata By Property Value | Documentation

    This REST API allows to extract metadata properties from the document choosing the properties which values are matching the specified value. cURL example The following example demonstrates how to extract metadata information from all properties with the “Microsoft Office Word” value. Linux/MacOS/Bash # Get Json Web Token # Set CLIENT_ID and CLIENT_SECRET as environment variables or replace them directly in the command. 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: retrieve metadata (join several documents into one) curl -v "https://api.... Linux/MacOS/Bash # Get JSON Web Token # Set CLIENT_ID and..." \ -H "Accept: application/json" # Example: retrieve metadata...

    docs.groupdocs.cloud/metadata/extract-metadata-...
  9. 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....Linux/MacOS/Bash # First get JSON Web Token # Please get your..." \ -H "Accept: application/json" # Example to join several documents...

    docs.groupdocs.cloud/metadata/extract-whole-met...
  10. Extract Text by a Page Number Range | Documenta...

    This REST API allows extracting text from specific pages only by setting pages range. You need to specify StartPageNumber and CountPagesToExtract parameters besides the basic options. Resource The following GroupDocs.Parser Cloud REST API resource has been used in the Extract text by a page number example. cURL example The following example demonstrates how to extract text by a page number range. Linux/MacOS/Bash # First get Json Web Token # Please get your Client Id and Client Secret from https://dashboard....Linux/MacOS/Bash # First get JSON Web Token # Please get your..." \ -H "Accept: application/json" # cURL example to join several...

    docs.groupdocs.cloud/parser/extract-text-by-a-p...