Get Order
• Endpoint: /orders/get • Method: GET • Request Parameters: Code snippet { "order_id": "1234567890", "buyer": { "email": "john.doe@example.com" }, "destination_wallet": "your_cargowallet_id", "transaction_name": "Pay_to", "transaction_category_id": "freight_bol", "transaction_reference_id": "1234567890", "transaction_amount": "100.00", "transaction_currency": "USD", "callback_url": "https://your_domain.com/callback", "complete_url": "https://your_domain.com/complete", "error_url": "https://your_domain.com/error" }
• Response Body: Code snippet { "order_id": "1234567890", "buyer": { "email": "john.doe@example.com" }, "destination_wallet": "your_cargowallet_id", "transaction_name": "Pay_to", "transaction_category_id": "freight_bol", "transaction_reference_id": "1234567890", "transaction_amount": "100.00", "transaction_currency": "USD", "status": "finalized" }
Last updated