v1
latestOpenAPI 3.0.12026-07-141671231.8 MBSupplier Invoices
Update a supplier invoice
This endpoint allows you to update a supplier invoice.
ℹ️ This endpoint requires the following scope: supplier_invoices:all
put/api/external/v2/supplier_invoices/{id}
Path parameters
idinteger required
Supplier invoice identifier
Request body
Example request
{
"supplier_id": 456,
"date": "2021-01-30",
"deadline": "2021-01-30",
"invoice_number": "F20230001",
"label": "Custom accounting label",
"currency_amount_before_tax": "100.00",
"currency_amount": "120.00",
"amount": "120.00",
"currency_tax": "20.00",
"tax": "20.00",
"transaction_reference": {
"banking_provider": "bank",
"provider_field_name": "label",
"provider_field_value": "invoice_number"
},
"invoice_lines": {
"create": [
{
"label": "Demo label",
"description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor",
"currency_amount": "120.00",
"amount": "120.00",
"currency_tax": "20.00",
"tax": "20.00",
"ledger_account_id": 1255,
"vat_rate": "FR_200",
"imputation_dates": {
"start_date": "2020-06-30",
"end_date": "2021-06-30"
},
"ledger_entry_line": {
"label": "Demo label"
}
}
],
"update": [
{
"id": 123,
"label": "Demo label",
"description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor",
"currency_amount": "120.00",
"amount": "120.00",
"currency_tax": "20.00",
"tax": "20.00",
"ledger_account_id": 1255,
"vat_rate": "FR_200",
"imputation_dates": {
"start_date": "2020-06-30",
"end_date": "2021-06-30"
},
"ledger_entry_line": {
"label": "Demo label"
}
}
],
"delete": [
{
"id": 123
}
]
},
"external_reference": "FR123"
}Response
The updated supplier invoice
Example response
{
"id": 123,
"label": "Demo label",
"invoice_number": "F20230001",
"amount": "230.32",
"currency_amount": "230.32",
"currency_amount_before_tax": "196.32",
"exchange_rate": "1.0",
"date": "2023-08-30",
"deadline": "2023-09-30",
"currency_tax": "34.0",
"tax": "34.0",
"filename": "my_file.pdf",
"public_file_url": "https://app.pennylane.com/public/invoice/pdf?encrypted_id=bzjoVJe...3D%3D",
"remaining_amount_with_tax": "20.0",
"remaining_amount_without_tax": "16.0",
"ledger_entry": {
"id": 42003
},
"supplier": {
"id": 456,
"url": "https://app.pennylane.com/api/external/v2/suppliers/42"
},
"invoice_lines": {
"url": "https://app.pennylane.com/api/external/v2/supplier_invoices/42/invoice_lines"
},
"categories": {
"url": "https://app.pennylane.com/api/external/v2/supplier_invoices/42/categories"
},
"transaction_reference": {
"banking_provider": "bank",
"provider_field_name": "label",
"provider_field_value": "invoice_number"
},
"payments": {
"url": "https://app.pennylane.com/api/external/v2/supplier_invoices/42/payments"
},
"matched_transactions": {
"url": "https://app.pennylane.com/api/external/v2/supplier_invoices/42/matched_transactions"
},
"external_reference": "FR123",
"e_invoicing": {
"source_file_url": "https://app.pennylane.com/rails/active_storage/blobs/redirect/abc123/invoice.xml"
},
"archived_at": "2023-08-30T10:08:08.146343Z",
"created_at": "2023-08-30T10:08:08.146343Z",
"updated_at": "2023-08-30T10:08:08.146343Z"
}