嘗試在未支付的抄送發票上獲取付款
請求參數
參數 | 類型 | 說明 | 必需的 |
---|---|---|---|
action | string | “CapturePayment” | Required |
invoiceid | int | 掛單ID | Required |
cvv | string | 正在嘗試的卡的 CVV 編號 | Optional |
響應參數
參數 | 類型 | 說明 |
---|---|---|
result | string | 操作結果:成功或錯誤 |
示例請求 (CURL)
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://www.example.com/includes/api.php');
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,
http_build_query(
array(
'action' => 'CapturePayment',
// See https://developers.whmcs.com/api/authentication
'username' => 'IDENTIFIER_OR_ADMIN_USERNAME',
'password' => 'SECRET_OR_HASHED_PASSWORD',
'invoiceid' => '1',
'responsetype' => 'json',
)
)
);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$response = curl_exec($ch);
curl_close($ch);
示例請求(本地 API)
$command = 'CapturePayment';
$postData = array(
'invoiceid' => '1',
);
$adminUsername = 'ADMIN_USERNAME'; // Optional for WHMCS 7.2 and later
$results = localAPI($command, $postData, $adminUsername);
print_r($results);
示例響應 JSON
{
"result": "success"
}
錯誤響應
可能的錯誤條件響應包括:
- 未找到或未支付發票
- 付款嘗試失敗
相關用法
- PHP WHMCS CartTotalAdjustment用法及代碼示例
- PHP CachingIterator __construct()用法及代碼示例
- PHP CachingIterator getCache()用法及代碼示例
- PHP CachingIterator current()用法及代碼示例
- PHP WHMCS CalcAffiliateCommission用法及代碼示例
- PHP CachingIterator key()用法及代碼示例
- PHP CachingIterator setFlags()用法及代碼示例
- PHP WHMCS CartSubdomainValidation用法及代碼示例
- PHP WHMCS CartItemsTax用法及代碼示例
- PHP CachingIterator next()用法及代碼示例
- PHP CachingIterator rewind()用法及代碼示例
- PHP WHMCS CancellationRequest用法及代碼示例
- PHP CachingIterator getFlags()用法及代碼示例
- PHP CachingIterator getInnerIterator()用法及代碼示例
- PHP WHMCS CancelOrder用法及代碼示例
- PHP WHMCS CancelAndRefundOrder用法及代碼示例
- PHP WHMCS ClientAreaPageDownloads用法及代碼示例
- PHP WHMCS ClientAreaHeaderOutput用法及代碼示例
- PHP WHMCS CreateProject用法及代碼示例
- PHP WHMCS ClientAreaPageSupportTickets用法及代碼示例
- PHP WHMCS ClientAreaPageDomainDNSManagement用法及代碼示例
- PHP WHMCS ClientAreaPageAffiliates用法及代碼示例
- PHP WHMCS ClientAreaPageViewInvoice用法及代碼示例
- PHP WHMCS ClientAreaPageProductsServices用法及代碼示例
- PHP WHMCS CustomFieldSave用法及代碼示例
注:本文由純淨天空篩選整理自whmcs.com大神的英文原創作品 CapturePayment。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。