You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @param data This operation does not return a value.
60
59
* @param {String} If a callback was specified, the response The complete HTTP response, else a Promise resolving the response Data.
61
60
*/
62
61
63
62
/**
64
-
* Deletes user's social account.
63
+
* Deletes user's social account.
65
64
* Deletes a social account from a use's account.
66
65
* @param {String} accountId The external account number (int) or account ID Guid.
67
66
* @param {String} userId The user ID of the user being accessed. Generally this is the user ID of the authenticated user, but if the authenticated user is an Admin on the account, this may be another user the Admin user is accessing.
* @param {module:model/UserSocialIdResult} data The data returned by the service call.
172
171
* @param {String} If a callback was specified, the response The complete HTTP response, else a Promise resolving the response Data.
173
172
*/
174
173
175
174
/**
176
-
* Gets a list of a user's social accounts.
175
+
* Gets a list of a user's social accounts.
177
176
* Retrieves a list of social accounts linked to a user's account.
178
177
* @param {String} accountId The external account number (int) or account ID Guid.
179
178
* @param {String} userId The user ID of the user being accessed. Generally this is the user ID of the authenticated user, but if the authenticated user is an Admin on the account, this may be another user the Admin user is accessing.
@@ -184,12 +183,12 @@
184
183
varpostBody=null;
185
184
186
185
// verify the required parameter 'accountId' is set
187
-
if(accountId==undefined||accountId==null){
186
+
if(accountId===undefined||accountId===null){
188
187
thrownewError("Missing the required parameter 'accountId' when calling listSocialLogins");
189
188
}
190
189
191
190
// verify the required parameter 'userId' is set
192
-
if(userId==undefined||userId==null){
191
+
if(userId===undefined||userId===null){
193
192
thrownewError("Missing the required parameter 'userId' when calling listSocialLogins");
194
193
}
195
194
@@ -211,7 +210,7 @@
211
210
varformParams={
212
211
};
213
212
214
-
varauthNames=[];
213
+
varauthNames=['docusignAccessCode'];
215
214
varcontentTypes=[];
216
215
varaccepts=['application/json'];
217
216
varreturnType=UserSocialIdResult;
@@ -224,7 +223,7 @@
224
223
};
225
224
226
225
/**
227
-
* (Optional)Callback function to receive the result of the login operation. If none specified a Promise will be returned.
226
+
* (Optional)Callback function to receive the result of the login operation. If none specified a Promise will be returned.
0 commit comments