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": "60151d48-1d26-44b5-86bb-e2ffafc6bd19",
"UserName": "sample string 2",
"EmailConfirmationLink": "sample string 3"
}
text/html
Sample:
{"UserId":"60151d48-1d26-44b5-86bb-e2ffafc6bd19","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>60151d48-1d26-44b5-86bb-e2ffafc6bd19</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": "37901013-da17-42da-aaa5-dec96a433c96",
"ClubId": "3fe33046-86da-4f6e-b215-dea59e23180d",
"FriendlyName": "sample string 3",
"NotificationEmail": "sample string 4",
"PersonId": "248fd653-fbc1-44c2-9515-df2e96c36c30",
"Remarks": "sample string 5",
"UserName": "sample string 6",
"UserRoleIds": [
"a9aa2ecc-b920-45a7-bbcd-e39cec627e8e",
"351a2cdc-3452-49e2-b85e-2420988b3fb8"
],
"AccountState": 7,
"LastPasswordChangeOn": "2026-09-07T09:12:16.0066332+02:00",
"ForcePasswordChangeNextLogon": true,
"EmailConfirmed": true,
"LanguageId": 10,
"Id": "37901013-da17-42da-aaa5-dec96a433c96",
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"UserId":"37901013-da17-42da-aaa5-dec96a433c96","ClubId":"3fe33046-86da-4f6e-b215-dea59e23180d","FriendlyName":"sample string 3","NotificationEmail":"sample string 4","PersonId":"248fd653-fbc1-44c2-9515-df2e96c36c30","Remarks":"sample string 5","UserName":"sample string 6","UserRoleIds":["a9aa2ecc-b920-45a7-bbcd-e39cec627e8e","351a2cdc-3452-49e2-b85e-2420988b3fb8"],"AccountState":7,"LastPasswordChangeOn":"2026-09-07T09:12:16.0066332+02:00","ForcePasswordChangeNextLogon":true,"EmailConfirmed":true,"LanguageId":10,"Id":"37901013-da17-42da-aaa5-dec96a433c96","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">37901013-da17-42da-aaa5-dec96a433c96</Id>
<AccountState>7</AccountState>
<ClubId>3fe33046-86da-4f6e-b215-dea59e23180d</ClubId>
<EmailConfirmed>true</EmailConfirmed>
<ForcePasswordChangeNextLogon>true</ForcePasswordChangeNextLogon>
<FriendlyName>sample string 3</FriendlyName>
<LanguageId>10</LanguageId>
<LastPasswordChangeOn>2026-09-07T09:12:16.0066332+02:00</LastPasswordChangeOn>
<NotificationEmail>sample string 4</NotificationEmail>
<PersonId>248fd653-fbc1-44c2-9515-df2e96c36c30</PersonId>
<Remarks>sample string 5</Remarks>
<UserId>37901013-da17-42da-aaa5-dec96a433c96</UserId>
<UserName>sample string 6</UserName>
<UserRoleIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>a9aa2ecc-b920-45a7-bbcd-e39cec627e8e</d2p1:guid>
<d2p1:guid>351a2cdc-3452-49e2-b85e-2420988b3fb8</d2p1:guid>
</UserRoleIds>
</UserDetails>