v1

latestOpenAPI 3.0.02026-07-1315476656.4 KB
ContactAddress

update a existing contact address

update a existing contact address.

put/ContactAddress/{contactAddressId}

Path parameters

contactAddressIdinteger required

ID of contact address to return

Request body

streetstring nullable

Street name

zipstring nullable

Zib code

citystring nullable

City name

namestring nullable

Name in address

name2string

Second name in address

name3string nullable

Third name in address

name4string nullable

Fourth name in address

Example request

{
  "contact": {
    "objectName": "Contact"
  },
  "street": "South road 15",
  "zip": "12345",
  "city": "The North",
  "country": {
    "objectName": "StaticCountry"
  },
  "name": "John Snow",
  "name2": "Targaryen"
}

Response

Created - Returns created contact address

idinteger

The contact address id

objectNamestring

The contact address object name

createstring date-time

Date of contact address creation

updatestring date-time

Date of last contact address update

streetstring nullable

Street name

zipstring nullable

Zib code

citystring nullable

City name

namestring nullable

Name in address

name2string

Second name in address

name3string nullable

Third name in address

name4string nullable

Fourth name in address

Example response

{
  "objectName": "ContactAddress",
  "contact": {
    "objectName": "Contact"
  },
  "street": "South road 15",
  "zip": "12345",
  "city": "The North",
  "country": {
    "objectName": "StaticCountry"
  },
  "name": "John Snow",
  "name2": "Targaryen"
}