POST api/v1/auth/info

Request Information

URI Parameters

None.

Body Parameters

InfoRequest
NameDescriptionTypeAdditional information
load_children

boolean

Required

Request Formats

application/json, text/json

Sample:
{
  "load_children": true
}

application/xml, text/xml

Sample:
<InfoRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IO.Swagger.Models">
  <load_children>true</load_children>
</InfoRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

UserInfo
NameDescriptionTypeAdditional information
full_name

string

None.

id

globally unique identifier

Required

is_delegated

boolean

None.

agreement

boolean

None.

view_info

ViewInfo

None.

id_role

globally unique identifier

None.

is_editor

boolean

None.

first_name

string

None.

last_name

string

None.

is_manager

boolean

None.

is_hr

boolean

None.

is_admin

boolean

None.

image_id

globally unique identifier

None.

email

string

None.

phone

string

None.

web_popup_ids

string

None.

birthdate

date

None.

deleted

boolean

Required

state_id

integer

Required

Response Formats

application/json, text/json

Sample:
{
  "full_name": "sample string 6 sample string 7",
  "id": "1197ce00-19d0-46f0-a1a4-7ee2dcba0234",
  "is_delegated": true,
  "agreement": true,
  "view_info": {
    "id": "100f2bfc-5107-4946-a04f-d29a99bd0905",
    "show_date_of_in_request": true
  },
  "id_role": "041fa8a6-74ec-4a6f-8e15-200edb1c4a64",
  "is_editor": true,
  "first_name": "sample string 6",
  "last_name": "sample string 7",
  "is_manager": true,
  "is_hr": true,
  "is_admin": true,
  "image_id": "39fa20e2-568d-487e-8a05-484cdd376c12",
  "email": "sample string 11",
  "phone": "sample string 12",
  "web_popup_ids": "sample string 13",
  "birthdate": "2024-11-21T10:00:24Z",
  "deleted": true,
  "state_id": 1
}

application/xml, text/xml

Sample:
<UserInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IO.Swagger.Models">
  <agreement>true</agreement>
  <birthdate>2024-11-21T11:00:24.7852573+01:00</birthdate>
  <deleted>true</deleted>
  <email>sample string 11</email>
  <first_name>sample string 6</first_name>
  <full_name>sample string 6 sample string 7</full_name>
  <id>1197ce00-19d0-46f0-a1a4-7ee2dcba0234</id>
  <id_role>041fa8a6-74ec-4a6f-8e15-200edb1c4a64</id_role>
  <image_id>39fa20e2-568d-487e-8a05-484cdd376c12</image_id>
  <is_admin>true</is_admin>
  <is_delegated>true</is_delegated>
  <is_editor>true</is_editor>
  <is_hr>true</is_hr>
  <is_manager>true</is_manager>
  <last_name>sample string 7</last_name>
  <phone>sample string 12</phone>
  <state_id>1</state_id>
  <view_info>
    <id>100f2bfc-5107-4946-a04f-d29a99bd0905</id>
    <show_date_of_in_request>true</show_date_of_in_request>
  </view_info>
  <web_popup_ids>sample string 13</web_popup_ids>
</UserInfo>