Update Contact

PUT {{baseUrl}}/contacts/:contactId

Updates contact details (non Joint-member)

Will update all of the details of the contact represented by its id. Any missing details will be set to ‘null’.

Constraint: contactType cannot be ‘Joint Member’

Request Body

KeyDatatypeMandatoryConstraints
firstNameStringNoOnly allowed if the contactType is 'People'
middleNameStringNoOnly allowed if contactType is 'People'
lastNameStringNoOnly allowed if the contactType is 'People'
nameStringNoOnly allowed if the contactType is 'Company'/'Other Entity'
addressIdNumberNoOnly allowed if the contactType is 'People'. Must be a valid existing addressId
titleStringNoOnly allowed if the contactType is 'People'
sexStringNoOnly allowed if the contactType is 'People'. Must be one of 'Male'/'Female'
emailStringNo
mobileStringNo
phone1StringNo
phone2StringNo
taxNumberStringNo
birthdayStringNoOnly allowed if contactType is 'People'. ISO 8601 date https://en.wikipedia.org/wiki/ISO_8601
birthPlaceStringNoOnly allowed if contactType is 'People'
birthStateStringNoOnly allowed if contactType is 'People'. Must be one of 'ACT'/'NSW'/'VIC'/'QLD'/'SA'/'WA'/'TAS'/'NT'/'Foreign'
birthCountryStringNoOnly allowed if contactType is 'People'. ISO 3166 country code/name https://en.wikipedia.org/wiki/ISO_3166
skypeStringNoOnly allowed if contactType is 'People'
businessNumberStringNoOnly allowed if the contactType is 'Company'
placeOfIncorportaionStringNoOnly allowed if the contactType is 'Company'. ISO 3166 country code/name https://en.wikipedia.org/wiki/ISO_3166
incorporationDateStringNoOnly allowed if the contactType is 'Company'. ISO 8601 date https://en.wikipedia.org/wiki/ISO_8601
nationalityStringNoISO 3166 country code/name https://en.wikipedia.org/wiki/ISO_3166 e.g AU

Request Body

["<", "o", "b", "j", "e", "c", "t", ">"]

HEADERS

KeyDatatypeRequiredDescription
Authorizationstring
Content-Typestring

RESPONSES

status: OK

{&quot;firstName&quot;:&quot;John&quot;,&quot;lastName&quot;:&quot;Doe&quot;,&quot;contactType&quot;:&quot;People&quot;,&quot;addressId&quot;:&quot;172843&quot;,&quot;title&quot;:&quot;Mr&quot;,&quot;sex&quot;:&quot;Male&quot;,&quot;email&quot;:&quot;johndoe@mail.com&quot;,&quot;mobile&quot;:&quot;0498111111&quot;,&quot;phone1&quot;:&quot;51643726&quot;,&quot;phone2&quot;:&quot;71726354&quot;,&quot;taxNumber&quot;:&quot;49938271&quot;,&quot;birthday&quot;:&quot;1987-12-25&quot;,&quot;birthPlace&quot;:&quot;Macdeon&quot;,&quot;birthState&quot;:&quot;VIC&quot;,&quot;birthCountry&quot;:&quot;Australia&quot;,&quot;nationality&quot;:null}