POST api/v2/contact/{contactId}/familymember
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
contactId | integer |
Required |
Body Parameters
FamilyMemberName | Description | Type | Additional information |
---|---|---|---|
FamilyMemberID | integer |
None. |
|
ContactID | integer |
None. |
|
Name | string |
None. |
|
DOB | date |
None. |
|
Age | integer |
None. |
|
Notes | string |
None. |
|
IsDeleted | boolean |
None. |
|
DateCreated | date |
None. |
|
LastModified | date |
None. |
|
DOBSet | boolean |
None. |
|
Links | Collection of Link |
None. |
Request Formats
application/json, text/json
Sample:
{ "FamilyMemberID": 1, "ContactID": 1, "Name": "sample string 2", "DOB": "2025-05-20T11:54:07.0086026-07:00", "Age": 0, "Notes": "sample string 3", "IsDeleted": true, "DateCreated": "2025-05-20T11:54:07.0086026-07:00", "LastModified": "2025-05-20T11:54:07.0086026-07:00", "DOBSet": true, "Links": [ { "rel": "sample string 1", "href": "sample string 2" }, { "rel": "sample string 1", "href": "sample string 2" } ] }
application/xml, text/xml
Sample:
<FamilyMember xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CaliberAPI"> <ContactID>1</ContactID> <DOB>2025-05-20T11:54:07.0086026-07:00</DOB> <DOBSet>true</DOBSet> <DateCreated>2025-05-20T11:54:07.0086026-07:00</DateCreated> <FamilyMemberID>1</FamilyMemberID> <IsDeleted>true</IsDeleted> <LastModified>2025-05-20T11:54:07.0086026-07:00</LastModified> <Links> <Link> <href>sample string 2</href> <rel>sample string 1</rel> </Link> <Link> <href>sample string 2</href> <rel>sample string 1</rel> </Link> </Links> <Name>sample string 2</Name> <Notes>sample string 3</Notes> </FamilyMember>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessageName | Description | Type | Additional information |
---|---|---|---|
Version | Version |
None. |
|
Content | HttpContent |
None. |
|
StatusCode | HttpStatusCode |
None. |
|
ReasonPhrase | string |
None. |
|
Headers | Collection of Object |
None. |
|
RequestMessage | HttpRequestMessage |
None. |
|
IsSuccessStatusCode | boolean |
None. |