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": "75dad11e-32a2-4067-a59d-8642942ff5c6",
"UserName": "sample string 2",
"EmailConfirmationLink": "sample string 3"
}
text/html
Sample:
{"UserId":"75dad11e-32a2-4067-a59d-8642942ff5c6","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>75dad11e-32a2-4067-a59d-8642942ff5c6</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": "a6bf1a39-bec0-414e-a0ba-4fbf6853db96",
"ClubId": "ae8f72ee-eafc-4e18-82d0-913b57d79fbe",
"FriendlyName": "sample string 3",
"NotificationEmail": "sample string 4",
"PersonId": "0fefbf18-2a88-48a3-918d-80417ec1d399",
"Remarks": "sample string 5",
"UserName": "sample string 6",
"UserRoleIds": [
"39bc0ce5-02b0-467c-8add-99ceee2f9425",
"4d57058d-35f8-4915-9ae2-eff2477f4e36"
],
"AccountState": 7,
"LastPasswordChangeOn": "2025-12-30T14:41:15.7163785+01:00",
"ForcePasswordChangeNextLogon": true,
"EmailConfirmed": true,
"LanguageId": 10,
"Id": "a6bf1a39-bec0-414e-a0ba-4fbf6853db96",
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"UserId":"a6bf1a39-bec0-414e-a0ba-4fbf6853db96","ClubId":"ae8f72ee-eafc-4e18-82d0-913b57d79fbe","FriendlyName":"sample string 3","NotificationEmail":"sample string 4","PersonId":"0fefbf18-2a88-48a3-918d-80417ec1d399","Remarks":"sample string 5","UserName":"sample string 6","UserRoleIds":["39bc0ce5-02b0-467c-8add-99ceee2f9425","4d57058d-35f8-4915-9ae2-eff2477f4e36"],"AccountState":7,"LastPasswordChangeOn":"2025-12-30T14:41:15.7163785+01:00","ForcePasswordChangeNextLogon":true,"EmailConfirmed":true,"LanguageId":10,"Id":"a6bf1a39-bec0-414e-a0ba-4fbf6853db96","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">a6bf1a39-bec0-414e-a0ba-4fbf6853db96</Id>
<AccountState>7</AccountState>
<ClubId>ae8f72ee-eafc-4e18-82d0-913b57d79fbe</ClubId>
<EmailConfirmed>true</EmailConfirmed>
<ForcePasswordChangeNextLogon>true</ForcePasswordChangeNextLogon>
<FriendlyName>sample string 3</FriendlyName>
<LanguageId>10</LanguageId>
<LastPasswordChangeOn>2025-12-30T14:41:15.7163785+01:00</LastPasswordChangeOn>
<NotificationEmail>sample string 4</NotificationEmail>
<PersonId>0fefbf18-2a88-48a3-918d-80417ec1d399</PersonId>
<Remarks>sample string 5</Remarks>
<UserId>a6bf1a39-bec0-414e-a0ba-4fbf6853db96</UserId>
<UserName>sample string 6</UserName>
<UserRoleIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>39bc0ce5-02b0-467c-8add-99ceee2f9425</d2p1:guid>
<d2p1:guid>4d57058d-35f8-4915-9ae2-eff2477f4e36</d2p1:guid>
</UserRoleIds>
</UserDetails>