Skip to main content
DELETE
/
anti-fraud-services
/
{anti_fraud_service_id}
Delete anti-fraud service
using RestSharp;


var options = new RestClientOptions("https://api.sandbox.{id}.gr4vy.app/anti-fraud-services/{anti_fraud_service_id}");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("Authorization", "Bearer <token>");
var response = await client.DeleteAsync(request);

Console.WriteLine("{0}", response.Content);
{
  "type": "error",
  "code": "unauthorized",
  "status": 401,
  "message": "No valid API authentication found",
  "details": []
}
This endpoint requires the anti-fraud-services.write scope.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

anti_fraud_service_id
string<uuid>
required

The unique ID for an anti-fraud service.

Example:

"8724fd24-5489-4a5d-90fd-0604df7d3b83"

Response

Returns an empty response.