Properties
| Name | Type | Description |
|---|---|---|
| amount | integer | If a matching object exists in Modern Treasury, `amount` will be populated. Value in specified currency's smallest unit (taken from parent Transaction). |
| expected_payment_id | string | The ID of the reconciled Expected Payment, otherwise `null`. |
| transaction_id | string | The ID of the parent transaction. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/transaction_line_item_create_request",
"title": "transaction_line_item_create_request",
"type": "object",
"properties": {
"amount": {
"type": "integer",
"description": "If a matching object exists in Modern Treasury, `amount` will be populated. Value in specified currency's smallest unit (taken from parent Transaction)."
},
"expected_payment_id": {
"type": "string",
"format": "uuid",
"description": "The ID of the reconciled Expected Payment, otherwise `null`."
},
"transaction_id": {
"type": "string",
"format": "uuid",
"description": "The ID of the parent transaction."
}
},
"required": [
"amount",
"transaction_id",
"expected_payment_id"
]
}