For the complete documentation index, see llms.txt. This page is also available as Markdown.

Send Draft Invoice via WhatsApp

Taslak faturayı whatsapp üzerinden gönderir.

post
Authorizations
HTTPRequired

API Key Giriniz

Body
UUIDstring · uuidOptional
Phonestring · nullableOptional
Responses
200

Taslak faturayı whatsapp üzerinden gönderir

application/json
stringOptional
post/Draft/Whatsapp/Send
var client = new RestClient("https://apitest.nilvera.com/einvoice/Draft/Whatsapp/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",
"Phone": "string"}";
request.AddParameter("application/json", body,  ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);

Last updated