@ApiResponse(code = 404, message = "Radio not found."),
@ApiResponse(code = 400, message = "Missing or invalid configuration")
})
public Response registerInput(@ApiParam(name = "JSON body", required = true) String body,
@ApiParam(name = "radioId", required = true) @PathParam("radioId") String radioId) {
Node radio = null;
try {
radio = nodeService.byNodeId(radioId);
} catch (NodeNotFoundException e) {
LOG.error("Radio <{}> not found.", radioId);
throw new WebApplicationException(404);