Sort Score
Result 10 results
Languages All
Labels All
Results 21 - 30 of 1,671 for

metadata java

(0.33 sec)
  1. Set Metadata By Property Value | Documentation

    This REST API allows to set document Metadata new values choosing properties which values are matching the specified. cURL example The following example demonstrates how to set Metadata information to all properties with the “Microsoft Office Word” 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.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....Metadata Product Solution GroupDocs...GroupDocs.Metadata Cloud / Developer Guide / Metadata Opertaions...

    docs.groupdocs.cloud/metadata/set-metadata-by-p...
  2. Get Metadata Tags Information | Documentation

    This REST API allows to obtain tags and properties information from document Metadata. Endpoint accepts document storage path as input payload. Operation traverses whole Metadata tree packages and retrieve properties within the package. The table below contains the full list of properties. Name Description Comment FileInfo.FilePath The path of the document, located in the storage. Required. FileInfo.StorageName Storage name Could be omitted for default storage. Resource URI HTTP POST ~/Metadata/tags Swagger UI lets you call this REST API directly from the browser....Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Cloud / Developer Guide /...

    docs.groupdocs.cloud/metadata/get-metadata-tags...
  3. 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....Metadata Product Solution GroupDocs...GroupDocs.Metadata Cloud / Developer Guide / Metadata Opertaions...

    docs.groupdocs.cloud/metadata/extract-whole-met...
  4. Remove Metadata By Property Value | Documentation

    This REST API allows to remove Metadata properties from the document choosing the properties which values are matching the specified. cURL example The following example demonstrates how to remove Metadata properties with the “Microsoft Office Word” value. Linux/MacOS/Bash # Get JSON Web 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' # cURL example to join several documents into one curl -v 'https://api....Metadata Product Solution GroupDocs...GroupDocs.Metadata Cloud / Developer Guide / Metadata Opertaions...

    docs.groupdocs.cloud/metadata/remove-metadata-b...
  5. 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....Metadata Product Solution GroupDocs...GroupDocs.Metadata Cloud / Developer Guide / Metadata Opertaions...

    docs.groupdocs.cloud/metadata/set-metadata-by-p...
  6. 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....Metadata Product Solution GroupDocs...GroupDocs.Metadata Cloud / Developer Guide / Metadata Opertaions...

    docs.groupdocs.cloud/metadata/extract-metadata-...
  7. Remove Metadata By Property Name | Documentation

    This REST API allows to remove Metadata properties from the document choosing the properties with specified name. cURL example The following example demonstrates how to remove Metadata properties that may have names containing “Application” string. Linux/MacOS/Bash # First get JSON Web Token # Replace $CLIENT_ID and $CLIENT_SECRET with your credentials. 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....Metadata Product Solution GroupDocs...GroupDocs.Metadata Cloud / Developer Guide / Metadata Opertaions...

    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....Metadata Product Solution GroupDocs...GroupDocs.Metadata Cloud / Developer Guide / Metadata Opertaions...

    docs.groupdocs.cloud/metadata/extract-metadata-...
  9. 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....Metadata Product Solution GroupDocs...GroupDocs.Metadata Cloud / Developer Guide / Metadata Opertaions...

    docs.groupdocs.cloud/metadata/add-metadata-by-p...
  10. Set Metadata By Possible Tag Name | Documentation

    This REST API allows to set document Metadata new values choosing properties to edit 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 set new Metadata creator name. Linux/MacOS/Bash # First get JSON Web Token # Please get your Client Id and Client Secret from https://dashboard.groupdocs.cloud/applications. # Place the Client Id and Secret in the environment variables $CLIENT_ID and $CLIENT_SECRET....Metadata Product Solution GroupDocs...GroupDocs.Metadata Cloud / Developer Guide / Metadata Opertaions...

    docs.groupdocs.cloud/metadata/set-metadata-by-p...