Versions Compared

Key

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

nodes

GET          nodes          gets the top level nodes
input: none
output: xml representations for a list of top level nodes

Wiki Markup
GET          nodes/node/\[node id\]          get all the child nodes under the parent node specified by id
input: none
output: xml representations for a list of nodes under the specified parent node

POST          nodes          searches for nodes
input: xml representations for search criteria
output: xml representations for a list of nodes match the search criteria

Wiki Markup
*node*
GET          node/\[node id\]          gets the node specified by the node id
input: none
output: xml representations for the specified node

Wiki Markup
GET          node/\[node id\]/content          get the content of the specified node (it should be an atom node)
input: none
\\
output: url of the content or the content itself

POST          node             create a new node
input: xml representation of the node
output: xml representation of the node with the newly created node id 

Wiki Markup
POST          node/\[node id\]/content        save the content of the specified node (it should be an atom node)
input: multi-part content
output: status of the operation

Wiki Markup
DELETE          node/\[node id\]   deletes the node specified by the node id
input: none
output: status of the operation

Wiki Markup
PUT          node/\[node id\]          modifies the node specified by the node id
input: xml representation of the node
output: status of the operation