Properties
| Name | Type | Description |
|---|---|---|
| customerTrxId | integer | Customer transaction identifier |
| trxNumber | string | Transaction number |
| trxDate | string | Transaction date |
| customerId | integer | Customer identifier |
| customerName | string | Customer name |
| billToSiteUseId | integer | Bill-to site use identifier |
| shipToSiteUseId | integer | Ship-to site use identifier |
| invoiceCurrencyCode | string | Invoice currency (ISO 4217) |
| trxType | string | Transaction type |
| amount | number | Transaction amount |
| amountDue | number | Remaining amount due |
| status | string | Transaction status |
| termsId | integer | Payment terms identifier |
| lines | array | |
| orgId | integer | |
| creationDate | string | |
| lastUpdateDate | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ArInvoice",
"type": "object",
"properties": {
"customerTrxId": {
"type": "integer",
"description": "Customer transaction identifier"
},
"trxNumber": {
"type": "string",
"description": "Transaction number"
},
"trxDate": {
"type": "string",
"description": "Transaction date"
},
"customerId": {
"type": "integer",
"description": "Customer identifier"
},
"customerName": {
"type": "string",
"description": "Customer name"
},
"billToSiteUseId": {
"type": "integer",
"description": "Bill-to site use identifier"
},
"shipToSiteUseId": {
"type": "integer",
"description": "Ship-to site use identifier"
},
"invoiceCurrencyCode": {
"type": "string",
"description": "Invoice currency (ISO 4217)"
},
"trxType": {
"type": "string",
"description": "Transaction type"
},
"amount": {
"type": "number",
"description": "Transaction amount"
},
"amountDue": {
"type": "number",
"description": "Remaining amount due"
},
"status": {
"type": "string",
"description": "Transaction status"
},
"termsId": {
"type": "integer",
"description": "Payment terms identifier"
},
"lines": {
"type": "array"
},
"orgId": {
"type": "integer"
},
"creationDate": {
"type": "string"
},
"lastUpdateDate": {
"type": "string"
}
}
}