Skip to content
R-Service R-Service
RR Tech Service Management Developer Guide

People - Contacts API

Tip : If you are looking for information on how to integrate Active Directory or another LDAP system with R-Service, please refer to the Directory Services page of the Import API .

List all contacts of a person with a specific ID:

GET /people/:id/contacts
Status: 200 OK
[
{
"label": "mobile",
"id": 1720,
"telephone": "+1 03 413 7223"
},
{
"label": "personal",
"id": 1826,
"website": "www.my-stie.com"
}
]

The response contains these fields by default.

GET /people/:id/contacts/:id
Status: 200 OK
{
"label": "mobile",
"id": 1720,
"telephone": "+1 03 413 7223",
"integration": true
}

The response contains these fields .

Add a contact to a person with a specific ID.

POST /people/:id/contacts

When creating a new contact for a person these fields are available.

Status: 201 Created
{
"label": "work",
"...": "..."
}

The response contains all fields of the created contact and is similar to the response in Get a single contact of a person

Update a contact with a specific ID of a person with a specific ID.

PATCH /people/:id/contacts/:contact_id

When updating an existing contact for a person these fields are available.

Status: 200 OK
{
"label": "work",
"...": "..."
}

The response contains all fields of the created contact and is similar to the response in Get a single contact of a person

Remove a contact with a specific ID link from a person with a specific ID.

DELETE /people/:id/contacts/:contact_id
Status: 204 No Content

Remove all contacts from a person with a specific ID.

DELETE /people/:id/contacts/
Status: 204 No Content

email

Optional string (max 255) — The Email field is used to enter the person’s work or personal email address.

id

Readonly integer — The unique ID of the contact.

integration

Optional boolean , default: false — The Integration field is a hidden checkbox that can be set to true using this API or the Import functionality. When checked, the contact is displayed as read-only in the user interface to prevent users from updating it.

label

Required enum — The Label of the contact details. Valid values are:

  • chat_skype : only for chat
  • chat_slack : only for chat
  • chat_teams : only for chat
  • chat_workchat : only for chat
  • fax : only for telephone
  • home : only for telephone
  • mobile : only for telephone
  • personal : only for email and website
  • work : only for telephone , email and website

telephone

Optional string (max 255) — The Telephone field is used to enter the person’s work, mobile, home, or fax number.

chat

Optional string (max 255) — The Chat field is used to enter the link that can be used to start a direct chat with the person. A separate link can be entered for each chat application that the person uses.

website

Optional string (max 255) — The Website field is used to enter the person’s work or personal website URL.