請求情報の取得¶
GET /api/v1/billing/detail/list
概要¶
Query リクエストパラメータ¶
| パラメータ名 | タイプ | 必須 | 説明 |
|---|---|---|---|
| startDate | string | 請求開始日 形式: 20230731 例: 20230731 空を許可: False |
|
| endDate | string | 請求終了日 形式: 20230731 例: 20230731 空を許可: False |
パラメータ補足説明¶
レスポンスパラメータの説明:
content 本体構造の説明
| パラメータ名 | パラメータ説明 |
|---|---|
| consumeTimeOfDay | 請求消費日時 |
| orgName | 請求センター組織名 無視可能 |
| productName | 製品名 固定 dataFlux |
| productDetail | 製品明細 |
| billingKey | 請求カテゴリのキー |
| billingCycle | 請求サイクル 日次、月次、年次、単発: Day、Month、Year、Single |
| billingResult | 支払額 |
| deductionAmount | 差引金額 |
| oweAmount | 未払い金額 |
| originAmount | 元値 |
| serviceBillingAmount | サービス料金 無視可能 |
| couponAmount | クーポン差分 |
| storedCardAmount | ストアドカード差分 |
| cashAmount | 現金差分 |
| cashCouldAmount | クラウドマーケット差分 |
| commodityCategory | 商品カテゴリ 年額・月額契約、従量課金 |
| consumePlatform | 支払い方法 |
| customerIdentifier | クラウドマーケットのアカウント |
| consumption | 無視可能 |
| workspaceUuid | ワークスペース UUID |
| workspaceName | ワークスペース名 |
| consumeTime | 消費時刻のタイムスタンプ |
| billingResultDetails | 無視可能 |
| count | 使用量 |
リクエスト例¶
curl 'https://openapi.guance.com/api/v1/billing/detail/list' \
-H 'DF-API-KEY: <DF-API-KEY>' \
-H 'Content-Type: application/json;charset=UTF-8' \
--compressed
レスポンス¶
{
"code": 200,
"content": [
{
"consumeTimeOfDay": "2023-07-31",
"orgName": "None",
"productName": "None",
"productDetail": "Session Replay",
"billingCycle": "None",
"billingResult": 0,
"deductionAmount": "None",
"oweAmount": "None",
"originAmount": 0,
"serviceBillingAmount": "None",
"couponAmount": "None",
"storedCardAmount": "None",
"cashAmount": "None",
"cashCouldAmount": "None",
"commodityCategory": "None",
"consumePlatform": "None",
"customerIdentifier": "None",
"consumption": "None",
"workspaceUuid": "None",
"workspaceName": "None",
"consumeTime": "None",
"tag6": "session_replay",
"billingResultDetails": "None",
"count": 0
}
],
"errorCode": "",
"message": "",
"success": true,
"traceId": "TRACE-192EB1B1-ACBA-4942-A4F1-34A1A9F93C0C"
}