POST ScheduleInvoice/GetScheduleInvoicePerInvoiceNo

Request Information

URI Parameters

None.

Body Parameters

ScheduleInvoiceModel
NameDescriptionTypeAdditional information
InvoiceNo

integer

None.

CompanyId

integer

None.

BranchId

integer

None.

CustomerId

integer

None.

InvoiceDate

date

None.

Balance

decimal number

None.

IsCompanyCenterialized

integer

None.

Id

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "InvoiceNo": 1,
  "CompanyId": 2,
  "BranchId": 3,
  "CustomerId": 4,
  "InvoiceDate": "2025-10-29T05:43:20.7659983+03:00",
  "Balance": 1.0,
  "IsCompanyCenterialized": 5,
  "Id": 6
}

application/xml, text/xml

Sample:
<ScheduleInvoiceModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POCO">
  <Balance>1</Balance>
  <BranchId>3</BranchId>
  <CompanyId>2</CompanyId>
  <CustomerId>4</CustomerId>
  <Id>6</Id>
  <InvoiceDate>2025-10-29T05:43:20.7659983+03:00</InvoiceDate>
  <InvoiceNo>1</InvoiceNo>
  <IsCompanyCenterialized>5</IsCompanyCenterialized>
</ScheduleInvoiceModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Response
NameDescriptionTypeAdditional information
ErrorCode

integer

None.

ErrorMessage

string

None.

IsScusses

boolean

None.

ResponseDetails

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "ErrorCode": 1,
  "ErrorMessage": "sample string 2",
  "IsScusses": true,
  "ResponseDetails": {}
}

application/xml, text/xml

Sample:
<Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Accounting.API.Models">
  <ErrorCode>1</ErrorCode>
  <ErrorMessage>sample string 2</ErrorMessage>
  <IsScusses>true</IsScusses>
  <ResponseDetails />
</Response>