GET/ainote/quota

ドメインの AiNote の使用状況を確認する。

Authorization

oauth2

Access Token を指定します。
指定の方法や Access Token の取得方法は 共通仕様 を参照してください。

Scope

ainote
ainote.read

HTTP Request

GEThttps://www.worksapis.com/v1.0/ainote/quota

Header Parameters

HeadertypeDescription
Authorization string 

Bearer {token}


required 

Response

HTTP 200

OK

PropertyTypeDescription
recognitionQuota object (recognitionQuota) 
 
summaryQuota object (summaryQuota) 
 

recognitionQuota

PropertyTypeDescription
total integer 

共有文字起こし時間(合計) (単位: 秒)

 
remain integer 

共有文字起こし残り時間(合計) (単位: 秒)

 

summaryQuota

PropertyTypeDescription
total integer 

AI要約回数(合計) (単位: 回)

 
remain integer 

AI要約回数(合計) (単位: 回)

 

Response Example

Example 1

1{2  "recognitionQuota": {3    "total": 1800000,4    "remain": 17961745  },6  "summaryQuota": {7    "total": 750,8    "remain": 7479  }10}