Retrieves all contacts you have access
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult
contact| Name | Description | Type | Additional 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 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
{
"id": "dd3bf9fc-8767-4990-b14f-e4634dc5f552",
"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:01:28.5139161+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
<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>dd3bf9fc-8767-4990-b14f-e4634dc5f552</id> <lastname>sample string 3</lastname> <mobile>sample string 12</mobile> <modified_dateutc>2026-06-24T04:01:28.513Z</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>