LogicTrade API
  1. Invoice
LogicTrade API
  • Authentication
  • Pagination
  • Rate limits
  • Error codes
  • Changelog
  • Configuration Service
  • Endpoints
    • Authentication
      • Introspection
    • Customer
      • List all customers
      • Retrieve a customer by id
      • Create a customer
      • Update a customer
      • Remove the customer
    • Supplier
      • List all suppliers
      • Retrieve a supplier by id
      • Create a supplier
      • Update a supplier
      • Remove the supplier
    • Product
      • Product
        • List all products
        • Retrieve a product by id
        • Create a product
        • Remove the products
        • Update a product
        • Search products
      • Groups
        • List all product groups
      • Discount
        • List all discounts for products
        • Get all discounts for product by id
        • List all discounts for customers
        • Get all discounts for a customer by id
      • Stock
        • Get stock for products
        • Search stock for products
      • Prices
        • Get product prices
      • Descriptions
        • Get the descriptions for a product
      • References
        • Get the product references
      • Compositions
        • Get product compositions
    • Quote
      • List all quotes
      • Retrieve a quote by id
      • Create a quote
      • Update a quote
    • Sales order
      • List all orders
      • Retrieve an orders by id
      • Create an order
      • Update an order
    • Invoice
      • List all invoices
        GET
      • Retrieve a invoice by id
        GET
      • Create a invoice
        POST
      • Update a invoice
        PUT
    • Delivery
      • Get list of orders that can be delivered
      • Update the order with delivery information
    • Purchase order
      • List all purchase orders
      • Retrieve a purchase orders by id
      • Create a purchase order
      • Update a purchase order
  1. Invoice

Update a invoice

PUT
/rest/v1/invoices/{id}
Change an existing invoice.

Request

Authorization
Add parameter in header
api-key
Example:
api-key: ********************
Path Params

Body Params application/json

Example
{
  "date": "2024-04-08T14:15:48.096Z",
  "reference": "Factuur tbv arbeid.",
  "origin": {
    "code": "WIN"
  },
  "customer": {
    "gender": "Man",
    "title": "Dhr.",
    "initials": "J",
    "firstName": "Jan",
    "infix": "",
    "lastName": "Jansen",
    "companyName": "",
    "phoneNumber": "",
    "mobileNumber": "06-12345678",
    "email": "jan@jansen.com",
    "remark": "",
    "address": {
      "street": "Wethouder Buitenhuisstraat",
      "houseNumber": "2B",
      "zipCode": "7951 SM",
      "city": "Staphorst",
      "country": "NL"
    }
  },
  "invoiceAddress": {
    "street": "Wethouder Buitenhuisstraat",
    "houseNumber": "2B",
    "zipCode": "7951 SM",
    "city": "Staphorst",
    "country": "NL"
  },
  "comment": {
    "intern": "",
    "extern": ""
  },
  "lines": [
    {
      "code": "LT00000043",
      "description": "Gedane arbeid in april '24",
      "salesGroup": {
        "code": "8010"
      },
      "quantity": 3,
      "partPrice": 45,
      "comment": {
        "intern": "",
        "extern": ""
      }
    }
  ]
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://api.logictrade.cloud/rest/v1/invoices/' \
--header 'Content-Type: application/json' \
--header 'api-key;' \
--data-raw '{
  "date": "2024-04-08T14:15:48.096Z",
  "reference": "Factuur tbv arbeid.",
  "origin": {
    "code": "WIN"
  },
  "customer": {
    "gender": "Man",
    "title": "Dhr.",
    "initials": "J",
    "firstName": "Jan",
    "infix": "",
    "lastName": "Jansen",
    "companyName": "",
    "phoneNumber": "",
    "mobileNumber": "06-12345678",
    "email": "jan@jansen.com",
    "remark": "",
    "address": {
      "street": "Wethouder Buitenhuisstraat",
      "houseNumber": "2B",
      "zipCode": "7951 SM",
      "city": "Staphorst",
      "country": "NL"
    }
  },
  "invoiceAddress": {
    "street": "Wethouder Buitenhuisstraat",
    "houseNumber": "2B",
    "zipCode": "7951 SM",
    "city": "Staphorst",
    "country": "NL"
  },
  "comment": {
    "intern": "",
    "extern": ""
  },
  "lines": [
    {
      "code": "LT00000043",
      "description": "Gedane arbeid in april '\''24",
      "salesGroup": {
        "code": "8010"
      },
      "quantity": 3,
      "partPrice": 45,
      "comment": {
        "intern": "",
        "extern": ""
      }
    }
  ]
}'

Responses

🟢200Success
application/json
Body

Example
{
    "id": 1
}
🟠403Forbidden
🟠400Bad Request
🟠404Record Not Found
Modified at 2024-07-30 06:27:42
Previous
Create a invoice
Next
Get list of orders that can be delivered