Webhook posted when new utility intervals are available.
Request Body Schema
Property name | Data type | Required? | Description |
---|---|---|---|
type | string | yes | Value: "new_utility_intervals_available" |
created_at | string <date-time> | yes | |
data | object (IntervalUsage) | yes |
IntervalUsage
Property name | Data type | Required? | Description |
---|---|---|---|
client_user_id | string | yes | |
utility_account_id | integer | yes | |
utility_meter_id | null or integer | yes | |
intervals_start_time | string <date-time> | yes | |
intervals_end_time | string <date-time> | yes |
Request sample
Content type: application/json
{
"type": "new_utility_intervals_available",
"created_at": "2019-08-24T14:15:22Z",
"data": {
"client_user_id": "fff57dc7-3a2b-4395-8a62-e3486d46dabe",
"utility_account_id": 1234,
"utility_meter_id": 1234,
"intervals_start_time": "2019-08-24T14:15:22Z",
"intervals_end_time": "2019-08-24T14:15:22Z"
}
}