Home / API Documentation

Add additional contact to account

Method: POST api/v1/Account/AddAdditionalContact

Response Format:

application/json

Required Parameters Description Additional information
companyid
No documentation available.

Define this parameter in the request body.

accountid
No documentation available.

Define this parameter in the request body.

emailinvoice
No documentation available.

Define this parameter in the request body.

emailstatement
No documentation available.

Define this parameter in the request body.

emailrenewal
No documentation available.

Define this parameter in the request body.

emailpostcard
No documentation available.

Define this parameter in the request body.

positionTitle
No documentation available.

Define this parameter in the request body.

contact
No documentation available.

Define this parameter in the request body.

address
No documentation available.

Define this parameter in the request body.

application/json, text/json

Sample Request:
                        {
  "companyid": 1,
  "accountid": 2,
  "emailinvoice": true,
  "emailstatement": true,
  "emailrenewal": true,
  "emailpostcard": true,
  "positionTitle": 7,
  "contact": {
    "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"
    }
  },
  "address": {
    "StreetNumber": "sample string 1",
    "Predirection": "sample string 2",
    "StreetName": "sample string 3",
    "StreetSuffix": "sample string 4",
    "PostDirection": "sample string 5",
    "SecondaryAddress": "sample string 6",
    "City": "sample string 7",
    "State": "sample string 8",
    "PostalCode": "sample string 9",
    "PostalCodeEx": "sample string 10",
    "CountryId": 11,
    "Latitude": 12.1,
    "Longitude": 13.1
  }
};