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

Retrieves the Despatch Note Information

Faturanın irsaliye bilgisini getirir.

get
Authorizations
HTTPRequired

API Key Giriniz

Path parameters
UUIDstring · uuidRequired
Responses
200

Faturanın irsaliye bilgisini getirir.

application/json
IssueDatestring · nullableOptional
DocumentTypeCodestring · nullableOptional
DocumentTypestring · nullableOptional
DocumentDescriptionstring · nullableOptional
get/Sale/{UUID}/DespatchInfo
var client = new RestClient("//einvoice/Sale/295f0c1d-faa7-4c8d-a3a7-c761fd033a57/DespatchInfo");
client.Timeout = -1;
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <API KEY>");
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);

Last updated