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

Lists the Attachments of the Invoice

Fatura eklerini getirir.

get
Authorizations
HTTPRequired

API Key Giriniz

Path parameters
UUIDstring · uuidRequired
Responses
200

Fatura eklerini getirir.

application/json
Filestring · nullableOptional
FileNamestring · nullableOptional
FileTypestring · nullableOptional
get/Sale/{UUID}/Attachments
var client = new RestClient("//einvoice/Sale/295f0c1d-faa7-4c8d-a3a7-c761fd033a57/Attachments");
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