ResultFileInfoService Resource
GET /v1/result/assignment/snapshot/{id}
Look up the AssignmentSnapshotIdentifier of the provided fileID
| name | type | description | constraints |
|---|---|---|---|
| id | path | The id of the result file. | required 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. |
| 401 | No or an invalid authentication token is supplied. |
| media type | data type | description |
|---|---|---|
| application/json | AssignmentSnapshotIdentifier (JSON) | The AssignmentSnapshotIdentifier |
Example
Request
GET /v1/result/assignment/snapshot/{id}
Content-Type: */*
Accept: application/json
...
Response
HTTP/1.1 200 OK
Content-Type: application/json
{
"snapshotID" : 2,
"id" : 1,
"name" : "my_signal_reader_assignment_v1",
"type" : "signal_reader"
}