curl --request GET \
--url https://api-dev.narrative.io/billings/dataset-storage-billing \
--header 'Authorization: Bearer <token>'[
{
"billing_month": "2022-08-31T22:00:00Z",
"company_id": 1,
"company_name": "test_company1",
"dataset_id": 322,
"avg_gb_hours": 4
}
]Get dataset storage billings for a company id paginated. Company id is extracted from token.
curl --request GET \
--url https://api-dev.narrative.io/billings/dataset-storage-billing \
--header 'Authorization: Bearer <token>'[
{
"billing_month": "2022-08-31T22:00:00Z",
"company_id": 1,
"company_name": "test_company1",
"dataset_id": 322,
"avg_gb_hours": 4
}
]Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Number of records to return.
Number of records to skip (it's usually page_number * per_page).