Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
{"success" : "true",
 "results" : "100",
 "rows" : 
    [{"id" : "6c892a1c-ca07-11e1-8c61-0026b9e7ff4c",
      "createdBy" : 
         {"id" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
          "firstName" : "John",
          "lastName" : "Doe"},
      "createdDate" : 1332216000000,
      "modifiedBy" : 
         {"id" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
          "firstName" : "John",
          "lastName" : "Doe"},
      "modifiedDate" : 1332216000000,
      "objectStatus" : "ACTIVE",
      "startTime" : 1332216000000,
      "endTime" : 1332219600000,
      "expirationDate" : 1332219600000},
     {"id" : "46711355-5a40-4115-b5b9-0bd06986c9e1",
      "createdBy" : 
         {"id" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
          "firstName" : "John",
          "lastName" : "Doe"},
      "createdDate" : 1332216000000,
      "modifiedBy" : 
         {"id" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
          "firstName" : "John",
          "lastName" : "Doe"},
      "modifiedDate" : 1332216000000,
      "objectStatus" : "ACTIVE",
      "startTime" : 1332326000000,
      "endTime" : 1332339600000,
      "expirationDate" : null},
     ...
    ]
}

...

Get Future Appointments

This method will return future, non-expired appointments.

GET /ssp/api/1/person/{id}/appointment/future

Returns

Appointment

Code Block
{"success" : "true",
 "results" : "100",
 "rows" : 
    [{"id" : "46711355-5a40-4115-b5b9-0bd06986c9e1",
      "createdBy" : 
         {"id" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
          "firstName" : "John",
          "lastName" : "Doe"},
      "createdDate" : 1332216000000,
      "modifiedBy" : 
         {"id" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
          "firstName" : "John",
          "lastName" : "Doe"},
      "modifiedDate" : 1332216000000,
      "objectStatus" : "ACTIVE",
      "startTime" : 1332326000000,
      "endTime" : 1332339600000,
      "expirationDate" : null},
     ...
    ]
}

Get an Appointment

GET /ssp/api/1/person/{id}/appointment/{id}

...

Code Block
{"id" : "46711355-5a40-4115-b5b9-0bd06986c9e1",
 "createdBy" : 
   {"id" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
    "firstName" : "John",
    "lastName" : "Doe"},
 "createdDate" : 1332216000000,
 "modifiedBy" : 
   {"id" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
    "firstName" : "John",
    "lastName" : "Doe"},
 "modifiedDate" : 1332216000000,
 "objectStatus" : "ACTIVE",
 "startTime" : 1332326000000,
 "endTime" : 1332339600000,
 "expirationDate" : null}

 


Get Current Appointment

This method will return the next future appointment.  If there is not a future appointment set it will return the last appointment based on date.

...

Code Block
{"id" : "46711355-5a40-4115-b5b9-0bd06986c9e1",
 "createdBy" : 
   {"id" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
    "firstName" : "John",
    "lastName" : "Doe"},
 "createdDate" : 1332216000000,
 "modifiedBy" : 
   {"id" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
    "firstName" : "John",
    "lastName" : "Doe"},
 "modifiedDate" : 1332216000000,
 "objectStatus" : "ACTIVE",
 "startTime" : 1332326000000,
 "endTime" : 1332339600000,
 "expirationDate" : null}

...


Save an Appointment

PUT /ssp/api/1/person/{id}/appointment/{id}

...