Get All Program Statuses
GET /ssp/api/1/reference/programStatus
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" : "ce0d041d-d3ac-42a1-9085-7f744240e07e", "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", "name" : "Active", "description" : "Student is part of an active program."}, {"id" : "e34b0d14-f6f0-4adb-85c6-694de9fc0685", "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", "name" : "Non-participating", "description" : "The student has chosen to not participate in the advising services offered by the college."}, ... ] }
Get a Student Type
GET /ssp/api/1/reference/programStatus/{id}
Returns
{"id" : "ce0d041d-d3ac-42a1-9085-7f744240e07e", "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", "name" : "Active", "description" : "Student is part of an active program."}
Create a Student Type
POST /ssp/api/1/reference/programStatus
Sample Post
{"name" : "Active", "description" : "Student is part of an active program."}
Returns
ProgramStatus
{"id" : "ce0d041d-d3ac-42a1-9085-7f744240e07e", "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", "name" : "Active", "description" : "Student is part of an active program."}
Save a Program Status
PUT /ssp/api/1/reference/programStatus/{id}
Sample Post
{"id" : "ce0d041d-d3ac-42a1-9085-7f744240e07e", "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", "name" : "Active", "description" : "Student is part of an active program."}
Returns
ProgramStatus
{"id" : "ce0d041d-d3ac-42a1-9085-7f744240e07e", "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", "name" : "Active", "description" : "Student is part of an active program."}
Delete a Program Status
DELETE /ssp/api/1/reference/programStatus/{id}
Returns
{"success" : "true"}
or
{"success" : "false", "message" : "Message when success is false."}