Orders
Create order
Creates a new escrow payment order. An order requires a buyer (buyer_id), optional seller (seller_id), a name, and a value. Once created, the order has a buyer_link and seller_link for the payment flow.
post/orders
Request body
Example request
{
"name": "Product purchase",
"value": 150,
"buyer_id": 42,
"seller_id": 99,
"tag": "order-abc-123"
}Response
Order created
Example response
{
"self": "/2.0/orders/1234",
"currency": "EUR",
"amount": "150.00 €"
}