Sort Score
Result 10 results
Languages All
Labels All
Results 611 - 620 of 5,656 for

client secret

(0.09 sec)
  1. 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....Web Token # Ensure CLIENT_ID and CLIENT_SECRET env variables are..."grant_type=client_credentials&client_id= $CLIENT_ID &client_secret=...

    docs.groupdocs.cloud/metadata/remove-metadata-b...
  2. 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....Web Token # Ensure CLIENT_ID and CLIENT_SECRET are set as environment...'grant_type=client_credentials&client_id=$CLIENT_ID&client_secret=$CLIENT_SECRET'...

    docs.groupdocs.cloud/metadata/add-metadata-by-p...
  3. 3. Convert Email Document with Load Options | D...

    This example demonstrates how to convert email documents into pdf documents with load options. There are steps that usage of GroupDocs.Conversion Cloud consists of: Upload input document into cloud storage Convert document Download converted document from storage Steps 1 and 3 are storage operations, please refer to this GroupDocs.Conversion Cloud documentation for usage details. Step 3 is not needed if the “OutputPath” option is not provided: the convert API method will return the converted document in the response body...."grant_type=client_credentials&client_id= $CLIENT_ID &client_secret=...&client_secret= $CLIENT_SECRET " \ -H "Content-Type: application/x-www-form-urlencoded"...

    docs.groupdocs.cloud/conversion/convert-email-d...
  4. 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....Token # Retrieve CLIENT_ID and CLIENT_SECRET from your GroupDocs..."grant_type=client_credentials&client_id= $CLIENT_ID &client_secret=...

    docs.groupdocs.cloud/metadata/add-metadata-by-p...
  5. Summarizing text with GroupDocs.Rewriter SDK | ...

    How to use GroupDocs.Rewriter Cloud SDK for texts summarization....Client ; using GroupDocs.Rewriter.Cloud.Sdk.Client.Auth.... Rewriter . Cloud . Sdk . Client . Configuration ; using System...

    docs.groupdocs.cloud/rewriter/text/sdk/summarize/
  6. Simplifying text with GroupDocs.Rewriter SDK | ...

    How to use GroupDocs.Rewriter Cloud SDK for texts simplification....Client ; using GroupDocs.Rewriter.Cloud.Sdk.Client.Auth.... Rewriter . Cloud . Sdk . Client . Configuration ; using System...

    docs.groupdocs.cloud/rewriter/text/sdk/simmplify/
  7. Findging synonyms with GroupDocs.Rewriter SDK |...

    How to use GroupDocs.Rewriter Cloud SDK to find synonyms for word or phrase....Client ; using GroupDocs.Rewriter.Cloud.Sdk.Client.Auth.... Rewriter . Cloud . Sdk . Client . Configuration ; using System...

    docs.groupdocs.cloud/rewriter/text/sdk/synoymize/
  8. Summarize Documents in C# | Document Summarizat...

    How to summarize document content using .NET REST API. Create concise summaries of PDFs, Word files, and text documents using AI-powered summarization....Configuration( "YOUR_CLIENT_ID" , "YOUR_CLIENT_SECRET" ); var rewriterApi...a JWT access token based on client credentials. curl -v -X POST...

    blog.groupdocs.cloud/rewriter/summarize-documen...
  9. 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....Web Token # Set CLIENT_ID and CLIENT_SECRET as environment variables..."grant_type=client_credentials&client_id= $CLIENT_ID &client_secret=...

    docs.groupdocs.cloud/metadata/extract-metadata-...
  10. 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...."grant_type=client_credentials&client_id= $CLIENT_ID &client_secret=...&client_secret= $CLIENT_SECRET " \ -H 'Content-Type: application/x-www-form-urlencoded'...

    docs.groupdocs.cloud/metadata/add-metadata-by-tag/