GET api/CommonUser

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

CommonUser
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Nom

string

String length: inclusive between 0 and 50

Prenom

string

String length: inclusive between 0 and 50

Email

string

String length: inclusive between 0 and 256

EmailConfirmed

boolean

None.

PhoneNumber

string

String length: inclusive between 0 and 128

PhoneNumberConfirmed

boolean

None.

TwoFactorEnabled

boolean

None.

LockoutEndDateUtc

date

None.

LockoutEnabled

boolean

None.

AccessFailedCount

integer

None.

UserName

string

String length: inclusive between 0 and 256

ProfileImageContent

string

None.

ProfileImageName

string

None.

NewProfileImageContent

string

None.

Roles

Collection of CommonRole

None.

ProfileImageUrl

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": "7acf8360-4b26-45e5-a2af-a3b321fa48b5",
  "Nom": "sample string 2",
  "Prenom": "sample string 3",
  "Email": "sample string 4",
  "EmailConfirmed": true,
  "PhoneNumber": "sample string 6",
  "PhoneNumberConfirmed": true,
  "TwoFactorEnabled": true,
  "LockoutEndDateUtc": "2025-12-11T00:24:12.2123488+01:00",
  "LockoutEnabled": true,
  "AccessFailedCount": 10,
  "UserName": "sample string 11",
  "ProfileImageContent": "sample string 12",
  "ProfileImageName": "sample string 13",
  "NewProfileImageContent": "sample string 14",
  "Roles": [
    {
      "Id": "c51e4120-6b95-47d3-8506-ed5f1344c912",
      "Nom": "sample string 2"
    },
    {
      "Id": "c51e4120-6b95-47d3-8506-ed5f1344c912",
      "Nom": "sample string 2"
    }
  ],
  "ProfileImageUrl": "sample string 15"
}

application/xml, text/xml

Sample:
<CommonUser xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MesHalles.Common.Objects">
  <AccessFailedCount>10</AccessFailedCount>
  <Email>sample string 4</Email>
  <EmailConfirmed>true</EmailConfirmed>
  <Id>7acf8360-4b26-45e5-a2af-a3b321fa48b5</Id>
  <LockoutEnabled>true</LockoutEnabled>
  <LockoutEndDateUtc>2025-12-11T00:24:12.2123488+01:00</LockoutEndDateUtc>
  <NewProfileImageContent>sample string 14</NewProfileImageContent>
  <Nom>sample string 2</Nom>
  <PhoneNumber>sample string 6</PhoneNumber>
  <PhoneNumberConfirmed>true</PhoneNumberConfirmed>
  <Prenom>sample string 3</Prenom>
  <ProfileImageContent>sample string 12</ProfileImageContent>
  <ProfileImageName>sample string 13</ProfileImageName>
  <ProfileImageUrl>sample string 15</ProfileImageUrl>
  <Roles>
    <CommonRole>
      <Id>c51e4120-6b95-47d3-8506-ed5f1344c912</Id>
      <Nom>sample string 2</Nom>
    </CommonRole>
    <CommonRole>
      <Id>c51e4120-6b95-47d3-8506-ed5f1344c912</Id>
      <Nom>sample string 2</Nom>
    </CommonRole>
  </Roles>
  <TwoFactorEnabled>true</TwoFactorEnabled>
  <UserName>sample string 11</UserName>
</CommonUser>