Approves and Sends the Draft

Taslak irsaliyeyi onaylayıp gönderir.

POST/edespatch/Draft/ConfirmAndSend
Body
Aliasnullable string
UUIDstring (uuid)
Response

Taslak irsaliyeyi onaylayıp gönderir.

Body
string
Request
const response = await fetch('/edespatch/Draft/ConfirmAndSend', {
    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/edespatch/Draft/ConfirmAndSend");
client.Timeout = -1;
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <API KEY>");
request.AddHeader("Content-Type", "application/json");
var body = @"[@"{"Alias":"string",
"UUID": "3fa85f64-5717-4562-b3fc-2c963f66afa6"  }"]";
request.AddParameter("application/json", body,  ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);

Last updated