...
GET /ssp/api/1/person/{id}/appointment
Security
PERSON_APPOINTMENT_READ
Parameters
status : ALL, ACTIVE, INACTIVE
start : First result (0-based index) to return
limit : Maximum number of results to return
sort : Property name
sortDirection : Ascending/descending keyword (ASC/DESC or ASCENDING/DESCENDING)
...
GET /ssp/api/1/person/{id}/appointment/{id}
Security
PERSON_APPOINTMENT_READ
Returns
Appointment
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, "attended" : false} |
...
GET /ssp/api/1/person/{id}/appointment/current
Security
PERSON_APPOINTMENT_READ
Returns
Appointment
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, "attended" : false} |
...
POST /ssp/api/1/person/{id}/appointment
Security
PERSON_APPOINTMENT_WRITE
Sample Post
Code Block |
---|
{"startTime" : 1332326000000, "endTime" : 1332339600000, "attended" : false} |
...
PUT /ssp/api/1/person/{id}/appointment/{id}
Security
PERSON_APPOINTMENT_WRITE
Sample Post
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, "attended" : false} |
...
DELETE /ssp/api/1/person/{id}/appointment/{id}
Security
PERSON_APPOINTMENT_DELETE
Returns
Code Block |
---|
{"success" : "true"} |
...