Project

General

Profile

Project resources and representations » History » Version 2

« Previous - Version 2/7 (diff) - Next » - Current version
Guanji Wang, 27/07/2017 17:20


Project resources and representations

Resources

1. Resources List:

$HOST_DOMAIN = Starter.PUBLIC_HOST_DOMAIN

2. Methods:
  • GET: Resource to modify the current status of a project.
  • PUT: Resource to modify the current status of a project. (activate or deactivate)
  • DELETE: Method to delete a single project by ID
  • POST

3. Examples:

curl -u $username:$userpwd -X GET http://$HOST_DOMAIN/sitools/projects/$project_id
curl -u $username:$userpwd -X GET http://$localhost/sitools/projects/$project_id/graph
curl -u $username:$userpwd -X PUT http://$HOST_DOMAIN/sitools/projects/$project_id/stop
curl -u $username:$userpwd -X PUT http://$HOST_DOMAIN/sitools/projects/$project_id/start

4. PUT and POST

  • POST: Used to modify and update a resource. It is idempotent(Do it as many times I want with the same result at last).
  • PUT: Used to create a resource, or overwrite it. While you specify the resources new URL. It is not idempotent.
  • POST can't be used for modifying the status of a project in Sitools.

Representations

  • JSON response output representation (application/json - )

Example:

http://idoc-medoc-test/project/solar?media=json

Then all information about the project come, including all XML nodes infomation, name, description, datasets result block etc..