POST api/Auth?sufix={sufix}&idUserIdImpersonation={idUserIdImpersonation}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
sufix

string

Required

idUserIdImpersonation

globally unique identifier

None.

Body Parameters

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.

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

Request Formats

application/json, text/json

Sample:
{
  "full_name": "sample string 5 sample string 6",
  "id": "5de453cc-b3a0-4ec9-a88c-4e13d4e773cf",
  "is_delegated": true,
  "agreement": true,
  "view_info": {
    "id": "451f5b81-8622-4aa8-8619-10d63fa09e8a",
    "show_date_of_in_request": true
  },
  "id_role": "97eb9c9f-c758-49d4-ae8c-9b488c0744a3",
  "first_name": "sample string 5",
  "last_name": "sample string 6",
  "is_manager": true,
  "is_hr": true,
  "is_admin": true,
  "image_id": "9796bcee-6c05-4c71-ab06-486464a0c111",
  "email": "sample string 10",
  "phone": "sample string 11",
  "web_popup_ids": "sample string 12",
  "birthdate": "2024-11-21T09:28:56Z",
  "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-21T10:28:56.2263775+01:00</birthdate>
  <deleted>true</deleted>
  <email>sample string 10</email>
  <first_name>sample string 5</first_name>
  <full_name>sample string 5 sample string 6</full_name>
  <id>5de453cc-b3a0-4ec9-a88c-4e13d4e773cf</id>
  <id_role>97eb9c9f-c758-49d4-ae8c-9b488c0744a3</id_role>
  <image_id>9796bcee-6c05-4c71-ab06-486464a0c111</image_id>
  <is_admin>true</is_admin>
  <is_delegated>true</is_delegated>
  <is_hr>true</is_hr>
  <is_manager>true</is_manager>
  <last_name>sample string 6</last_name>
  <phone>sample string 11</phone>
  <state_id>1</state_id>
  <view_info>
    <id>451f5b81-8622-4aa8-8619-10d63fa09e8a</id>
    <show_date_of_in_request>true</show_date_of_in_request>
  </view_info>
  <web_popup_ids>sample string 12</web_popup_ids>
</UserInfo>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>