-
Notifications
You must be signed in to change notification settings - Fork 151
5. Conversation
Ranjan Kumar edited this page Jun 18, 2014
·
2 revisions
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}