POST
Holds/wallets/releaseإفراج عن مبلغ محجوز
يفرج عن حجز موجود باستخدام UUID.
مستوى الوصولbusiness_operatorالحد20/minمنع التكرارnoneالمصادقةBearerAuth
المصدر
LuxApi/app/Http/Controllers/Api/WalletApiController.php::releaseLuxPayProjects @ 146e98baa44eالمعاملات
X-Request-IDheaderClient correlation identifier. LuxPay may generate one when omitted.
Example:req_01J...جسم الطلب
ReleaseHoldRequestإلزامي
hold_uuidstring
JSON example
{
"hold_uuid": "00000000-0000-4000-8000-000000000001"
}أمثلة الكود
العنوان المعروض Sandbox Placeholder حتى يتم تزويد النطاق الرسمي. لا تلصق رمز Production في متصفح عام.
curl --request POST \
--url 'https://sandbox-api.luxpay.example/v1/wallets/release' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"hold_uuid": "00000000-0000-4000-8000-000000000001"
}'الاستجابات
200Successful response.
statusboolean
Example:
truemessagestring | null
dataHold
{
"status": true,
"message": "string",
"data": {
"uuid": "00000000-0000-4000-8000-000000000001",
"wallet_id": 1,
"amount": 1,
"currency_code": "string",
"status": "active",
"reason": "string",
"expires_at": "2026-07-16T12:00:00Z"
}
}