We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
####/api/signup method=POST
form-data
email = email@mail.com password = strongpassword verify = strongpassword name = userDisplayName
####/api/signin method=POST
email = email@mail.com password = strongpassword
####/api/logout method=POST
####/api/user/password method=POST
old_password = "foo" new_password = "bar"
####/api/group method=POST
data = {"group_name":"cholas"}
####/api/acceptInvite/inviteHash method=GET
####/api/post Create a new post
method=PUT
data = { "title": "fb", "link": "facebook.com", "tags": [ "fb", "social" ], "category": "categoryId", "groups": "groupId" }
####/api/post Edit an existing post
method=POST
data = { "_id": "xxxxxxxxx", "title": "fb", "link": "facebook.com", "tags": [ "fb", "social" ], "category": "categoryId", "groups": "groupId" }
####/api/post/post_id Delete an existing post
method=DELETE
####/api/post?group=groupId
method=GET
####/api/search?q="tag1"
####/api/user/info
####/api/user/group Read existing groups for user
####/api/user/group Create a group for user
data = { "group_name":"group1" }
####/api/user/group/group_id Delete existing group for user