Get All Journal Tracks
GET /ssp/api/1/reference/journalTrack
Parameters
status : ALL, ACTIVE, INACTIVE, DELETED
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)
Returns
{"success" : "true", "results" : "100", "rows" : [{"id" : "23befc50-7f91-11e1-b0c4-0800200c9a66", "createdDate" : "1332216000000", "createdBy" : {"id" : "91f46e39-cea8-422b-b215-00f6bcf5d280", "firstName" : "John", "lastName" : "Doe"}, "modifiedDate" : "1332216000000", "modifiedBy" : {"id" : "91f46e39-cea8-422b-b215-00f6bcf5d280", "firstName" : "John", "lastName" : "Doe"}, "objectStatus" : "ACTIVE", "name" : "Individualized Learning Plan", "description" : "Individualized Learning Plan", "sortOrder" : 1}, {"id" : "7ed6d720-7f91-11e1-b0c4-0800200c9a66", "createdDate" : "1332216000000", "createdBy" : {"id" : "91f46e39-cea8-422b-b215-00f6bcf5d280", "firstName" : "John", "lastName" : "Doe"}, "modifiedDate" : "1332216000000", "modifiedBy" : {"id" : "91f46e39-cea8-422b-b215-00f6bcf5d280", "firstName" : "John", "lastName" : "Doe"}, "objectStatus" : "ACTIVE", "name" : "Early Alert", "description" : "Early Alert" "sortOrder" : 1}, ... ] }
Get One Journal Track
GET /ssp/api/1/reference/journalTrack/{id}
Returns
JournalTrack
{"id" : "23befc50-7f91-11e1-b0c4-0800200c9a66", "createdDate" : "1332216000000", "createdBy" : {"id" : "91f46e39-cea8-422b-b215-00f6bcf5d280", "firstName" : "John", "lastName" : "Doe"}, "modifiedDate" : "1332216000000", "modifiedBy" : {"id" : "91f46e39-cea8-422b-b215-00f6bcf5d280", "firstName" : "John", "lastName" : "Doe"}, "objectStatus" : "ACTIVE", "name" : "Individualized Learning Plan", "description" : "Individualized Learning Plan", "sortOrder" : 1}
Create a Journal Track
POST /ssp/api/1/reference/journalTrack
Sample Post
{"name" : "Individualized Learning Plan", "description" : "Individualized Learning Plan", "sortOrder" : 1}
Returns
JournalTrack
{"id" : "23befc50-7f91-11e1-b0c4-0800200c9a66", "createdDate" : "1332216000000", "createdBy" : {"id" : "91f46e39-cea8-422b-b215-00f6bcf5d280", "firstName" : "John", "lastName" : "Doe"}, "modifiedDate" : "1332216000000", "modifiedBy" : {"id" : "91f46e39-cea8-422b-b215-00f6bcf5d280", "firstName" : "John", "lastName" : "Doe"}, "objectStatus" : "ACTIVE", "name" : "Individualized Learning Plan", "description" : "Individualized Learning Plan", "sortOrder" : 1}
Save a Journal Track
PUT /ssp/api/1/reference/journalTrack/{id}
Sample Post
{"id" : "23befc50-7f91-11e1-b0c4-0800200c9a66", "createdDate" : "1332216000000", "createdBy" : {"id" : "91f46e39-cea8-422b-b215-00f6bcf5d280", "firstName" : "John", "lastName" : "Doe"}, "modifiedDate" : "1332216000000", "modifiedBy" : {"id" : "91f46e39-cea8-422b-b215-00f6bcf5d280", "firstName" : "John", "lastName" : "Doe"}, "objectStatus" : "ACTIVE", "name" : "Individualized Learning Plan", "description" : "Individualized Learning Plan", "sortOrder" : 1}
Returns
JournalTrack
{"id" : "23befc50-7f91-11e1-b0c4-0800200c9a66", "createdDate" : "1332216000000", "createdBy" : {"id" : "91f46e39-cea8-422b-b215-00f6bcf5d280", "firstName" : "John", "lastName" : "Doe"}, "modifiedDate" : "1332216000000", "modifiedBy" : {"id" : "91f46e39-cea8-422b-b215-00f6bcf5d280", "firstName" : "John", "lastName" : "Doe"}, "objectStatus" : "ACTIVE", "name" : "Individualized Learning Plan", "description" : "Individualized Learning Plan", "sortOrder" : 1}
Delete a Journal Track
DELETE /ssp/api/1/reference/journalTrack/{id}
Returns
{"success" : "true"}
or
{"success" : "false", "message" : "Message when success is false."}
Add a Journal Step to a Journal Track
POST /ssp/api/1/reference/journalTrack/{id}/journalStep
Sample Post
{"journalStepId" : "23befc50-7f91-11e1-b0c4-0800200c9a66"}
Returns
{"success" : "true"}
or
{"success" : "false", "message" : "Message when success is false."}
Remove a Journal Step from a Journal Track
DELETE /ssp/api/1/reference/journalTrack/{id}/journalStep
Sample Post
{"journalStepId" : "23befc50-7f91-11e1-b0c4-0800200c9a66"}
Returns
{"success" : "true"}
or
{"success" : "false", "message" : "Message when success is false."}