Delete a Board Assignment From a Group

This call deletes a particular board assignment from a specified group.

Endpoint description
Description Deletes a board assignment from a group
URL /groups/{groupname}/boards/{boardname}/{viewname}/{viewlabel}
Method DELETE
Parameters
  • groupname

  • boardname

  • viewname

  • viewlabel

Review the parameter definitions and examples of how to use this endpoint in JQuery and C# calls.

Parameters

Endpoint parameters
Variable Name Type Description Required
groupname String The name of the group assigned to the board True (URL)
boardname String The name of the board assigned to the group True (URL)
viewname String The name of the view that is assigned to the group True (URL)
viewlabel String The label associated with the assigned board True (URL)

Examples

JQuery Call

Copy Code
$.ajax({

    async: false,
    contentType: 'application/json',
    type: 'DELETE',
    url: baseUrl + '/groups/Group A/boards/Board A/List A/Board A View'
}); 

C# Call

Copy Code
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Delete, "baseUrl/api/rest.svc/groups/Group A/boards/Board A/List A/Board A View");
var content = new StringContent("", null, "text/plain");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());