# Create Order with Runa via Fluz API Adapter (Asynchronous mode - default)
# This will return quickly with a reference ID while processing continues in the background
curl -X POST "https://api-adapter.staging.fluzapp.com/runa/v2/order" \
-H "Authorization: Basic <FLUZ-API-Key>" \
-H "Content-Type: application/json" \
-H "X-Idempotency-Key: unique-key-123456" \
-d '{
"payment_method": {
"type": "ACCOUNT_BALANCE",
"currency": "USD"
},
"items": [
{
"distribution_method": {
"type": "PAYOUT_LINK"
},
"products": {
"type": "SINGLE",
"value": ["1800FL-US"]
},
"face_value": 10
}
],
"description": "d8e118ab-732b-4884-8e8a-70746b5f359e"
}'