Skip to main content

Delete Evidence

DELETE 

https://chargebacks.sandbox.splitit.com/api/chargebacks/:id/delete-evidence

For an open dispute, you have the ability to delete previously submitted evidence. It can be deleted up until the due date of the dispute (you can receive DueDate back from the Get endpoints). After the due date, an error will be returned. Note that you can delete one or more pieces of evidence with a single call.

Request

Responses

Response Headers

    Authorization: http

    name: bearerAuthtype: httpin: headerscheme: bearer
    var client = new HttpClient();
    var request = new HttpRequestMessage(HttpMethod.Delete, "https://chargebacks.sandbox.splitit.com/api/chargebacks/:id/delete-evidence");
    request.Headers.Add("Accept", "application/json");
    request.Headers.Add("Authorization", "Bearer <TOKEN>");
    var content = new StringContent("{\n \"Ids\": [\n \"string\"\n ]\n}", null, "application/json");
    request.Content = content;
    var response = await client.SendAsync(request);
    response.EnsureSuccessStatusCode();
    Console.WriteLine(await response.Content.ReadAsStringAsync());
    Request Collapse all
    Base URL
    https://chargebacks.sandbox.splitit.com
    Auth
    Parameters
    — pathrequired
    Body
    {
      "Ids": [
        "string"
      ]
    }
    
    ResponseClear

    Click the Send API Request button above and see the response here!