POST api/account/GetAccountById?id={id}&token={token}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

token

string

Required

Body Parameters

None.

Response Information

Resource Description

AccountModel
NameDescriptionTypeAdditional information
Id

integer

None.

ClientId

integer

None.

Name

string

None.

Email

string

None.

Password

string

None.

Profile

string

None.

CreationDate

date

None.

Deleted

boolean

None.

DeleteDate

date

None.

PhotoPath

string

None.

Description

string

None.

Active

boolean

None.

LastLogin

date

None.

PhotoBase64

string

None.

Token

string

None.

TokenLifeTime

date

None.

Developer

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "ClientId": 2,
  "Name": "sample string 3",
  "Email": "sample string 4",
  "Password": "sample string 5",
  "Profile": "sample string 6",
  "CreationDate": "2025-12-13T11:15:09.4554651-03:00",
  "Deleted": true,
  "DeleteDate": "2025-12-13T11:15:09.4554651-03:00",
  "PhotoPath": "sample string 10",
  "Description": "sample string 11",
  "Active": true,
  "LastLogin": "2025-12-13T11:15:09.4554651-03:00",
  "PhotoBase64": "sample string 14",
  "Token": "sample string 15",
  "TokenLifeTime": "2025-12-13T11:15:09.4554651-03:00",
  "Developer": true
}

application/xml, text/xml

Sample:
<AccountModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api.Models">
  <Active>true</Active>
  <ClientId>2</ClientId>
  <CreationDate>2025-12-13T11:15:09.4554651-03:00</CreationDate>
  <DeleteDate>2025-12-13T11:15:09.4554651-03:00</DeleteDate>
  <Deleted>true</Deleted>
  <Description>sample string 11</Description>
  <Developer>true</Developer>
  <Email>sample string 4</Email>
  <Id>1</Id>
  <LastLogin>2025-12-13T11:15:09.4554651-03:00</LastLogin>
  <Name>sample string 3</Name>
  <Password>sample string 5</Password>
  <PhotoBase64>sample string 14</PhotoBase64>
  <PhotoPath>sample string 10</PhotoPath>
  <Profile>sample string 6</Profile>
  <Token>sample string 15</Token>
  <TokenLifeTime>2025-12-13T11:15:09.4554651-03:00</TokenLifeTime>
</AccountModel>