GET V3/odata/OverviewInvoiceMutationReason

Gets OverviewInvoiceMutationReason entities

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of QicsUnity.Api.Areas.V3.Models.OverviewInvoiceMutationReason
NameDescriptionTypeAdditional information
InvoiceMutationReasonId

Gets or sets the PK

integer

64-bit signed integer

Reason

Gets or sets reason

string

None.

IsActive

Gets or sets a value indicating whether reason is active

boolean

None.

CompanyId

Gets or sets company id

integer

64-bit signed integer

Response Formats

application/json, text/json

Sample:
[
  {
    "InvoiceMutationReasonId": "1",
    "Reason": "sample 2",
    "IsActive": true,
    "CompanyId": "4"
  },
  {
    "InvoiceMutationReasonId": "1",
    "Reason": "sample 2",
    "IsActive": true,
    "CompanyId": "4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfOverviewInvoiceMutationReason xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QicsUnity.Api.Areas.V3.Models">
  <OverviewInvoiceMutationReason>
    <CompanyId>4</CompanyId>
    <InvoiceMutationReasonId>1</InvoiceMutationReasonId>
    <IsActive>true</IsActive>
    <Reason>sample 2</Reason>
  </OverviewInvoiceMutationReason>
  <OverviewInvoiceMutationReason>
    <CompanyId>4</CompanyId>
    <InvoiceMutationReasonId>1</InvoiceMutationReasonId>
    <IsActive>true</IsActive>
    <Reason>sample 2</Reason>
  </OverviewInvoiceMutationReason>
</ArrayOfOverviewInvoiceMutationReason>