POST api/kill-session

Request Information

URI Parameters

None.

Body Parameters

UsuarioDto
NameDescriptionTypeAdditional information
Id

integer

None.

Username

string

None.

Mail

string

None.

PasswordSalt

string

None.

Password

string

None.

FirstName

string

None.

LastName

string

None.

CreationDate

date

None.

LastSuccessLogin

date

None.

Active

boolean

None.

Blocked

boolean

None.

FailedLoginAttempts

integer

None.

IdRole

integer

None.

DisabledDate

date

None.

BlockedDate

date

None.

PasswordTemp

string

None.

PasswordTempSalt

string

None.

Email

string

None.

IdUser

integer

None.

Aliases

string

None.

ColorSettings

string

None.

IdIssuerBranchComma

string

None.

IdIssuerBranches

Collection of integer

None.

IdGrupo

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Username": "sample string 2",
  "Mail": "sample string 3",
  "PasswordSalt": "sample string 4",
  "Password": "sample string 5",
  "FirstName": "sample string 6",
  "LastName": "sample string 7",
  "CreationDate": "2026-01-13T05:55:51.3021511-06:00",
  "LastSuccessLogin": "2026-01-13T05:55:51.3021511-06:00",
  "Active": true,
  "Blocked": true,
  "FailedLoginAttempts": 1,
  "IdRole": 9,
  "DisabledDate": "2026-01-13T05:55:51.3021511-06:00",
  "BlockedDate": "2026-01-13T05:55:51.3021511-06:00",
  "PasswordTemp": "sample string 10",
  "PasswordTempSalt": "sample string 11",
  "Email": "sample string 12",
  "IdUser": 13,
  "Aliases": "sample string 14",
  "ColorSettings": "sample string 15",
  "IdIssuerBranchComma": "sample string 16",
  "IdIssuerBranches": [],
  "IdGrupo": 1
}

application/xml, text/xml

Sample:
<UsuarioDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Model.Dto">
  <Active>true</Active>
  <Aliases>sample string 14</Aliases>
  <Blocked>true</Blocked>
  <BlockedDate>2026-01-13T05:55:51.3021511-06:00</BlockedDate>
  <ColorSettings>sample string 15</ColorSettings>
  <CreationDate>2026-01-13T05:55:51.3021511-06:00</CreationDate>
  <DisabledDate>2026-01-13T05:55:51.3021511-06:00</DisabledDate>
  <Email>sample string 12</Email>
  <FailedLoginAttempts>1</FailedLoginAttempts>
  <FirstName>sample string 6</FirstName>
  <Id>1</Id>
  <IdGrupo>1</IdGrupo>
  <IdIssuerBranchComma>sample string 16</IdIssuerBranchComma>
  <IdIssuerBranches xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" />
  <IdRole>9</IdRole>
  <IdUser>13</IdUser>
  <LastName>sample string 7</LastName>
  <LastSuccessLogin>2026-01-13T05:55:51.3021511-06:00</LastSuccessLogin>
  <Mail>sample string 3</Mail>
  <Password>sample string 5</Password>
  <PasswordSalt>sample string 4</PasswordSalt>
  <PasswordTemp>sample string 10</PasswordTemp>
  <PasswordTempSalt>sample string 11</PasswordTempSalt>
  <Username>sample string 2</Username>
</UsuarioDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

GenericResponse
NameDescriptionTypeAdditional information
Success

boolean

None.

Message

string

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Message": "sample string 2",
  "Data": {}
}

application/xml, text/xml

Sample:
<GenericResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Helpers">
  <Data />
  <Message>sample string 2</Message>
  <Success>true</Success>
</GenericResponse>