Retrieves the data access release status for a meter
Use this endpoint to check whether a meter has an active data access release and its current status
(Required, Pending, Released, etc.). Submission date is null if no release has been submitted.
Request Headers
| Header | Value | Required | Description |
|---|---|---|---|
| ECI-ApiKey | string | Yes | Your API key. See Authentication. |
| Content-Type | application/json | Yes | All requests must specify JSON content type. |
Path Parameters
| Name | Description | Type | Required |
|---|---|---|---|
| meterId | Unique numeric identifier of the meter | integer (int32) | Required |
Responses
200
OK
The request succeeded and the response body contains the requested data.
Response Body Parameters
DataAccessReleaseState
| Property | Description | Type | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| releaseStatus | DataAccessReleaseStatus | ||||||||||
|
DataAccessReleaseStatus properties
|
|||||||||||
| submittedDate | The date that the data access release was submitted. Null if there is not a release yet. | string (date-time) | |||||||||
Example Response
{ "releaseStatus": { "dataAccessReleaseStatusId": 1, "dataAccessReleaseStatusInfo": "string"
}, "submittedDate": "2026-06-29"
}
404
Not Found
The requested resource was not found. Verify the ID or path is correct.