Meters
メーターを取得
IDによってメーターを取得します。
GET
JavaScript
承認
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
パスパラメータ
Meter ID
レスポンス
Meter details
A filter structure that combines multiple conditions with logical conjunctions (AND/OR).
Supports up to 3 levels of nesting to create complex filter expressions. Each filter has a conjunction (and/or) and clauses that can be either direct conditions or nested filters.
例:
{
"clauses": [
{
"key": "user_id",
"operator": "equals",
"value": "user123"
},
{
"key": "amount",
"operator": "greater_than",
"value": 100
}
],
"conjunction": "and"
}Last modified on January 28, 2026
JavaScript