請求データ一覧取得
Description
課金アイテムに対しての請求データの一覧を取得します。
Request URL
Account API GET /v1/{tenant_id}/billing-invoices
Request Json
This operation does not accept a request body.
Request Parameters
Parameter | Value | Style | Description |
---|---|---|---|
X-Auth-Token | トークンID | header | トークンIDを指定します。 |
tenant_id | テナントID | path | テナントIDを指定します。 |
limit(Optional) | 表示件数 | query | 取得する情報の表示件数を指定します。 |
offset(Optional) | 開始位置 | query | 取得する情報の開始位置を指定します。「limit」と併せて使用します。 |
Response Code
Success
200
Example
Request
curl -i -X GET \ -H "Accept: application/json" \ -H "X-Auth-Token: トークンID" \ https://account.tyo1.conoha.io/v1/テナントID/billing-invoices?limit=3
Response
HTTP/1.1 200 OK Server: openresty/1.7.10.1 Date: Fri, 08 May 2015 12:52:02 GMT Content-Type: application/json Content-Length: 230 Connection: keep-alive { "billing_invoices": [ { "invoice_id": 1, "payment_method_type": "Charge", "invoice_date": "2014-08-01T00:00:00", "bill_plas_tax": 500, "due_date": "2014-08-01T00:00:00" }, { "invoice_id": 2, "payment_method_type": "Charge", "invoice_date": "2014-07-01T00:00:00", "bill_plas_tax": 500, "due_date": "2014-07-01T00:00:00" }, { "invoice_id": 3, "payment_method_type": "Charge", "invoice_date": "2014-06-01T00:00:00", "bill_plas_tax": 500, "due_date": "2014-06-01T00:00:00" } ] }
ConoHaにて提供しておりますAPIにつきましては、クラウド基盤として採用しておりますOpenStackの機能にて実装しておりますので、詳細な情報や使い方はOpenStackのドキュメントにてご確認ください。