Rapor Şablon Kolonlarını Getirir

Muhasebe rapor şablonunun mevcut kolonlarını getirir.

get
Authorizations
Path parameters
IDinteger · int32Required
Responses
200
Muhasebe rapor şablonunun mevcut kolonlarını getirir.
application/json
get
GET /report/Accounting/Columns/Current/{ID} HTTP/1.1
Host: 
Authorization: Bearer JWT
Accept: */*
{
  "Columns": [
    {
      "Name": "text",
      "ID": 1
    }
  ]
}
const axios = require('axios');

let config = {
  method: 'get',
  maxBodyLength: Infinity,
  url: 'https://apitest.nilvera.com/report/Accounting/Columns/Current/0',
  headers: { 
    'Authorization': 'APIKEY'
  }
};

axios.request(config)
.then((response) => {
  console.log(JSON.stringify(response.data));
})
.catch((error) => {
  console.log(error);
});

Last updated