Skip to main content

Accept a Chargeback

PUT 

https://chargebacks.sandbox.splitit.com/api/chargebacks/:id/accept

For an open dispute, you can choose not to fight back but rather to accept the chargeback. After this call is performed, you will not be able to add/remove evidence or comments.

Request

Responses

Response Headers

    Authorization: http

    name: bearerAuthtype: httpin: headerscheme: bearer
    var client = new HttpClient();
    var request = new HttpRequestMessage(HttpMethod.Put, "https://chargebacks.sandbox.splitit.com/api/chargebacks/:id/accept");
    request.Headers.Add("Accept", "application/json");
    request.Headers.Add("Authorization", "Bearer <TOKEN>");
    var content = new StringContent("{\n \"Accept\": true\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 required
    {
      "Accept": true
    }
    
    ResponseClear

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