GET/ainote/quota
ドメインの AiNote の使用状況を確認する。
Access Token を指定します。
指定の方法や Access Token の取得方法は 共通仕様 を参照してください。
ainote
ainote.read
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
OK
| Property | Type | Description |
|---|---|---|
| recognitionQuota | object (recognitionQuota) | |
| summaryQuota | object (summaryQuota) |
| Property | Type | Description |
|---|---|---|
| total | integer | 共有文字起こし時間(合計) (単位: 秒) |
| remain | integer | 共有文字起こし残り時間(合計) (単位: 秒) |
| Property | Type | Description |
|---|---|---|
| total | integer | AI要約回数(合計) (単位: 回) |
| remain | integer | AI要約回数(合計) (単位: 回) |
Example 1
1{2 "recognitionQuota": {3 "total": 1800000,4 "remain": 17961745 },6 "summaryQuota": {7 "total": 750,8 "remain": 7479 }10}