GET api/Account/SmartSales/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

SmartSalesAdminDTO
NameDescriptionTypeAdditional information
Id

integer

None.

FirstName

string

None.

LastName

string

None.

Email

string

None.

MobilePhone

string

None.

LastLogonDate

date

None.

CreatedDate

date

None.

DisabledDate

date

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "FirstName": "sample string 2",
  "LastName": "sample string 3",
  "Email": "sample string 4",
  "MobilePhone": "sample string 5",
  "LastLogonDate": "2025-08-29T01:14:14.0161441+00:00",
  "CreatedDate": "2025-08-29T01:14:14.0161441+00:00",
  "DisabledDate": "2025-08-29T01:14:14.0161441+00:00"
}

text/html, multipart/form-data, application/zip

Sample:
{"Id":1,"FirstName":"sample string 2","LastName":"sample string 3","Email":"sample string 4","MobilePhone":"sample string 5","LastLogonDate":"2025-08-29T01:14:14.0161441+00:00","CreatedDate":"2025-08-29T01:14:14.0161441+00:00","DisabledDate":"2025-08-29T01:14:14.0161441+00:00"}

application/xml, text/xml

Sample:
<SmartSalesAdminDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DentaCad.DTO">
  <CreatedDate>2025-08-29T01:14:14.0161441+00:00</CreatedDate>
  <DisabledDate>2025-08-29T01:14:14.0161441+00:00</DisabledDate>
  <Email>sample string 4</Email>
  <FirstName>sample string 2</FirstName>
  <Id>1</Id>
  <LastLogonDate>2025-08-29T01:14:14.0161441+00:00</LastLogonDate>
  <LastName>sample string 3</LastName>
  <MobilePhone>sample string 5</MobilePhone>
</SmartSalesAdminDTO>