Get information base on account

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
e_login

string

Required

e_password

string

Required

Body Parameters :

None.

Response Information

Resource Description :

contact
NameDescriptionTypeAdditional information
id

Primary key

globally unique identifier

Required

firstname

Firstname of the contact

string

Max length: 50

lastname

Lastname of the contact

string

Required

Max length: 50

archived

Archive this contact to not have it anymore on the search

boolean
functions

Function of the contact (ServiceManager,...)

string

Max length: 64

e_login

Login of the contact (if have access to ServiceDesk)

string

Max length: 50

e_password

Password in clear text of the contact (if have access to ServiceDesk)

string

Max length: 50

email

Email of the contact

string

Max length: 250

db_language_iso_code

LanguageCode of the contact

string
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date
phone

Phone number of the contact

string

Max length: 50

mobile

a number of the contact

string

Max length: 50

skype

skype

string

Max length: 250

private_phone

Private phone number of the contact

string

Max length: 50

private_mobile

Private mobile number of the contact

string

Max length: 50

private_email

Private email

string

Max length: 250

Response Formats

application/json, text/json

Sample:
{
  "id": "6258e146-0512-41dd-bc91-92deb046d6ec",
  "firstname": "sample string 2",
  "lastname": "sample string 3",
  "archived": true,
  "functions": "sample string 5",
  "e_login": "sample string 6",
  "e_password": "sample string 7",
  "email": "sample string 8",
  "db_language_iso_code": "sample string 9",
  "modified_dateutc": "2026-06-24T04:09:24.1026455+00:00",
  "phone": "sample string 11",
  "mobile": "sample string 12",
  "skype": "sample string 13",
  "private_phone": "sample string 14",
  "private_mobile": "sample string 15",
  "private_email": "sample string 16"
}

application/xml, text/xml

Sample:
<contact xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <archived>true</archived>
  <db_language_iso_code>sample string 9</db_language_iso_code>
  <e_login>sample string 6</e_login>
  <e_password>sample string 7</e_password>
  <email>sample string 8</email>
  <firstname>sample string 2</firstname>
  <functions>sample string 5</functions>
  <id>6258e146-0512-41dd-bc91-92deb046d6ec</id>
  <lastname>sample string 3</lastname>
  <mobile>sample string 12</mobile>
  <modified_dateutc>2026-06-24T04:09:24.102Z</modified_dateutc>
  <phone>sample string 11</phone>
  <private_email>sample string 16</private_email>
  <private_mobile>sample string 15</private_mobile>
  <private_phone>sample string 14</private_phone>
  <skype>sample string 13</skype>
</contact>