What is continuationToken in API result?

When I hit the API, I can see "continuationToken": "string" at the end of result.
can someone explain what is this? is it used for Pagination and if yes then where should I pass this in URL or some where else ?

continuationTokens are usually used for pagination. You would set it as a header and send the request to the same endpoint again to get another set of results. I don’t unfortunately know under what name does Bitwarden expect that token but you can try simply using continuationToken

Thanks all, you can ignore this one, just remnants that need to be cleaned up in our docs.

Thank you for your help ! I’ll Just Ignore it then.

1 Like

So how do we actually pass this continuationToken header, or use it??