API Documentation

  • Home
  • ChangeLog
  • Terms of use
  • Swagger UI
  • Account
  • Address
  • Analytic
  • BankAccount
  • Contact
  • Country
  • Currency
  • Customer
  • Dashboard
  • Document
  • DocumentNumbering
  • EFaktura
  • Employee
  • ExchangeRate
  • Inbox
  • IssuedInvoice
  • IssuedInvoicePosting
  • Item
  • Journal
  • JournalType
  • Order
  • Organisation
  • Outbox
  • PaymentMethod
  • PayrollSettings
  • PostalCode
  • ProductGroup
  • PurposeCode
  • ReceivedInvoice
  • ReportTemplate
  • Stock
  • StockEntry
  • User
  • VatAccountingType
  • VatRate
  • Warehouse

EFaktura -> GetEFakturaEntries

Returns EFaktura entries.

Request

Relative request path: api/efaktura/list

  • Description
  • CS
  • PHP
  • Java

PropertyDescription
RegistrationNumberRegistration number
BudgetUserNumberBuget user number
VatIdentificationNumberVAT identification number
NameCompany name
CurrentPageCurrent page index starting with 1 for first page.
PageSizePage size defines number of records returned per page.
SortFieldField name that is used for sorting/ordering result rows.
OrderSort order: A - ascending; D - descending

Filter options:

    public class EFakturaSearchFilter
    {
        // Registration number
        public string RegistrationNumber { get; set; }
        // Buget user number
        public string BudgetUserNumber { get; set; }
        // VAT identification number
        public string VatIdentificationNumber { get; set; }
        // Company name
        public string Name { get; set; }
        // Current page index starting with 1 for first page.
        public int CurrentPage { get; set; }
        // Page size defines number of records returned per page.
        public int PageSize { get; set; }
        // Field name that is used for sorting/ordering result rows.
        public string SortField { get; set; }
        // Sort order: A - ascending; D - descending
        public string Order { get; set; }
    
    }

Request parameters:

    Filter options:

        class EFakturaSearchFilter
        {
            // Registration number
            public $RegistrationNumber;
            // Buget user number
            public $BudgetUserNumber;
            // VAT identification number
            public $VatIdentificationNumber;
            // Company name
            public $Name;
            // Current page index starting with 1 for first page.
            public $CurrentPage;
            // Page size defines number of records returned per page.
            public $PageSize;
            // Field name that is used for sorting/ordering result rows.
            public $SortField;
            // Sort order: A - ascending; D - descending
            public $Order;
        
        }

    Request parameters:

      Filter options:

          public class EFakturaSearchFilter
          {
              // Registration number
              public String RegistrationNumber;
              // Buget user number
              public String BudgetUserNumber;
              // VAT identification number
              public String VatIdentificationNumber;
              // Company name
              public String Name;
              // Current page index starting with 1 for first page.
              public Integer CurrentPage;
              // Page size defines number of records returned per page.
              public Integer PageSize;
              // Field name that is used for sorting/ordering result rows.
              public String SortField;
              // Sort order: A - ascending; D - descending
              public String Order;
          
          }

      Request parameters:

        Response

        • Description
        • CS
        • PHP
        • Java

        PropertyDescription
        RowsReturned rows. List of EFakturaEntry.
        TotalRowsNumber of rows matching search condition.
        CurrentPageNumberCurrent page number. Result rows are returned in pages.
        PageSizeNumbers of rows returned per page.

        This method returns result of type 'SAOP.API.Models.SearchResult`1'.

            /// SearchResult is default return type for all search api methods.
            public class SearchResult<T>
            {
                // Returned rows.
                public T Rows { get; set; }
                // Number of rows matching search condition.
                public long TotalRows { get; set; }
                // Current page number. Result rows are returned in pages.
                public long CurrentPageNumber { get; set; }
                // Numbers of rows returned per page.
                public long PageSize { get; set; }
            
            }

                /// EFaktura entry details.
                public class EFakturaEntry
                {
                    // Registration number
                    public string RegistrationNumber { get; set; }
                    // Buget user number
                    public string BudgetUserNumber { get; set; }
                    // VAT identification number
                    public string VatIdentificationNumber { get; set; }
                    // Company name
                    public string Name { get; set; }
                
                }

        This method returns result of type 'SAOP.API.Models.SearchResult`1'.

            /// SearchResult is default return type for all search api methods.
            class SearchResult
            {
                // Returned rows.
                public $Rows;
                // Number of rows matching search condition.
                public $TotalRows;
                // Current page number. Result rows are returned in pages.
                public $CurrentPageNumber;
                // Numbers of rows returned per page.
                public $PageSize;
            
            }

                /// EFaktura entry details.
                class EFakturaEntry
                {
                    // Registration number
                    public $RegistrationNumber;
                    // Buget user number
                    public $BudgetUserNumber;
                    // VAT identification number
                    public $VatIdentificationNumber;
                    // Company name
                    public $Name;
                
                }

        This method returns result of type 'SAOP.API.Models.SearchResult`1'.

            /// SearchResult is default return type for all search api methods.
            public class SearchResultT
            {
                // Returned rows.
                public T Rows;
                // Number of rows matching search condition.
                public Long TotalRows;
                // Current page number. Result rows are returned in pages.
                public Long CurrentPageNumber;
                // Numbers of rows returned per page.
                public Long PageSize;
            
            }

                /// EFaktura entry details.
                public class EFakturaEntry
                {
                    // Registration number
                    public String RegistrationNumber;
                    // Buget user number
                    public String BudgetUserNumber;
                    // VAT identification number
                    public String VatIdentificationNumber;
                    // Company name
                    public String Name;
                
                }

         
        Authorization endpoint : https://moj.minimax.rs/RS/AUT/OAuth20
        Token endpoint           : https://moj.minimax.rs/RS/AUT/OAuth20/Token
        Return url                   : https://moj.minimax.rs/RS/API/Help/TestClientDialogsAuth
         
        URI parameters
        =
        Headers | Add custom header
        : Delete
        Body
        Samples:
        Status
        Headers
                    
                
        Body