Create

Create a client contact record

Create

ParameterDescriptionExampleMore info
APIThe API areaclientcontacts.json
ActionThe action to performaction=create
Parameters described in overviewuser=user&password=userv3.3 Overview
inputClient code (mandatory), then name/value pairs

"data":

[<see example>]

ResponseReturned dataSee below

Notes

clientcontactFirstName OR clientcontactName is mandatory. If you supply one, you do not need to supply the other.

Example request:

http://<SERVER>/jsonapi/clientcontacts.json?user=user&password=user&version=3.3&action=create&input={
  "data": [
    {
      "clientcontactClientCode": "1/2365",
      "clientcontactFirstName": "James"
    }
  ]
}

Example response:

{
  "responsecode": 1,
  "responsestatus": "OK",
  "errorcode": 0,
  "errormessage": "",
  "responsemessage": "data processed successfully.",
  "warningmessage": "",
  "success": true,
  "data": [
    {
      "clientcontactuuid": "4DBB03C727768C4791377A628866A114",
      "clientcontactInternalRef": 8628,
      "clientcontactTimeStampModified": 1532615972,
      "clientcontactRecordVersionNumber": 0
    }
  ]
}