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": "88c0704d-cb24-4424-8e52-e82f0fa5120b",
"UserName": "sample string 2",
"EmailConfirmationLink": "sample string 3"
}
text/html
Sample:
{"UserId":"88c0704d-cb24-4424-8e52-e82f0fa5120b","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>88c0704d-cb24-4424-8e52-e82f0fa5120b</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": "a1e4e407-3587-4c6b-9f68-4f30f61e3007",
"ClubId": "488cd746-7f0d-4ea7-b376-98d05ab82570",
"FriendlyName": "sample string 3",
"NotificationEmail": "sample string 4",
"PersonId": "07c473e5-4149-4e7a-bff4-f5505817d236",
"Remarks": "sample string 5",
"UserName": "sample string 6",
"UserRoleIds": [
"d9c2b1ba-62ce-4e43-8d4c-570dc5bf410e",
"13c18a3f-e6eb-440a-bf1e-cf0666836818"
],
"AccountState": 7,
"LastPasswordChangeOn": "2025-12-04T15:00:22.3287792+01:00",
"ForcePasswordChangeNextLogon": true,
"EmailConfirmed": true,
"LanguageId": 10,
"Id": "a1e4e407-3587-4c6b-9f68-4f30f61e3007",
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"UserId":"a1e4e407-3587-4c6b-9f68-4f30f61e3007","ClubId":"488cd746-7f0d-4ea7-b376-98d05ab82570","FriendlyName":"sample string 3","NotificationEmail":"sample string 4","PersonId":"07c473e5-4149-4e7a-bff4-f5505817d236","Remarks":"sample string 5","UserName":"sample string 6","UserRoleIds":["d9c2b1ba-62ce-4e43-8d4c-570dc5bf410e","13c18a3f-e6eb-440a-bf1e-cf0666836818"],"AccountState":7,"LastPasswordChangeOn":"2025-12-04T15:00:22.3287792+01:00","ForcePasswordChangeNextLogon":true,"EmailConfirmed":true,"LanguageId":10,"Id":"a1e4e407-3587-4c6b-9f68-4f30f61e3007","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">a1e4e407-3587-4c6b-9f68-4f30f61e3007</Id>
<AccountState>7</AccountState>
<ClubId>488cd746-7f0d-4ea7-b376-98d05ab82570</ClubId>
<EmailConfirmed>true</EmailConfirmed>
<ForcePasswordChangeNextLogon>true</ForcePasswordChangeNextLogon>
<FriendlyName>sample string 3</FriendlyName>
<LanguageId>10</LanguageId>
<LastPasswordChangeOn>2025-12-04T15:00:22.3287792+01:00</LastPasswordChangeOn>
<NotificationEmail>sample string 4</NotificationEmail>
<PersonId>07c473e5-4149-4e7a-bff4-f5505817d236</PersonId>
<Remarks>sample string 5</Remarks>
<UserId>a1e4e407-3587-4c6b-9f68-4f30f61e3007</UserId>
<UserName>sample string 6</UserName>
<UserRoleIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>d9c2b1ba-62ce-4e43-8d4c-570dc5bf410e</d2p1:guid>
<d2p1:guid>13c18a3f-e6eb-440a-bf1e-cf0666836818</d2p1:guid>
</UserRoleIds>
</UserDetails>