Makbuzu Mail Üzerinden Gönderir

Makbuzu mail üzerinden gönderir.

POST/evoucher/Vouchers/Email/Send
Body
UUIDstring (uuid)
emailAddressesnullable array of string
Response

Makbuzu mail üzerinden gönderir.

Body
string
Request
const response = await fetch('/evoucher/Vouchers/Email/Send', {
    method: 'POST',
    headers: {
      "Content-Type": "application/json-patch+json"
    },
    body: JSON.stringify({}),
});
const data = await response.json();
Response
"text"
var client = new RestClient("https://apitest.nilvera.com/evoucher/Vouchers/Email/Send");
client.Timeout = -1;
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <API KEY>");
request.AddHeader("Content-Type", "application/json");
var body = @"{"UUID": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"emailAddresses": ["string"]}";
request.AddParameter("application/json", body,  ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);