curl --request GET \
--url https://dashboard.hologram.io/api/1/organizations/{orgId}/balancehistory \
--header 'Authorization: Basic <encoded-value>'{
"continues": true,
"data": [
{
"amount": "0.00",
"description": "Charge to balance: SIM Renewal (Link ID#1175692 SIM:8901260882277048945 Device:'Kevin Hotspot (48945)')",
"id": 67461910,
"linkids": [
"1175692"
],
"orderid": 0,
"orgid": 12345,
"time": "2022-11-01 19:44:27",
"transaction_type_id": "SR"
},
{
"amount": "0.00",
"description": "Charge to balance: SIM Renewal (Link ID#1175981 SIM:8901260882277051832 Device:'jung-hotspot! (51832)')",
"id": 67460447,
"linkids": [
"1175981"
],
"orderid": 0,
"orgid": 12345,
"time": "2022-11-01 19:22:24",
"transaction_type_id": "SR"
}
],
"lastid": 67460447,
"limit": 2,
"links": {
"base": "staging.teamhologram.ninja",
"next": "/api/1/organizations/12345/balancehistory?limit=2&startafter=67460447",
"path": "/api/1/organizations/12345/balancehistory"
},
"size": 2,
"success": true
}List organization’s balance history.
Returns a list of transactions (both credits and charges) for an organization. You must be an Admin for the organization to request this information.
curl --request GET \
--url https://dashboard.hologram.io/api/1/organizations/{orgId}/balancehistory \
--header 'Authorization: Basic <encoded-value>'{
"continues": true,
"data": [
{
"amount": "0.00",
"description": "Charge to balance: SIM Renewal (Link ID#1175692 SIM:8901260882277048945 Device:'Kevin Hotspot (48945)')",
"id": 67461910,
"linkids": [
"1175692"
],
"orderid": 0,
"orgid": 12345,
"time": "2022-11-01 19:44:27",
"transaction_type_id": "SR"
},
{
"amount": "0.00",
"description": "Charge to balance: SIM Renewal (Link ID#1175981 SIM:8901260882277051832 Device:'jung-hotspot! (51832)')",
"id": 67460447,
"linkids": [
"1175981"
],
"orderid": 0,
"orgid": 12345,
"time": "2022-11-01 19:22:24",
"transaction_type_id": "SR"
}
],
"lastid": 67460447,
"limit": 2,
"links": {
"base": "staging.teamhologram.ninja",
"next": "/api/1/organizations/12345/balancehistory?limit=2&startafter=67460447",
"path": "/api/1/organizations/12345/balancehistory"
},
"size": 2,
"success": true
}Documentation Index
Fetch the complete documentation index at: https://docs.hologram.io/llms.txt
Use this file to discover all available pages before exploring further.
HTTP Basic authentication using API keys. Set the username to apikey and the password to your API key.
You can find your API key on the Hologram Dashboard under Account Settings.
Single organization ID.
1234567
Start of time range in Unix epoch seconds format.
1767225600
End of time range in Unix epoch seconds format.
1769821199
102544
Maximum number of items to return in a single request. For endpoints that support pagination, use this with corresponding /pages endpoints to manage large result sets.
50
OK
Was this page helpful?