Versions Compared

Key

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

...

GET /ssp/api/1/reference/specialServiceGroup

Security

SERVICE_REFERENCE_READ

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)

...

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

Security

SERVICE_REFERENCE_READ

Returns

SpecialServiceGroup

...

POST /ssp/api/1/reference/specialServiceGroup

Security

SERVICE_REFERENCE_WRITE

Sample Post

Code Block
{"description" : "English as a Second Language",
 "name" : "English as a Second Language"}

...

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

Security

SERVICE_REFERENCE_WRITE

Sample Post

Code Block
{"createdBy" : 
    {"id" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
     "firstName" : "John",
     "lastName" : "Doe"},  
 "createdDate" : "1332216000000",
 "description" : "English as a Second Language",
 "id" : "437f6f2b-7b1e-47b4-8603-9e1208605c0d",
 "modifiedBy" : 
    {"id" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
     "firstName" : "John",
     "lastName" : "Doe"},  
 "modifiedDate" : "1332216000000",
 "name" : "English as a Second Language",
 "objectStatus" : "ACTIVE"}

...

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

Security

SERVICE_REFERENCE_WRITE

Returns

Code Block
{"success" : "true"}

...