Orders
Create order
Creates a new escrow payment order. buyer_id and seller_id are required (both customers must exist). Once created, the order has a buyer_link and seller_link for the payment flow.
post/orders
Request body
Example request
{
"buyer_id": 7485,
"seller_id": 7485,
"name": "Test New Order",
"value": 23.77
}Response
Order created
Example response
{
"self": "/2.0/orders/1234",
"currency": "EUR",
"amount": "150.00 €"
}