Sort Score
Result 10 results
Languages All
Labels All
Results 21 - 30 of 312 for

metadata properties

(0.09 sec)
  1. Add Metadata By Property Name Match Exact Phras...

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

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

    docs.groupdocs.cloud/metadata/extract-metadata-...
  6. Set Metadata By Property Name Match Regex | Doc...

    This REST API allows to set document Metadata new values choosing Properties with names matching the specified regular expression. cURL example The following example demonstrates how to set Metadata information to all Properties that match regular expression “^NameOfApp.*”. 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" # 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...
  7. Remove Metadata By Property Name Match Regex | ...

    This REST API allows to remove Metadata Properties from the document choosing the Properties with names matching the specified regular expression. cURL example The following example demonstrates how to remove Metadata Properties that match regular expression “^[N]ame[A-Z].*”. Request # First get JSON Web Token # Please get your Client Id and Client Secret from https://dashboard.groupdocs.cloud/applications. # Kindly place Client Id in client_id and Client Secret in "client_secret" argument. curl -v "https://api....Metadata Product Solution GroupDocs...GroupDocs.Metadata Cloud / Developer Guide / Metadata Opertaions...

    docs.groupdocs.cloud/metadata/remove-metadata-b...
  8. Remove Metadata By Property Name Match Exact Ph...

    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 have exact “NameOfApplication” names. Linux/MacOS/Bash # Get JSON Web Token # Set your client credentials in 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" # Join several documents into one (example endpoint) curl -v "https://api....Metadata Product Solution GroupDocs...GroupDocs.Metadata Cloud / Developer Guide / Metadata Opertaions...

    docs.groupdocs.cloud/metadata/remove-metadata-b...
  9. Set Metadata By Property Name Match Exact Phras...

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

    docs.groupdocs.cloud/metadata/extract-metadata-...