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....Linux/MacOS/Bash # First get JSON Web Token # Please get your..." \ -H "Accept: application/json" # cURL example to join several...
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....Linux/MacOS/Bash # First get JSON Web Token # Please get your...' \ -H 'Accept: application/json' # cURL example to join several...
This REST API allows to set document metadata new values choosing properties by exact tag and category name.
cURL example The following example demonstrates how to set metadata information to all properties with the “Creator” tag name.
Linux/MacOS/Bash # 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 environment variables. curl -v "https://api....Linux/MacOS/Bash # First get JSON Web Token # Please get your..." \ -H "Accept: application/json" # cURL example to set metadata...
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....Linux/MacOS/Bash # First get JSON Web Token # Please get your..." \ -H "Accept: application/json" # cURL example to join several...
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....Linux/MacOS/Bash # First get JSON Web Token # Please get your..." \ -H "Accept: application/json" # cURL example to add metadata...
This REST API allows extracting formatted text by setting the pages extraction mode option. You need to specify the FormattedTextOptions Mode parameter besides the basic options.
Resource The following GroupDocs.Parser Cloud REST API resource has been used in the Extract formatted text example.
cURL example The following example demonstrates how to extract formatted text.
Linux/MacOS/Bash # Get Json Web Token # Provide your Client Id and Client Secret via environment variables $CLIENT_ID and $CLIENT_SECRET.... Linux/MacOS/Bash # Get JSON Web Token # Provide your Client..." \ -H "Accept: application/json" # Example: join several documents...
This REST API allows to extract metadata properties from the document choosing the properties which names are matching the specified regular expression.
cURL example The following example demonstrates how to extract metadata information from all properties with the “dc” string in the beginning of the name.
Linux/MacOS/Bash # First get Json Web Token # Please get your Client Id and Client Secret from https://dashboard.groupdocs.cloud/applications. # The values are taken from environment variables CLIENT_ID and CLIENT_SECRET....Linux/MacOS/Bash # First get JSON Web Token # Please get your..." \ -H "Accept: application/json" # cURL example to join several...
GroupDocs Cloud Blog - Document Processing REST APIs | GroupDocs Cloud...Learn how to convert JSON to CSV using Node.js REST API. Easily...Easily transform JSON to CSV for reporting, databases, or spreadsheets...
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...
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...