Skip to main content
DELETE
/
digital-wallets
/
{digital_wallet_id}
De-register digital wallet
using RestSharp;


var options = new RestClientOptions("https://api.sandbox.{id}.gr4vy.app/digital-wallets/{digital_wallet_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 digital-wallets.write scope.

Authorizations

Authorization
string
header
required

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

Path Parameters

digital_wallet_id
string
required

The ID of the registered digital wallet.

Example:

"fe26475d-ec3e-4884-9553-f7356683f7f9"

Response

Returns an empty response.