Skip to main content

Delete specific sandbox card account transaction

DELETE 

https://openbanking.skudeaakra.no/api-sandbox/v1/sandbox/card-accounts/:mockCardAccountId/transactions/:mockTransactionId

Delete a specific transaction from a card account created using POST /v1/sandbox/card-accounts

Request

Responses

var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Delete, "https://openbanking.skudeaakra.no/api-sandbox/v1/sandbox/card-accounts/:mockCardAccountId/transactions/:mockTransactionId");
request.Headers.Add("Accept", "application/json");
var content = new StringContent("\"string\"", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://openbanking.skudeaakra.no/api-sandbox
Parameters
— pathrequired
— pathrequired
— headerrequired
— headerrequired
— headerrequired
— header
— header
— header
— header
— header
Body required
"string"