- List company orders
Prepare order (create quote)
Accept quote and create order
Get order by id
List company orders
Безопасность
apiKeyAuth
Find an order by identifier. Matches your externalOrderId — a substring is enough, so 387057 finds transaction_387057 — or our order id, either in full or by its first characters. A full UUID is matched exactly. Queries shorter than 2 characters are ignored.
Пример:search=transaction_387057
- Mock serverhttps://b2b-app.lumowallet.io/_mock/apis/orders
- Productionhttps://b2b.lumowallet.io/orders
- Staginghttps://b2b-staging.lumowallet.io/orders
curl -i -X GET \
'https://b2b-app.lumowallet.io/_mock/apis/orders?status=created&search=transaction_387057&limit=20&offset=0' \
-H 'X-API-Key: YOUR_API_KEY_HERE'Response
{ "orders": [ { … } ], "total": 0 }