Get familiar with GroupDocs.Translation Cloud by running a bare minimum example....a JWT token, get the ClientID and Client Secret credentials:...copy the values from ClientId and Client Secret fields. Now request...
This REST API allows getting a list of all file formats supported by GroupDocs.Watermark Cloud product.
Resource URI HTTP POST ~~/formats Swagger UI lets you call this REST API directly from the browser.
cURL example Request # First get JSON Web Token # Please get your ClientId and Client Secret from https://dashboard.groupdocs.cloud/applications. # Kindly place ClientId in "Client_Id" and Client Secret in "Client_secret" argument. curl -v "https://api.groupdocs.cloud/connect/token" \ -X POST \ -d "grant_type#Client_credentials&Client_Id#xxxx&Client_secret#xxxx" \ -H "Content-Type: application/x-www-form-urlencoded" \ -H "Accept: application/json" # cURL example to get document information curl -v "https://api....Token # Please get your ClientId and Client Secret from https://dashboard...place ClientId in "client_id" and Client Secret in "client_secret"...
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.
Request # First get JSON Web Token # Please get your ClientId and Client Secret from https://dashboard.groupdocs.cloud/applications. # Kindly place ClientId in Client_Id and Client Secret in "Client_secret" argument. curl -v "https://api.groupdocs.cloud/connect/token" \ -X POST \ -d "grant_type#Client_credentials&Client_Id#xxxx&Client_secret#xxxx" \ -H "Content-Type: application/x-www-form-urlencoded" \ -H "Accept: application/json" # cURL example to join several documents into one curl -v "https://api....Token # Please get your ClientId and Client Secret from https://dashboard...place ClientId in client_id and Client Secret in "client_secret"...
This example demonstrates how to convert word processing document into pdf document asyncronously without using cloud storage. There are steps that usage of GroupDocs.Conversion Cloud consists of:
Start convert operation and get operation Id Get operation status Get operation result (converted document) Resource URI HTTP PUT ~/conversion/async
Swagger UI lets you call this REST API directly from the browser.
cURL example Request // First get JSON Web Token // Please get your ClientId and Client Secret from https://dashboard....convert operation and get operation ID Get operation status Get operation...Token // Please get your ClientId and Client Secret from https://dashboard...
Follow this guIde to learn how to convert Text to Image in Java programmatically. GroupDocs.Conversion offers Cloud SDKs and REST APIs to convert TXT to PNG....<repository> <id>groupdocs-artifact-repository</id> <name>GroupDocs...step is to obtain the ClientID and Client Secret from the API...
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.
Request # First get JSON Web Token # Please get your ClientId and Client Secret from https://dashboard.groupdocs.cloud/applications. # Kindly place ClientId in Client_Id and Client Secret in "Client_secret" argument. curl -v "https://api....Token # Please get your ClientId and Client Secret from https://dashboard...place ClientId in client_id and Client Secret in "client_secret"...
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 ClientId and Client Secret from https://dashboard.groupdocs.cloud/applications. # Kindly place ClientId in Client_Id and Client Secret in "Client_secret" argument. curl -v "https://api....Token # Please get your ClientId and Client Secret from https://dashboard...place ClientId in client_id and Client Secret in "client_secret"...
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.
Request # First get JSON Web Token # Please get your ClientId and Client Secret from https://dashboard.groupdocs.cloud/applications. # Kindly place ClientId in Client_Id and Client Secret in "Client_secret" argument....Token # Please get your ClientId and Client Secret from https://dashboard...place ClientId in client_id and Client Secret in "client_secret"...
This REST API allows to extract whole metadata properties tree.
cURL example The following example demonstrates how to retrieve all metadata properties.
Request # First get JSON Web Token # Please get your ClientId and Client Secret from https://dashboard.groupdocs.cloud/applications. # Kindly place ClientId in Client_Id and Client Secret in "Client_secret" argument. curl -v "https://api.groupdocs.cloud/connect/token" \ -X POST \ -d "grant_type#Client_credentials&Client_Id#xxxx&Client_secret#xxxx" \ -H "Content-Type: application/x-www-form-urlencoded" \ -H "Accept: application/json" # cURL example to join several documents into one curl -v "https://api....Token # Please get your ClientId and Client Secret from https://dashboard...place ClientId in client_id and Client Secret in "client_secret"...
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.
Request # First get JSON Web Token # Please get your ClientId and Client Secret from https://dashboard.groupdocs.cloud/applications. # Kindly place ClientId in Client_Id and Client Secret in "Client_secret" argument. curl -v "https://api....Token # Please get your ClientId and Client Secret from https://dashboard...place ClientId in client_id and Client Secret in "client_secret"...