GET V3/odata/InvoiceMutationReason({key})
Gets InvoiceMutationReason entity by key
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| key |
InvoiceMutationReasonId from InvoiceMutationReason entity |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
QicsUnity.Api.Areas.V3.Models.InvoiceMutationReason| Name | Description | Type | Additional information |
|---|---|---|---|
| InvoiceMutationReasonId |
Gets or sets the InvoiceMutationReasonId |
integer |
Required 64-bit signed integer |
| Reason |
Gets or sets reason |
string |
Required |
| IsActive |
Gets or sets a value indicating whether this invoice mutation reason is active |
boolean |
Required |
| CompanyId |
Gets or sets CompanyId |
integer |
Required 64-bit signed integer |
Response Formats
application/json, text/json, application/scim+json
Sample:
{
"InvoiceMutationReasonId": "1",
"Reason": "sample 2",
"IsActive": true,
"CompanyId": "4"
}
application/xml, text/xml
Sample:
<InvoiceMutationReason xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QicsUnity.Api.Areas.V3.Models"> <CompanyId>4</CompanyId> <InvoiceMutationReasonId>1</InvoiceMutationReasonId> <IsActive>true</IsActive> <Reason>sample 2</Reason> </InvoiceMutationReason>