File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -249,7 +249,7 @@ const PlayerAuthAPIDocs: APIDocs<PlayerAuthAPIService> = {
249
249
body : {
250
250
currentPassword : 'The current password of the player' ,
251
251
verificationEnabled : 'The new verification status for the player account' ,
252
- email : 'Required when enabling verification. This is also used for password resets: players without an email cannot reset their password '
252
+ email : 'Required when attempting to enable verification if the player does not currently have an email address set '
253
253
}
254
254
} ,
255
255
samples : [
@@ -261,12 +261,19 @@ const PlayerAuthAPIDocs: APIDocs<PlayerAuthAPIService> = {
261
261
}
262
262
} ,
263
263
{
264
- title : 'Sample request (enabling verification)' ,
264
+ title : 'Sample request (enabling verification, player does not have an email address )' ,
265
265
sample : {
266
266
currentPassword : 'password' ,
267
267
email : 'boz@mail.com' ,
268
268
verificationEnabled : true
269
269
}
270
+ } ,
271
+ {
272
+ title : 'Sample request (enabling verification, player has an email address)' ,
273
+ sample : {
274
+ currentPassword : 'password' ,
275
+ verificationEnabled : true
276
+ }
270
277
}
271
278
]
272
279
}
You can’t perform that action at this time.
0 commit comments