POST (Header:DELETE) api.ashx/v2/ideas/status.{json|xml}
Request Parameters
Name | Type | Location | Description | Required | Default | Options |
---|---|---|---|---|---|---|
IdeaId | Guid | Request Body | The identifier of the idea from which to delete a status. | Required | ||
IdeaStatusId | int | Request Body | The identifier of the idea status to delete. | Required |
Example Requests
Widget Javascript
jQuery.telligent.evolution.del({ url: jQuery.telligent.evolution.site.getBaseUrl() + 'api.ashx/v2/ideas/status.json', data: { 'IdeaId': '49fec544-6df7-4a82-872b-f8be586d5e9e', 'IdeaStatusId': '6' } }).then(function(response) { // use response });