kc
12 years agoAce
How can I add messages to generic node
I've a chat node like this (http://nerd.com/restapi/vc/nodes/type/key/chat/id/MyNerdySandBox). I want to see if I can allow member to add message to the node. When I try to get (http://nerd.com/restapi/vc/nodes/type/key/chat/id/MyNerdySandBox/messages).
I get this:
<response status="error">
<error code="504">
<message>
Method 'get' is not supported off of node 'generic_node.messages'.
</message>
</error>
</response>
Essentially, my goal is to allow member to add open-ended text to a chat node that I don't need that to be displayed anywhere. I only need to be able to programmatically read those submission back. I don't care they're messages, ideas, or comments as long as multiple members can submit multiple entries.
thanks.