Somehow, yes, but not quite. In my case I actually have binary data, where one success (1) is grouped with nine failures (0) to one stratum (btw, the data stem from animal movement behaviour, where at each step of a given location (1), a fixed number of possible locations (0) is added.)
Thus the response y is binary, and ten points build up a stratum. The likelihood for the analysis would be the conditional logisitic. A trick to do the analysis is to use cox regression, where all event times are set to 1. I therefore tried something like this:
formula <- inla.surv(rep(1,nn), y) ~ x1 + x2 + x3 + strata(ID) + random terms
and used the coxph family. However, this is very inefficient, because INLA then approximates the baseline hazard by piecewise constant Poisson models, which is quite inefficient, especially because the numbers of strata is large.
Another trick is to use
formula <- y ~ x1 + x2 + x3 + strata(ID) + random terms
and then the Poisson family, which is again giving the same results, but the problem now is that stratum-specific intercepts need to be estimated.
I'm not sure, however, if there is a way to use the Poisson family and circumvent the estimation of intercepts of each stratum... Interest does not center around them, so maybe they can be somehow fixed, but I don't see how.