Verwenden Sie diesen Endpunkt, um den Verlauf Ihrer Kontobewegungen anzuzeigen.
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
}
}
Name | Antr./Opt. | Typ | Beschreibung |
---|---|---|---|
offset | optional | int | Liste bei der angegebenen Seitenzahl beginnen |
limit | optional | int | Liste an der angegebenen Seitenzahl abschneiden |
Die container_id
-URL-Abfragezeichenfolge ist erforderlich, falls Ihr Konto mehr als eine Abteilung hat.
Name | Typ | Beschreibung |
---|---|---|
adjustments | array | Liste der Kontobewegungen |
.. id | string | Kontobewegungs-ID |
.. container | object | Details über den Container, der die Kontobewegung veranlasst hat |
.. .. id | int | Container-ID |
.. .. name | string | Name des Containers |
.. .. is_active | bool | Aktiver Status des Containers |
.. credit .. debit |
string |
Bei Gutschrift, der Betrag, der auf das Konto eingezahlt wurde Bei Lastschrift, der Betrag, der von dem Konto abgehoben wurde |
.. transaction_type | string |
Art der stattgefundenen Kontobewegung Mögliche Werte: Credit , Sale from Account Balance
|
.. receipt_id | string |
Beleg-ID Der Wert 0 wird bei allen Gutschriften zurückgegeben.
|
.. transaction_date | string |
Zeitstempel der Kontobewegung Format: yyyy-MM-dd HH:mm:ss
|
.. balance_after | string | Kontostand nach der Kontobewegung |
.. note | string | Anmerkung zur Kontobewegung |
Seite | object |
Details über die Ergebnisse Modifiziert mithilfe der URL-Abfragezeichenfolge |