Think about purchase as a business entity or a resource in RESTful dictionary. That being said, making a purchase is actually creating a new resource. So:
POST /api/purchase
will place a new order. The details (user, car, etc.) should be referenced by id (or URI) inside the contents sent to this address.
It doesn’t matter that ordering a car is not just a simple INSERT in the database. Actually, REST is not about exposing your database tables as CRUD operations. From logical point of view you are creating an order (purchase), but the server side is free to do as many processing steps as it wants.
You can even abuse HTTP protocol even further. Use Location
header to return a link to newly created order, carefully choose HTTP response codes to inform users about problems (server- or client-side), etc.