Delete Comment
DELETEhttps://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
- 200
- 401
- 403
- 404
- 500
- deprecated
Response Headers
Response Headers
Response Headers
Response Headers
Response Headers
Authorization: http
name: bearerAuthtype: httpin: headerscheme: bearer
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
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());
ResponseClear