Monday, February 1, 2016

REST API - Delete Item

                $.ajax({
                    url: "https://stageteam.effem.com/sites/Premia/_api/web/lists/getbytitle('" + prolist + "')/GetItemById('" + $scope.SelectedId + "')",
                    type: "DELETE",
                    headers: {
                        "accept": "application/json;odata=verbose",
                        "X-RequestDigest": $("#__REQUESTDIGEST").val(),
                        "If-Match": "*"
                    },
                    success: function (data) {
                        alert("Succes");
                    },
                    error: function (data) {
                        alert("Failure");
                    }
                });
            }

No comments:

Post a Comment