POST api/v1/users/resendemailtoken
Request Information
URI Parameters
None.
Body Parameters
EmailTokenResendRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | globally unique identifier |
Required |
|
| UserName | string |
Required String length: inclusive between 0 and 256 |
|
| EmailConfirmationLink | string |
Required String length: inclusive between 0 and 256 |
Request Formats
application/json, text/json
Sample:
{
"UserId": "bed8f03c-cef1-4d8e-b520-f48d61f69d2a",
"UserName": "sample string 2",
"EmailConfirmationLink": "sample string 3"
}
text/html
Sample:
{"UserId":"bed8f03c-cef1-4d8e-b520-f48d61f69d2a","UserName":"sample string 2","EmailConfirmationLink":"sample string 3"}
application/xml, text/xml
Sample:
<EmailTokenResendRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi.User"> <EmailConfirmationLink>sample string 3</EmailConfirmationLink> <UserId>bed8f03c-cef1-4d8e-b520-f48d61f69d2a</UserId> <UserName>sample string 2</UserName> </EmailTokenResendRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
UserDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | globally unique identifier |
None. |
|
| ClubId | globally unique identifier |
Required |
|
| FriendlyName | string |
Required String length: inclusive between 0 and 100 |
|
| NotificationEmail | string |
Required String length: inclusive between 0 and 256 |
|
| PersonId | globally unique identifier |
None. |
|
| Remarks | string |
None. |
|
| UserName | string |
Required String length: inclusive between 0 and 256 |
|
| UserRoleIds | Collection of globally unique identifier |
None. |
|
| AccountState | integer |
None. |
|
| LastPasswordChangeOn | date |
None. |
|
| ForcePasswordChangeNextLogon | boolean |
None. |
|
| EmailConfirmed | boolean |
None. |
|
| LanguageId | integer |
None. |
|
| Id | globally unique identifier |
None. |
|
| CanUpdateRecord | boolean |
None. |
|
| CanDeleteRecord | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"UserId": "452c99c2-57b9-4640-8b41-235938532556",
"ClubId": "d5bf14c9-2744-4153-ada5-f166a9f79993",
"FriendlyName": "sample string 3",
"NotificationEmail": "sample string 4",
"PersonId": "ea21c94f-9c33-4048-ab73-ff366f19a601",
"Remarks": "sample string 5",
"UserName": "sample string 6",
"UserRoleIds": [
"b8d349f3-7344-4442-aa29-8757cbaf0ec4",
"3c4165d7-b0fe-4c5c-bd16-fa91c4c941da"
],
"AccountState": 7,
"LastPasswordChangeOn": "2026-07-28T11:42:29.7916711+02:00",
"ForcePasswordChangeNextLogon": true,
"EmailConfirmed": true,
"LanguageId": 10,
"Id": "452c99c2-57b9-4640-8b41-235938532556",
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"UserId":"452c99c2-57b9-4640-8b41-235938532556","ClubId":"d5bf14c9-2744-4153-ada5-f166a9f79993","FriendlyName":"sample string 3","NotificationEmail":"sample string 4","PersonId":"ea21c94f-9c33-4048-ab73-ff366f19a601","Remarks":"sample string 5","UserName":"sample string 6","UserRoleIds":["b8d349f3-7344-4442-aa29-8757cbaf0ec4","3c4165d7-b0fe-4c5c-bd16-fa91c4c941da"],"AccountState":7,"LastPasswordChangeOn":"2026-07-28T11:42:29.7916711+02:00","ForcePasswordChangeNextLogon":true,"EmailConfirmed":true,"LanguageId":10,"Id":"452c99c2-57b9-4640-8b41-235938532556","CanUpdateRecord":true,"CanDeleteRecord":true}
application/xml, text/xml
Sample:
<UserDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi.User">
<CanDeleteRecord xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi">true</CanDeleteRecord>
<CanUpdateRecord xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi">true</CanUpdateRecord>
<Id xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi">452c99c2-57b9-4640-8b41-235938532556</Id>
<AccountState>7</AccountState>
<ClubId>d5bf14c9-2744-4153-ada5-f166a9f79993</ClubId>
<EmailConfirmed>true</EmailConfirmed>
<ForcePasswordChangeNextLogon>true</ForcePasswordChangeNextLogon>
<FriendlyName>sample string 3</FriendlyName>
<LanguageId>10</LanguageId>
<LastPasswordChangeOn>2026-07-28T11:42:29.7916711+02:00</LastPasswordChangeOn>
<NotificationEmail>sample string 4</NotificationEmail>
<PersonId>ea21c94f-9c33-4048-ab73-ff366f19a601</PersonId>
<Remarks>sample string 5</Remarks>
<UserId>452c99c2-57b9-4640-8b41-235938532556</UserId>
<UserName>sample string 6</UserName>
<UserRoleIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>b8d349f3-7344-4442-aa29-8757cbaf0ec4</d2p1:guid>
<d2p1:guid>3c4165d7-b0fe-4c5c-bd16-fa91c4c941da</d2p1:guid>
</UserRoleIds>
</UserDetails>