Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Get All Education Levels

GET /ssp/api/1/reference/educationLevel

Parameters

status : ALL, ACTIVE, INACTIVE, DELETED<br>
start : First result (0-based index) to return<br>
limit : Maximum number of results to return<br>
sort : Property name<br>
sortDirection : Ascending/descending keyword (ASC/DESC or ASCENDING/DESCENDING)

Returns

List<EducationLevel>

[{"createdById" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
  "createdDate" : "1332216000000",
  "description" : "Attending High School",
  "id" : "6201b18d-9d1d-48d3-82d4-092e52ad676b",
  "modifiedById" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
  "modifiedDate" : "1332216000000",
  "name" : "Attending High School",
  "objectStatus" : "ACTIVE"},
 {"createdById" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
  "createdDate" : "1332216000000",
  "description" : "College Degree - 2 Year",
  "id" : "c57f11e1-7ef2-4989-9ac2-7b0690563995",
  "modifiedById" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
  "modifiedDate" : "1332216000000",
  "name" : "College Degree - 2 Year",
  "objectStatus" : "ACTIVE"},
 ...
]

 

Get an Education Level

GET /ssp/api/1/reference/educationLevel/{id}

Returns

EducationLevel

{"createdById" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
 "createdDate" : "1332216000000",
 "description" : "College Degree - 2 Year",
 "id" : "c57f11e1-7ef2-4989-9ac2-7b0690563995",
 "modifiedById" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
 "modifiedDate" : "1332216000000",
 "name" : "College Degree - 2 Year",
 "objectStatus" : "ACTIVE"}

 

Create an Education Level

POST /ssp/api/1/reference/educationLevel

Sample Post

{"description" : "College Degree - 2 Year",
 "name" : "College Degree - 2 Year"}

Returns

EducationLevel

{"createdById" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
 "createdDate" : "1332216000000",
 "description" : "College Degree - 2 Year",
 "id" : "c57f11e1-7ef2-4989-9ac2-7b0690563995",
 "modifiedById" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
 "modifiedDate" : "1332216000000",
 "name" : "College Degree - 2 Year",
 "objectStatus" : "ACTIVE"}

 

Save an Education Level

PUT /ssp/api/1/reference/educationLevel/{id}

Sample Post

{"createdById" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
 "createdDate" : "1332216000000",
 "description" : "College Degree - 2 Year",
 "id" : "c57f11e1-7ef2-4989-9ac2-7b0690563995",
 "modifiedById" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
 "modifiedDate" : "1332216000000",
 "name" : "College Degree - 2 Year",
 "objectStatus" : "ACTIVE"}

Returns

EducationLevel

{"createdById" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
 "createdDate" : "1332216000000",
 "description" : "College Degree - 2 Year",
 "id" : "c57f11e1-7ef2-4989-9ac2-7b0690563995",
 "modifiedById" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
 "modifiedDate" : "1332216000000",
 "name" : "College Degree - 2 Year",
 "objectStatus" : "ACTIVE"}

 

Delete a Education Level

DELETE /ssp/api/1/reference/educationLevel/{id}

Returns

{"success" : "true"}

or

{"success" : "false", 
 "message" : "Message when success is false."}
  • No labels