POST api/contacts/create

Request Information

URI Parameters

None.

Body Parameters

contact
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

ProfileId

globally unique identifier

None.

MobilePhoneNumber

string

None.

EmailAddress

string

None.

FaxNumber

string

None.

LandLinePhoneNumber

string

None.

CreatedDate

date

None.

ModifiedDate

date

None.

DeletedDate

date

None.

profile

profile

None.

Request Formats

application/json

Sample:

Sample not available.

text/json

Sample:

Sample not available.

application/xml

Sample:

Sample not available.

text/xml

Sample:

Sample not available.

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Contacts
NameDescriptionTypeAdditional information
ProfileId

globally unique identifier

None.

MobilePhoneNumber

string

None.

EmailAddress

string

None.

FaxNumber

string

None.

LandLinePhoneNumber

string

None.

Id

globally unique identifier

None.

CreatedDate

date

None.

ModifiedDate

date

None.

DeletedDate

date

None.

Response Formats

application/json, text/json

Sample:
{
  "ProfileId": "9507c2ab-b289-498e-b9e6-c9a9a30d3e10",
  "MobilePhoneNumber": "sample string 2",
  "EmailAddress": "sample string 3",
  "FaxNumber": "sample string 4",
  "LandLinePhoneNumber": "sample string 5",
  "Id": "e995a694-904b-4499-9476-41c313c62bc8",
  "CreatedDate": "2025-12-05T20:26:28.9254826-08:00",
  "ModifiedDate": "2025-12-05T20:26:28.9254826-08:00",
  "DeletedDate": "2025-12-05T20:26:28.9254826-08:00"
}

application/xml, text/xml

Sample:
<Contacts xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QuicDoctor.Data.Data">
  <CreatedDate>2025-12-05T20:26:28.9254826-08:00</CreatedDate>
  <DeletedDate>2025-12-05T20:26:28.9254826-08:00</DeletedDate>
  <Id>e995a694-904b-4499-9476-41c313c62bc8</Id>
  <ModifiedDate>2025-12-05T20:26:28.9254826-08:00</ModifiedDate>
  <EmailAddress>sample string 3</EmailAddress>
  <FaxNumber>sample string 4</FaxNumber>
  <LandLinePhoneNumber>sample string 5</LandLinePhoneNumber>
  <MobilePhoneNumber>sample string 2</MobilePhoneNumber>
  <ProfileId>9507c2ab-b289-498e-b9e6-c9a9a30d3e10</ProfileId>
</Contacts>