File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -98,6 +98,19 @@ Then add the locally built artifact to your project:
98
98
Here's how to get EX directory participant data using the client:
99
99
100
100
``` java
101
+ package pl.wtx.qualtrics ;
102
+
103
+ import pl.wtx.qualtrics.api.client.ExApisDirectoriesApi ;
104
+ import pl.wtx.qualtrics.api.client.invoker.ApiException ;
105
+ import pl.wtx.qualtrics.api.client.model.ParticipantResponse ;
106
+
107
+ /**
108
+ * Qualtrics API Client - Usage Demo
109
+ *
110
+ * @author WTX Labs
111
+ * @see https://github.com/wtx-labs/qualtrics-api-client-java
112
+ * @license MIT
113
+ */
101
114
public class QualtricsApiClientUsageDemo {
102
115
103
116
// TODO: Set your Qualtrics API base path!
@@ -114,7 +127,7 @@ public class QualtricsApiClientUsageDemo {
114
127
apiClient. setBasePath(API_BASE_PATH );
115
128
apiClient. addDefaultHeader(" X-API-TOKEN" , API_ACCESS_TOKEN );
116
129
117
- DirectoriesApi directoriesApi = new DirectoriesApi (apiClient);
130
+ ExApisDirectoriesApi directoriesApi = new ExApisDirectoriesApi (apiClient);
118
131
119
132
try {
120
133
You can’t perform that action at this time.
0 commit comments