Template:Json User Block - Java
From Updox API
private Map<String,Object> BuildMessage() throws Exception
{
Map<String,Object> messageData = new HashMap();
messageData.put("userId","newUserId");
messageData.put("loginId","newLoginId");
messageData.put("loginPassword","password");
messageData.put("firstName", "Ima"); // required
messageData.put("middleName", "Joy");
messageData.put("lastName", "Usertino");
messageData.put("address1", "94 N. High St");
messageData.put("address2", "Suite 100");
messageData.put("city", "Dublin");
messageData.put("state", "OH");
messageData.put("postal", "43017");
messageData.put("timeZone", "America/Chicago");
messageData.put("active","true"); //recommended, defaults to "false"
messageData.put("provider", "false");
messageData.put("directAddress", "practice_direct");
authData.put("applicationId", "vendorId");
authData.put("applicationPassword", "vendorPassword");
authData.put("accountId", "accountId");
return messageData;
}