Get itemized costs for the organization. Currently unavailable in self-hosted ECE.edit

EXPERIMENTAL (it may change in future versions): Retrieves the itemized costs for the organization.

Requestedit

GET /api/v1/billing/costs/{organization_id}/items

Path parametersedit

Name Type Required Description

organization_id

string

Y

Identifier for the organization

Query parametersedit

Name Type Required Description

from

string

N

A datetime for the beginning of the desired range for which to fetch costs. Defaults to start of current month.

to

string

N

A datetime for the end of the desired range for which to fetch costs. Defaults to the current date.

Responsesedit

200

(ItemsCosts)

The costs associated to a set of items

400

(BasicFailedReply)

The specified date range is invalid. (code: costs.invalid_date_range)

Headers

x-cloud-error-codes (string; allowed values: [costs.invalid_date_range])
The error codes associated with the response
403

(BasicFailedReply)

The current user does not have access to the requested organization. (code: organization.invalid_access)

Headers

x-cloud-error-codes (string; allowed values: [organization.invalid_access])
The error codes associated with the response
404

(BasicFailedReply)

Organization not found. (code: organization.not_found)

Headers

x-cloud-error-codes (string; allowed values: [organization.not_found])
The error codes associated with the response
500

(BasicFailedReply)

Error fetching the itemized costs for the organization. (code: billing_service.failed_request)

Headers

x-cloud-error-codes (string; allowed values: [billing_service.failed_request])
The error codes associated with the response

Request exampleedit

curl -XGET https://{{hostname}}/api/v1/billing/costs/{organization_id}/items \
-H "Authorization: ApiKey $ECE_API_KEY"