We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 466bfb1 commit b660727Copy full SHA for b660727
1 file changed
README.md
@@ -57,13 +57,12 @@ First create an account at [GroupDocs for Cloud](https://dashboard.groupdocs.clo
57
## Convert DOCX to PDF in the Cloud
58
59
```csharp
60
-// Get application information from https://dashboard.groupdocs.cloud
61
-string MyAppKey = "";
62
-string MyAppSid = "";
+// Get Client Id and Client Secret from https://dashboard.groupdocs.cloud
+string MyClientId = "";
+string MyClientSecret = "";
63
64
-var configuration = new Configuration(MyAppSid, MyAppKey);
65
-
66
-// Create necessary API instances
+// Create instance of the API
+var configuration = new Configuration(MyClientId, MyClientSecret);
67
var apiInstance = new ConvertApi(configuration);
68
69
// Prepare convert settings
0 commit comments