POST api/Invoices/ExcludeInvoices

Request Information

URI Parameters

None.

Body Parameters

Collection of ExcludeInvoices
NameDescriptionTypeAdditional information
DocNum

integer

None.

LotNum

integer

None.

Result

boolean

None.

ErrorInfo

Error

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "DocNum": 1,
    "LotNum": 2,
    "Result": true,
    "ErrorInfo": {
      "errCod": 1,
      "errMessage": "sample string 2"
    }
  },
  {
    "DocNum": 1,
    "LotNum": 2,
    "Result": true,
    "ErrorInfo": {
      "errCod": 1,
      "errMessage": "sample string 2"
    }
  }
]

application/xml, text/xml

Sample:
<ArrayOfExcludeInvoices xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PAGOS.Models">
  <ExcludeInvoices>
    <ErrorInfo>
      <errCod>1</errCod>
      <errMessage>sample string 2</errMessage>
    </ErrorInfo>
    <Result>true</Result>
    <DocNum>1</DocNum>
    <LotNum>2</LotNum>
  </ExcludeInvoices>
  <ExcludeInvoices>
    <ErrorInfo>
      <errCod>1</errCod>
      <errMessage>sample string 2</errMessage>
    </ErrorInfo>
    <Result>true</Result>
    <DocNum>1</DocNum>
    <LotNum>2</LotNum>
  </ExcludeInvoices>
</ArrayOfExcludeInvoices>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.