curl --request POST \
--url https://api.mijnklantportaal.nl/v1/customer-invoices \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form customerId=cst_abc12345def678 \
--form invoiceNumber=2014-001 \
--form issuedAt=2024-04-31 \
--form amount=12.95 \
--form pdf='@example-file' \
--form 'paidAt=2024-05-11 12:59:00' \
--form sendNotification=true{
"id": "inv_abc12345def678",
"customerId": "cst_abc12345def678",
"invoiceNumber": "2024-001",
"issuedAt": "2024-04-29",
"currency": "EUR",
"amount": "12.95",
"paidAt": "2024-05-28T21:00:00+02:00",
"createdAt": "2024-04-29T21:00:00+02:00",
"links": {
"customer": {
"href": "https://api.mijnklantportaal.nl/v1/customers/cst_abc12345def678",
"type": "<string>"
}
}
}Add a new Customer Invoice to your portal.
Important! Note that this request is not JSON, but a multipart/form-data post.
curl --request POST \
--url https://api.mijnklantportaal.nl/v1/customer-invoices \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form customerId=cst_abc12345def678 \
--form invoiceNumber=2014-001 \
--form issuedAt=2024-04-31 \
--form amount=12.95 \
--form pdf='@example-file' \
--form 'paidAt=2024-05-11 12:59:00' \
--form sendNotification=true{
"id": "inv_abc12345def678",
"customerId": "cst_abc12345def678",
"invoiceNumber": "2024-001",
"issuedAt": "2024-04-29",
"currency": "EUR",
"amount": "12.95",
"paidAt": "2024-05-28T21:00:00+02:00",
"createdAt": "2024-04-29T21:00:00+02:00",
"links": {
"customer": {
"href": "https://api.mijnklantportaal.nl/v1/customers/cst_abc12345def678",
"type": "<string>"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
ID of the customer this invoice is meant for
"cst_abc12345def678"
Number of the invoice, as string
"2014-001"
Date when the invoice is issued, in YYYY-mm-dd format
"2024-04-31"
Amount of the invoice, as string. Only Euro (EUR) is supported at the moment.
"12.95"
The PDF file of the invoice
Date and time when the invoice is paid, in YYYY-mm-dd HH:mm:ss format. Leave empty when the invoice is still due.
"2024-05-11 12:59:00"
Indicates if MijnKlantportaal should send out the notification to inform the customer about the new invoice
true
Returning the created Customer Invoice
Customer Invoice
ID of the invoice, always starting with inv_.
"inv_abc12345def678"
ID of the customer which the invoice belongs to.
"cst_abc12345def678"
Number of the invoice as string.
"2024-001"
Issue date of the invoice. Formatted as YYYY-mm-dd.
"2024-04-29"
Currency of the invoice amount.
"EUR"
Invoice amount as string.
"12.95"
Date the invoice is marked as paid. Written in ATOM format.
"2024-05-28T21:00:00+02:00"
Date and time when the invoice was added to MijnKlantportaal. Written in ATOM format.
"2024-04-29T21:00:00+02:00"
Show child attributes