Xác nhận thanh toán đơn hàng
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"order_code": "UP1985",
"amount": 1000000,
"description": "+1,005,000 NGUYEN ANH TU chuyen tien OK",
"payment_method_id": 1
}
Request samples
curl --location --request POST 'https://demo.tourwell.net/api/v1/orders/confirm-payment' \
--header 'Content-Type: application/json' \
--data-raw '{
"order_code": "UP1985",
"amount": 1000000,
"description": "+1,005,000 NGUYEN ANH TU chuyen tien OK",
"payment_method_id": 1
}'
Responses
application/json {"success":true,"message":"Payment confirmed successful"}
Modified at 2025-04-09 11:04:17