Whatsapp İşlem Geçmişini Getirir

Whatsapp ın işlem geçmişini getirir.

GET/edespatch/Sale/{UUID}/Whatsapphistories
Path parameters
UUID*string (uuid)
Response

Whatsapp ın işlem geçmişini getirir.

Body
SIDnullable string
CreatedDatestring (date-time)
Tonullable string
Statusnullable string
TaxNumbernullable string
UUIDnullable string
DateUpdatedstring (date-time)
Request
const response = await fetch('/edespatch/Sale/{UUID}/Whatsapphistories', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  {
    "SID": "text",
    "CreatedDate": "2024-04-29T18:39:19.923Z",
    "To": "text",
    "Status": "text",
    "TaxNumber": "text",
    "UUID": "text",
    "DateUpdated": "2024-04-29T18:39:19.923Z"
  }
]
var client = new RestClient("https://apitest.nilvera.com/edespatch/Sale/64eea613-3c5f-434c-9dfd-c6856a938781/Whatsapphistories");
client.Timeout = -1;
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <API KEY>");
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);