Faturayı SMS Üzerinden Gönderir

Faturayı sms üzerinden gönderir.

POST/earchive/Invoices/Sms/Send
Body
UUIDstring (uuid)
Phonenullable string
Response

Faturayı sms üzerinden gönderir

Body
string
Request
const response = await fetch('/earchive/Invoices/Sms/Send', {
    method: 'POST',
    headers: {
      "Content-Type": "application/json-patch+json"
    },
    body: JSON.stringify({}),
});
const data = await response.json();
Response
"text"
var options = new RestClientOptions("https://apitest.nilvera.com")
{
    MaxTimeout = -1
};
var client = new RestClient(options);
var request = new RestRequest("/earchive/Invoices/Sms/Send", Method.Post);
request.AddHeader("Content-Type", "application/json");
request.AddHeader("Authorization", "Bearer <API KEY>");
var body = @"
{
    ""UUID"": ""3fa85f64-5717-4562-b3fc-2c963f66afa6"",
    ""Phone"": ""string""
}";
request.AddStringBody(body, DataFormat.Json);
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);