Skip to content
Ranjan Kumar edited this page Jun 18, 2014 · 2 revisions

Conversation

A conversation is defined for the request-response scope in which user runs an API.

Getting list of conversations

GET http://localhost:8080/api/conversations

Getting conversations by Id

GET http://localhost:8080/api/conversations/{conversationId}

Creating a new conversation

POST http://localhost:8080/api/conversations

{"name" : "Brand new conversation"}

Updating an existing conversation

PUT http://localhost:8080/api/conversations/{conversationId}

{ “id” : conversationId, "name" : “Social authentication"}

Deleting an existing conversation

DELETE  http://localhost:8080/api/conversations/{conversationId}
Clone this wiki locally