using RestSharp;
var options = new RestClientOptions("https://api.sandbox.{id}.gr4vy.app/gift-card-services/{gift_card_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": []
}Deletes a specific gift card service.
using RestSharp;
var options = new RestClientOptions("https://api.sandbox.{id}.gr4vy.app/gift-card-services/{gift_card_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": []
}gift-card-services.write scope.Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The unique ID of the gift card service.
"541b126f-44c5-4c5e-a06b-d0e0d54c7d3f"
Returns an empty response.