Check Order
Get order information
After creating the order you can make a "check-order" request to check if the order was paid or not. You will receive all payments details in a list.
curl --location --request POST 'https://sandbox.fcfpay.com/api/v2/check-order' \
--header 'Authorization: Bearer YOUR_SANDBOX_API_KEY' \
--header 'Content-Type: application/json' \
--data-raw '{
"order_id": "Test123"
}'
Check Order
POST
https://merchant.fcfpay.com/api/v2/check-order
Query Parameters
Name
Type
Description
order_id*
string
The Order ID you want to check
{
"success": true,
"data": {
"order_id": "3x101",
"user_id": "1",
"txs": [],
"order_amount": "10.00",
"total_fiat_amount": "",
"fiat_currency": "USD"
},
"message": "Successfully fetched."
}
Last updated