Home / API Documentation

Update contact

Method: POST api/v1/Account/UpdateContact

Response Format:

application/json

Required Parameters Description Additional information
contactId
No documentation available.

Define this parameter in the request body.

contacttype
No documentation available.

Define this parameter in the request body.

firstname
No documentation available.

Define this parameter in the request body.

middlename
No documentation available.

Define this parameter in the request body.

lastname
No documentation available.

Define this parameter in the request body.

emailaddress
No documentation available.

Define this parameter in the request body.

webaddress
No documentation available.

Define this parameter in the request body.

bussinessname
No documentation available.

Define this parameter in the request body.

contactdescription
No documentation available.

Define this parameter in the request body.

contactphonenumber
No documentation available.

Define this parameter in the request body.

application/json, text/json

Sample Request:
                        {
  "contactId": 1,
  "contacttype": 64,
  "firstname": "sample string 3",
  "middlename": "sample string 4",
  "lastname": "sample string 5",
  "emailaddress": "sample string 6",
  "webaddress": "sample string 7",
  "bussinessname": "sample string 8",
  "contactdescription": "sample string 9",
  "contactphonenumber": {
    "phonetype": 64,
    "phonenumber": "sample string 2",
    "phoneextension": "sample string 3",
    "phonenote": "sample string 4"
  }
};