Giden Faturaları Listeler
var client = new RestClient("//einvoice/Sale?PageSize=100&Page=1&Search=kelime&StartDate=2022-02-28T13:08:30.770Z&EndDate=2022-03-28T13:08:30.770Z&SortColumn=&SortType=<string>&InvoiceProfile=<string>&InvoiceProfile=<string>&InvoiceType=<string>&InvoiceType=<string>&StatusCode=<string>&StatusCode=<string>&AnswerCode=<string>&AnswerCode=<string>&IsRead=true&IsPrint=true&IsArchive=true");
client.Timeout = -1;
var request = new RestRequest(Method.GET);
request.AddHeader("Accept", "text/plain");
request.AddHeader("Authorization", "Bearer <API KEY>");
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => '//einvoice/Sale?PageSize=100&Page=1&Search=kelime&StartDate=2022-02-28T13:08:30.770Z&EndDate=2022-03-28T13:08:30.770Z&SortColumn=&SortType=%3Cstring%3E&InvoiceProfile=%3Cstring%3E&InvoiceProfile=%3Cstring%3E&InvoiceType=%3Cstring%3E&InvoiceType=%3Cstring%3E&StatusCode=%3Cstring%3E&StatusCode=%3Cstring%3E&AnswerCode=%3Cstring%3E&AnswerCode=%3Cstring%3E&IsRead=true&IsPrint=true&IsArchive=true',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_HTTPHEADER => array(
'Accept: text/plain',
'Authorization: Bearer <API KEY>'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
var axios = require('axios');
var config = {
method: 'get',
url: '//einvoice/Sale?PageSize=100&Page=1&Search=kelime&StartDate=2022-02-28T13:08:30.770Z&EndDate=2022-03-28T13:08:30.770Z&SortColumn=&SortType=<string>&InvoiceProfile=<string>&InvoiceProfile=<string>&InvoiceType=<string>&InvoiceType=<string>&StatusCode=<string>&StatusCode=<string>&AnswerCode=<string>&AnswerCode=<string>&IsRead=true&IsPrint=true&IsArchive=true',
headers: {
'Accept': 'text/plain',
'Authorization': 'Bearer <API KEY>'
}
};
axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});