POST 17.0/app/contacts/{id}/links

Description

Creates a new contact linked to the passed contact id

URI Parameters

Name Description Type Additional information
id

Id of the contact to link the new contact to

integer

Required

Details of the contact to create

Name Description Type Additional information
FirstName

string

None.

LastName

string

None.

TitleId

integer

None.

Mobile

string

None.

Email

string

None.

BirthDate

date

None.

application/json, text/json

Sample:
{
  "firstName": "sample string 1",
  "lastName": "sample string 2",
  "titleId": 3,
  "mobile": "sample string 4",
  "email": "sample string 5",
  "birthDate": "2025-01-09T20:24"
}

application/xml, text/xml

Sample:
<QuickLink xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <FirstName>sample string 1</FirstName>
  <LastName>sample string 2</LastName>
  <TitleId>3</TitleId>
  <Mobile>sample string 4</Mobile>
  <Email>sample string 5</Email>
  <BirthDate>2025-01-09T20:24:59.6240372+00:00</BirthDate>
</QuickLink>

application/x-www-form-urlencoded

Sample:

Sample not available.

Id of the created contact

Name Description Type Additional information
Id

integer

None.

application/json, text/json

Sample:
{
  "id": 1
}

application/xml, text/xml

Sample:
<NewRecord xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Id>1</Id>
</NewRecord>