Skip to main content
Version: 2.8
SEP-24SEP-31SEP-6

Send Refund

POST 

https://custody-server.exampleanchor.com/transactions/:id/refunds

Custody Server calls configured Custody Service to send refund. Custody transaction record is also created in DB.

Request

Body

    memostring

    Memo value, that will be added to the refund payment.

    memoTypestring

    Type of memo, that will be added to the refund payment.

    amountstring

    Amount, that will be refunded.

    amountFeestring

    Fee of the refund.

Responses

Success.
Schema
    idstring

    External TX ID from custody service.

var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://custody-server.exampleanchor.com");
request.Headers.Add("Accept", "application/json");
var content = new StringContent(string.Empty);
content.Headers.ContentType = new MediaTypeHeaderValue("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://custody-server.exampleanchor.com
Body
{
  "memo": "string",
  "memoType": "string",
  "amount": "string",
  "amountFee": "string"
}
Did you find this page helpful?