this is my client side ajax call:
var list = [\"a\", \"b\", \"c\", \"d\"]; var jsonText = { data: list }; $.ajax({ type: \
In the backend, you could use FormDataCollection.GetValues(string key) to return an array of strings for that parameter.
FormDataCollection.GetValues(string key)
public HttpResponseMessage UpdateStatusToDelete(FormDataCollection formData) { string[] data = formData.GetValues("data"); ... }