Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

What are their differences and what are the similarities?

Table of Contents

Orders

In Autoflex, Orders are used for the following items

...

Code Block
themeMidnight
titleOrderType
linenumberstrue
# Get list of OrderTypes
curl -X GET "https://www.autoflex10.dev/autoflex/servoy-service/velocity/webservice_v2/util/list?list=ordertypes" -H "accept: */*" -H "token: AAAA-BBB-CCCC"

{
  "ordertypes": {
    "WORKSHOP": 1,
    "VEHICLE_PURCHASE": 3,
    "INTERNAL_REVERSAL": 4,
    "BPM": 5,
    "VEHICLE_SALES": 2
  }
}

# Get only WorkShop orders
# order_type[eq]:1
curl -X GET "https://www.autoflex10.dev/autoflex/servoy-service/velocity/webservice_v2/order?page=1&fields=is_invoiced,order_date,order_number&filter=order_type%5Beq%5D%3A1" -H "accept: application/json" -H "token: AAAA-BB-CCCCC"


Invoices

Invoices are orders that are invoice, these can not be changed, the status field on the order to indicate this is: 

...