使用此端點列出您帳戶的餘額調整歷史記錄。
curl -X GET \
https://www.digicert.com/services/v2/finance/balance-history \
-H 'Content-Type: application/json' \
-H 'X-DC-DEVKEY: {{api_key}}'
import requests
url = "https://www.digicert.com/services/v2/finance/balance-history"
payload = ""
headers = {
'X-DC-DEVKEY': "{{api_key}}",
'Content-Type': "application/json"
}
response = requests.request("GET", url, data=payload, headers=headers)
print(response.text)
package main
import (
"fmt"
"net/http"
"io/ioutil"
)
func main() {
url := "https://www.digicert.com/services/v2/finance/balance-history"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-DC-DEVKEY", "{{api_key}}")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
var request = require("request");
var options = { method: 'GET',
url: 'https://www.digicert.com/services/v2/finance/balance-history',
headers:
{ 'Content-Type': 'application/json',
'X-DC-DEVKEY': '{{api_key}}' } };
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
{
"adjustments": [
{
"id": "5",
"container": {
"id": 11223,
"name": "Example Division",
"is_active": true
},
"credit": "195.00",
"transaction_type": "Credit",
"receipt_id": "0",
"transaction_date": "2018-10-18 08:47:53",
"balance_after": "441.00",
"note": "Payment for invoice #100001"
},
{
"id": "4",
"container": {
"id": 11223,
"name": "Example Division",
"is_active": true
},
"credit": "98.00",
"transaction_type": "Credit",
"receipt_id": "0",
"transaction_date": "2018-10-18 08:47:53",
"balance_after": "246.00",
"note": "Payment for invoice #100006"
},
{
"id": "3",
"container": {
"id": 11223,
"name": "Example Division",
"is_active": true
},
"debit": "295.00",
"transaction_type": "Sale from Account Balance",
"receipt_id": "121214",
"transaction_date": "2018-09-04 12:02:39",
"balance_after": "148.00",
"order_id": "12346",
"note": "Auto-debit: enterprise order from account balance"
},
{
"id": "2",
"container": {
"id": 11223,
"name": "Example Division",
"is_active": true
},
"debit": "157.00",
"transaction_type": "Sale from Account Balance",
"receipt_id": "121213",
"transaction_date": "2018-09-04 12:02:06",
"balance_after": "443.00",
"order_id": "12345",
"note": "Auto-debit: enterprise order from account balance"
},
{
"id": "1",
"container": {
"id": 11223,
"name": "Example Division",
"is_active": true
},
"credit": "600.00",
"transaction_type": "Credit",
"receipt_id": "0",
"transaction_date": "2018-08-15 09:21:53",
"balance_after": "600.00",
"note": "Initial deposit for account."
},
],
"page": {
"total": 4,
"limit": 1000,
"offset": 0
}
}
名稱 | 必填/選填 | 類型 | 說明 |
---|---|---|---|
offset | 選填 | int | 在指定頁數開始清單。 |
limit | 選填 | int | 將清單裁剪為指定頁數。 |
您的帳戶包含一個以上的分區時 container_id
URL 查詢字串必填。
名稱 | 類型 | 說明 |
---|---|---|
adjustments | array | 調整的清單。 |
.. id | string | 調整 ID。 |
.. container | object | 與啟動調整的容器有關的詳細資料。 |
.. .. id | int | 容器 ID。 |
.. .. name | string | 容器的名稱。 |
.. .. is_active | bool | 容器的啟用狀態。 |
.. credit .. debit |
string |
如果扣除,金額會存入帳戶。 如果計入,金額會從帳戶提領。 |
.. transaction_type | string |
發生的調整類型。 可能的值: Credit ,Sale from Account Balance
|
.. receipt_id | string |
收據 ID。 傳回所有扣除交易的 0 的值。
|
.. transaction_date | string |
調整的時間戳記。 格式: yyyy-MM-dd HH:mm:ss
|
.. balance_after | string | 進行調整後的帳戶餘額。 |
.. note | string | 與調整有關的注意事項。 |
頁面 | object |
與結果有關的詳細資料。 使用 URL 查詢字串修改。 |