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": "1dd05aa5-2ebe-4e07-aa4b-afffe9b01d73",
"UserName": "sample string 2",
"EmailConfirmationLink": "sample string 3"
}
text/html
Sample:
{"UserId":"1dd05aa5-2ebe-4e07-aa4b-afffe9b01d73","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>1dd05aa5-2ebe-4e07-aa4b-afffe9b01d73</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": "1cddd75e-fb0d-40c3-9e09-efe7eca21341",
"ClubId": "0b31652b-1537-49e7-b1d4-5056f961e75d",
"FriendlyName": "sample string 3",
"NotificationEmail": "sample string 4",
"PersonId": "6ab57df6-2b58-44fa-b975-3b92923f09ad",
"Remarks": "sample string 5",
"UserName": "sample string 6",
"UserRoleIds": [
"9aacb6a7-5f11-4805-b9e1-d4576485dcf0",
"51a1167c-4fcc-4d3b-9aa1-ee7cfa792937"
],
"AccountState": 7,
"LastPasswordChangeOn": "2026-01-16T14:31:23.0278661+01:00",
"ForcePasswordChangeNextLogon": true,
"EmailConfirmed": true,
"LanguageId": 10,
"Id": "1cddd75e-fb0d-40c3-9e09-efe7eca21341",
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"UserId":"1cddd75e-fb0d-40c3-9e09-efe7eca21341","ClubId":"0b31652b-1537-49e7-b1d4-5056f961e75d","FriendlyName":"sample string 3","NotificationEmail":"sample string 4","PersonId":"6ab57df6-2b58-44fa-b975-3b92923f09ad","Remarks":"sample string 5","UserName":"sample string 6","UserRoleIds":["9aacb6a7-5f11-4805-b9e1-d4576485dcf0","51a1167c-4fcc-4d3b-9aa1-ee7cfa792937"],"AccountState":7,"LastPasswordChangeOn":"2026-01-16T14:31:23.0278661+01:00","ForcePasswordChangeNextLogon":true,"EmailConfirmed":true,"LanguageId":10,"Id":"1cddd75e-fb0d-40c3-9e09-efe7eca21341","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">1cddd75e-fb0d-40c3-9e09-efe7eca21341</Id>
<AccountState>7</AccountState>
<ClubId>0b31652b-1537-49e7-b1d4-5056f961e75d</ClubId>
<EmailConfirmed>true</EmailConfirmed>
<ForcePasswordChangeNextLogon>true</ForcePasswordChangeNextLogon>
<FriendlyName>sample string 3</FriendlyName>
<LanguageId>10</LanguageId>
<LastPasswordChangeOn>2026-01-16T14:31:23.0278661+01:00</LastPasswordChangeOn>
<NotificationEmail>sample string 4</NotificationEmail>
<PersonId>6ab57df6-2b58-44fa-b975-3b92923f09ad</PersonId>
<Remarks>sample string 5</Remarks>
<UserId>1cddd75e-fb0d-40c3-9e09-efe7eca21341</UserId>
<UserName>sample string 6</UserName>
<UserRoleIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>9aacb6a7-5f11-4805-b9e1-d4576485dcf0</d2p1:guid>
<d2p1:guid>51a1167c-4fcc-4d3b-9aa1-ee7cfa792937</d2p1:guid>
</UserRoleIds>
</UserDetails>