Versions Compared

Key

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

...

List<Challenge>

Code Block
[{"id" : "23befc50240e97c0-7f917fe5-11e1-b0c4-0800200c9a66",
  "createdDate" : "2008-04-09T12:07:56",
  "createdById" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
  "modifiedDate" : "2008-04-09T12:07:56",
  "modifiedById" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
  "objectStatus" : "ACTIVE",
  "name" : "AthleticsChild Care",
  "description" : "AthleticsChild care description text.",
  "tags" : "",
  "showInStudentIntake" : "true",
  "showInSelfHelpSearch" : "false",
  "selfHelpGuideQuestion" : "",
  "selfHelpGuideDescription" : "",
  "defaultConfidentialityLevel" : "EVERYONE"},
 {"id" : "7ed6d7203c952070-7f917fe5-11e1-b0c4-0800200c9a66",
  "createdDate" : "2008-04-09T12:07:56",
  "createdById" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
  "modifiedDate" : "2008-04-09T12:07:56",
  "modifiedById" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
  "objectStatus" : "ACTIVE",
  "name" : "DisplacedEnhancing Academic WorkersExcellence",
  "description" : "Displaced workers description."Opportunities for students seeking to take their academics to the next level.",
  "tags" : "",
  "showInStudentIntake" : "true",
  "showInSelfHelpSearch" : "false",
  "selfHelpGuideQuestion" : "",
  "selfHelpGuideDescription" : "",
  "defaultConfidentialityLevel" : "EVERYONE"},
 ...
]

 

Get a Challenge

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

...

Challenge

Code Block
{"id" : "23befc503c952070-7f917fe5-11e1-b0c4-0800200c9a66",
 "createdDate" : "2008-04-09T12:07:56",
 "createdById" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
 "modifiedDate" : "2008-04-09T12:07:56",
 "modifiedById" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
 "objectStatus" : "ACTIVE",
 "name" : "AthleticsEnhancing Academic Excellence",
 "description" : "Athletics description."Opportunities for students seeking to take their academics to the next level.",
 "tags" : "",
 "showInStudentIntake" : "true",
 "showInSelfHelpSearch" : "false",
 "selfHelpGuideQuestion" : "",
 "selfHelpGuideDescription" : "",
 "defaultConfidentialityLevel" : "EVERYONE"}

 

Create a Challenge

POST /ssp/api/1/reference/categorychallenge

Sample Post

Code Block
{"name" : "ARC.",
 "description" : "Academic Resource CenterEnhancing Academic Excellence",
 "description" : "Opportunities for students seeking to take their academics to the next level.",
 "tags" : "",
 "showInStudentIntake" : "true",
 "showInSelfHelpSearch" : "false",
 "selfHelpGuideQuestion" : "",
 "selfHelpGuideDescription" : "",
 "defaultConfidentialityLevel" : "EVERYONE"}

Returns

Challenge

Code Block
{"id" : "23befc503c952070-7f917fe5-11e1-b0c4-0800200c9a66",
 "createdDate" : "2008-04-09T12:07:56",
 "createdById" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
 "modifiedDate" : "2008-04-09T12:07:56",
 "modifiedById" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
 "objectStatus" : "ACTIVE",
 "name" : "ARCEnhancing Academic Excellence",
 "description" : "Academic Resource Center."Opportunities for students seeking to take their academics to the next level.",
 "tags" : "",
 "showInStudentIntake" : "true",
 "showInSelfHelpSearch" : "false",
 "selfHelpGuideQuestion" : "",
 "selfHelpGuideDescription" : "",
 "defaultConfidentialityLevel" : "EVERYONE"}

 

Save a Challenge

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

Sample Post

Code Block
{"id" : "23befc503c952070-7f917fe5-11e1-b0c4-0800200c9a66",
 "createdDate" : "2008-04-09T12:07:56",
 "createdById" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
 "modifiedDate" : "2008-04-09T12:07:56",
 "modifiedById" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
 "objectStatus" : "ACTIVE",
 "name" : "ARCEnhancing Academic Excellence",
 "description" : "Academic Resource Center."Opportunities for students seeking to take their academics to the next level.",
 "tags" : "",
 "showInStudentIntake" : "true",
 "showInSelfHelpSearch" : "false",
 "selfHelpGuideQuestion" : "",
 "selfHelpGuideDescription" : "",
 "defaultConfidentialityLevel" : "EVERYONE"}

Returns

Challenge

Code Block
{"id" : "23befc503c952070-7f917fe5-11e1-b0c4-0800200c9a66",
 "createdDate" : "2008-04-09T12:07:56",
 "createdById" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
 "modifiedDate" : "2008-04-09T12:07:56",
 "modifiedById" : "91f46e39-cea8-422b-b215-00f6bcf5d280",
 "objectStatus" : "ACTIVE",
 "name" : "ARCEnhancing Academic Excellence",
 "description" : "Academic Resource Center.Opportunities for students seeking to take their academics to the next level.",
 "tags" : "",
 "showInStudentIntake" : "true",
 "showInSelfHelpSearch" : "false",
 "selfHelpGuideQuestion" : "",
 "selfHelpGuideDescription" : "",
 "defaultConfidentialityLevel" : "EVERYONE"}

 

Delete a Challenge

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

...