Start a conversation

Client & Case Creation

A simple payload for creating a Client and Case in Case Manager.

Payload

{
   "operations": [
      {
         "type": "ClientCreate",
         "ref": "client",
         "data": {
            "firstName": "John",
            "lastName": "Jeffries",
            "dateOfBirth": "1957-04-14",
            "types": ["Client"]
         }
      },
      {
         "type": "CaseCreate",
         "ref": "case",
         "data": {
            "type": "Portal Referral",
            "client": "$client"
         }
      }
   ]
}

What you will see in Case Manager

The above payload will result in the following records being created in Case Manager;

  • A new Client record called John Jeffries with a DOB of 14/04/1957
  • A new Case record linked to the above client.  The case will be of case type "Portal Referral"
Choose files or drag and drop files
Helpful?
Yes
No
  1. Pete Patel

  2. Posted
  3. Updated

Comments