Skip to main content

Delete Comment

DELETE 

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

You can delete a comment up until your dispute's due date (after the due date, an appropriate error will be returned). A successful response will include the single comment that was deleted (not all comments).

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-comment/:commentId");
    request.Headers.Add("Accept", "application/json");
    request.Headers.Add("Authorization", "Bearer <TOKEN>");
    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
    — pathrequired
    ResponseClear

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