POST (Header:PUT) api.ashx/v2/conversations/{id}/participants/{userid}/restore.{json|xml}
Request Parameters
| Name | Type | Location | Description | Required | Default | Options |
|---|---|---|---|---|---|---|
| id | Guid | Path | Id of the conversation | Required | ||
| userid | int | Path | User Id of the participant to restore | Required |
Example Requests
Widget Javascript
jQuery.telligent.evolution.put({
url: jQuery.telligent.evolution.site.getBaseUrl() + 'api.ashx/v2/conversations/{id}/participants/{userid}/restore.json',
data: {
'id': '49fec544-6df7-4a82-872b-f8be586d5e9e',
'userid': '6'
}
}).then(function(response) {
// use response
});