Toplu Taslak Makbuz Oluşturur
var options = new RestClientOptions("https://apitest.nilvera.com")
{
MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("/eproducer/Draft/CreateBulk", Method.Post);
request.AddHeader("Content-Type", "application/json");
request.AddHeader("Authorization", "APIKEY");
var body = new
{
Producers = new List<object>
{
new
{
Producer = new
{
ProducerInfo = new
{
UUID = "3fa85f64-5717-4562-b3fc-2c963f66afa6",
TemplateUUID = "3fa85f64-5717-4562-b3fc-2c963f66afa6",
TemplateBase64String = "string",
DeliveryDate = DateTime.Parse("2024-07-04T10:33:11.582Z"),
ProducerSerieOrNumber = "string",
IssueDate = DateTime.Parse("2024-07-04T10:33:11.582Z"),
CurrencyCode = "string",
ExchangeRate = 0
},
CompanyInfo = new
{
TaxNumber = "string",
Name = "string",
TaxOffice = "string",
PartyIdentifications = new List<object>
{
new
{
SchemeID = "string",
Value = "string"
}
},
AgentPartyIdentifications = new List<object>
{
new
{
SchemeID = "string",
Value = "string"
}
},
Address = "string",
District = "string",
City = "string",
Country = "string",
PostalCode = "string",
Phone = "string",
Fax = "string",
Mail = "string",
WebSite = "string"
},
CustomerInfo = new
{
TaxNumber = "string",
Name = "string",
TaxOffice = "string",
PartyIdentifications = new List<object>
{
new
{
SchemeID = "string",
Value = "string"
}
},
AgentPartyIdentifications = new List<object>
{
new
{
SchemeID = "string",
Value = "string"
}
},
Address = "string",
District = "string",
City = "string",
Country = "string",
PostalCode = "string",
Phone = "string",
Fax = "string",
Mail = "string",
WebSite = "string"
},
ProducerLines = new List<object>
{
new
{
Name = "string",
Quantity = 0,
UnitType = "string",
Price = 0,
Taxes = new List<object>
{
new
{
TaxCode = "string",
Total = 0,
Percent = 0,
ReasonCode = "string",
ReasonDesc = "string"
}
},
GVWithholdingPercent = 0,
GVWithholdingAmount = 0
}
},
Notes = new List<string>
{
"string"
}
},
Tags = new List<string>
{
"3fa85f64-5717-4562-b3fc-2c963f66afa6"
},
SpecialCode = "string"
}
}
};
request.AddJsonBody(body);
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://apitest.nilvera.com/eproducer/Draft/CreateBulk',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"Producers": [
{
"Producer": {
"ProducerInfo": {
"UUID": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"TemplateUUID": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"TemplateBase64String": "string",
"DeliveryDate": "2024-07-04T10:33:11.582Z",
"ProducerSerieOrNumber": "string",
"IssueDate": "2024-07-04T10:33:11.582Z",
"CurrencyCode": "string",
"ExchangeRate": 0
},
"CompanyInfo": {
"TaxNumber": "string",
"Name": "string",
"TaxOffice": "string",
"PartyIdentifications": [
{
"SchemeID": "string",
"Value": "string"
}
],
"AgentPartyIdentifications": [
{
"SchemeID": "string",
"Value": "string"
}
],
"Address": "string",
"District": "string",
"City": "string",
"Country": "string",
"PostalCode": "string",
"Phone": "string",
"Fax": "string",
"Mail": "string",
"WebSite": "string"
},
"CustomerInfo": {
"TaxNumber": "string",
"Name": "string",
"TaxOffice": "string",
"PartyIdentifications": [
{
"SchemeID": "string",
"Value": "string"
}
],
"AgentPartyIdentifications": [
{
"SchemeID": "string",
"Value": "string"
}
],
"Address": "string",
"District": "string",
"City": "string",
"Country": "string",
"PostalCode": "string",
"Phone": "string",
"Fax": "string",
"Mail": "string",
"WebSite": "string"
},
"ProducerLines": [
{
"Name": "string",
"Quantity": 0,
"UnitType": "string",
"Price": 0,
"Taxes": [
{
"TaxCode": "string",
"Total": 0,
"Percent": 0,
"ReasonCode": "string",
"ReasonDesc": "string"
}
],
"GVWithholdingPercent": 0,
"GVWithholdingAmount": 0
}
],
"Notes": [
"string"
]
},
"Tags": [
"3fa85f64-5717-4562-b3fc-2c963f66afa6"
],
"SpecialCode": "string"
}
]
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json',
'Authorization: APIKEY'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
const axios = require('axios');
let data = JSON.stringify({
"Producers": [
{
"Producer": {
"ProducerInfo": {
"UUID": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"TemplateUUID": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"TemplateBase64String": "string",
"DeliveryDate": "2024-07-04T10:33:11.582Z",
"ProducerSerieOrNumber": "string",
"IssueDate": "2024-07-04T10:33:11.582Z",
"CurrencyCode": "string",
"ExchangeRate": 0
},
"CompanyInfo": {
"TaxNumber": "string",
"Name": "string",
"TaxOffice": "string",
"PartyIdentifications": [
{
"SchemeID": "string",
"Value": "string"
}
],
"AgentPartyIdentifications": [
{
"SchemeID": "string",
"Value": "string"
}
],
"Address": "string",
"District": "string",
"City": "string",
"Country": "string",
"PostalCode": "string",
"Phone": "string",
"Fax": "string",
"Mail": "string",
"WebSite": "string"
},
"CustomerInfo": {
"TaxNumber": "string",
"Name": "string",
"TaxOffice": "string",
"PartyIdentifications": [
{
"SchemeID": "string",
"Value": "string"
}
],
"AgentPartyIdentifications": [
{
"SchemeID": "string",
"Value": "string"
}
],
"Address": "string",
"District": "string",
"City": "string",
"Country": "string",
"PostalCode": "string",
"Phone": "string",
"Fax": "string",
"Mail": "string",
"WebSite": "string"
},
"ProducerLines": [
{
"Name": "string",
"Quantity": 0,
"UnitType": "string",
"Price": 0,
"Taxes": [
{
"TaxCode": "string",
"Total": 0,
"Percent": 0,
"ReasonCode": "string",
"ReasonDesc": "string"
}
],
"GVWithholdingPercent": 0,
"GVWithholdingAmount": 0
}
],
"Notes": [
"string"
]
},
"Tags": [
"3fa85f64-5717-4562-b3fc-2c963f66afa6"
],
"SpecialCode": "string"
}
]
});
let config = {
method: 'post',
maxBodyLength: Infinity,
url: 'https://apitest.nilvera.com/eproducer/Draft/CreateBulk',
headers: {
'Content-Type': 'application/json',
'Authorization': 'APIKEY'
},
data : data
};
axios.request(config)
.then((response) => {
console.log(JSON.stringify(response.data));
})
.catch((error) => {
console.log(error);
});
Last updated