GET api/v1/users/my
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
UserDetailsName | 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": "e9f4c420-c22a-467c-98a8-0deb58930491", "ClubId": "bdd2f604-1d5a-40a8-ba2e-2ca397f4b1a3", "FriendlyName": "sample string 3", "NotificationEmail": "sample string 4", "PersonId": "6218ca33-beb0-4785-bb67-4a976b5dbecd", "Remarks": "sample string 5", "UserName": "sample string 6", "UserRoleIds": [ "a43e531b-9261-44ce-9e3a-360ac95094d4", "ae1d7b4c-17a8-42cd-9f9f-dc63c5a8f0a8" ], "AccountState": 7, "LastPasswordChangeOn": "2025-07-14T22:38:30.5814349+02:00", "ForcePasswordChangeNextLogon": true, "EmailConfirmed": true, "LanguageId": 10, "Id": "e9f4c420-c22a-467c-98a8-0deb58930491", "CanUpdateRecord": true, "CanDeleteRecord": true }
text/html
Sample:
{"UserId":"e9f4c420-c22a-467c-98a8-0deb58930491","ClubId":"bdd2f604-1d5a-40a8-ba2e-2ca397f4b1a3","FriendlyName":"sample string 3","NotificationEmail":"sample string 4","PersonId":"6218ca33-beb0-4785-bb67-4a976b5dbecd","Remarks":"sample string 5","UserName":"sample string 6","UserRoleIds":["a43e531b-9261-44ce-9e3a-360ac95094d4","ae1d7b4c-17a8-42cd-9f9f-dc63c5a8f0a8"],"AccountState":7,"LastPasswordChangeOn":"2025-07-14T22:38:30.5814349+02:00","ForcePasswordChangeNextLogon":true,"EmailConfirmed":true,"LanguageId":10,"Id":"e9f4c420-c22a-467c-98a8-0deb58930491","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">e9f4c420-c22a-467c-98a8-0deb58930491</Id> <AccountState>7</AccountState> <ClubId>bdd2f604-1d5a-40a8-ba2e-2ca397f4b1a3</ClubId> <EmailConfirmed>true</EmailConfirmed> <ForcePasswordChangeNextLogon>true</ForcePasswordChangeNextLogon> <FriendlyName>sample string 3</FriendlyName> <LanguageId>10</LanguageId> <LastPasswordChangeOn>2025-07-14T22:38:30.5814349+02:00</LastPasswordChangeOn> <NotificationEmail>sample string 4</NotificationEmail> <PersonId>6218ca33-beb0-4785-bb67-4a976b5dbecd</PersonId> <Remarks>sample string 5</Remarks> <UserId>e9f4c420-c22a-467c-98a8-0deb58930491</UserId> <UserName>sample string 6</UserName> <UserRoleIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:guid>a43e531b-9261-44ce-9e3a-360ac95094d4</d2p1:guid> <d2p1:guid>ae1d7b4c-17a8-42cd-9f9f-dc63c5a8f0a8</d2p1:guid> </UserRoleIds> </UserDetails>