# Create [POST] **https://api.neuro-admin.com/invoice/create** \[POST\]
currency\_idStringEUR, SEK, USD… etc
invoice\_date (optional)StringThe invoice date (if not have will get the sending date)
due\_date (optional) StringThe due date
client\_data (optional)object \*The client data as name, address, ... and where to send and how
invoice\_rows (optional)array of object \*\*Array with invoice row object (item, description, quantity, unitCost, tax)
\* client data object structure:
{
"name": "Test client 01", // (string) optional
"address_line1": "Street Nowhere, 3", // (string) optional
"address_line2": null, // (string) optional
"zip_code": "12345", // (string) optional
"city": "My City", // (string) optional
"country": "My Country", // (string) optional
"vat_number": "123456798", // (string) optional
"sendVia": "Email", // (string) optional (only one of the following: "Email" or "Sms")
"sendTo": "johndoe@test.com" // (string) optional
}
\*\* array of object containing the datas for every invoice row { "item": "Item name", // (string) optional but mandatory if not have description "description": "description", // (string) optional but mandatory if not have item "quantity": 3.1, // (float) optional "unitCost": 10.50, // (float) optional "tax": 12 // (float) optional } [![image.png](https://wiki.paiwise.tech/uploads/images/gallery/2023-11/scaled-1680-/Jc5image.png)](https://wiki.paiwise.tech/uploads/images/gallery/2023-11/Jc5image.png)