"Not" Operator: [not]

In this example, you can make this call to get history records of orders that have been processed and were not deleted. To do this, you'd filter out records with a Motive Type of 5 (deleted).

/transactions?motiveType=[not]5

Now try combining this with another operator. To get all history records that have been processed and were not deleted, and have not yet exported, you can also specify an Export State Type of 2 (ready to export).

/transactions?motiveType=[not]5&exportStateType=2

Go ahead and try out a few more! What call would you make to get only Pick orders? (Hint: You'll need to know a bit about History Types to do this.)