MeasuredSignalsService Resource
GET /v1/result/measured/signal_reader/signals/file/{id}
Get the measured signals for a signal reader assignment based on a result file. The result file must originate from a signal reader task and the requesting user needs to have access to the provided result file.
| name | type | description | default | constraints |
|---|---|---|---|---|
| id | path | A file id > 0 produced by a signal reader assignment. | required int | |
| limit | query | A limit between 1 and 100. | 100 | int |
| offset | query | An offset >= 0. | 0 | int |
| code | condition |
|---|---|
| 400 | The provided parameters do not match the expected ones. |
| 403 | The requesting user does not have access to the provided result file. |
| 412 | Provided file id does not originate from a signal reader task. |
| 401 | No or an invalid authentication token is supplied. |
| media type | data type | description |
|---|---|---|
| application/json | SignalReaderSignalsResult (JSON) | A SignalReaderSignalsResult |
Example
Request
GET /v1/result/measured/signal_reader/signals/file/{id}
Content-Type: */*
Accept: application/json
...
Response
HTTP/1.1 200 OK
Content-Type: application/json
{
"results" : {
"type" : "SREC",
"name" : "...",
"moduleInfo" : {
"moduleType" : "INTERNAL_WMU",
"moduleName" : "..."
}
},
"count" : 10,
"offset" : 0,
"limit" : 25
}