Per-user access (OIDC)
Call the info-with-content-access endpoint with a logged-in member's OIDC access token to find out which Content Channels the member can access.
ArticleView as Markdown
Call the info-with-content-access endpoint with a logged-in member's OIDC access token to find out which Content Channels the member can access.
To ask the API which Content Channels a member should have access to, you need an . The OIDC flow provides an access token that you submit in the API requests, so they run on behalf of the logged-in user.
Use the info-with-content-access API call to get information about the logged-in member, including which Content Channels the member should have access to.
GET{baseUrl}/api/v1/members/profile/info-with-content-accessThe response includes the content channels:
{
...
"contentChannels": [
{
"id": 1,
"name": "…",
"description": "…",
...
}
]
...
}More details on this API are in the API reference: .
Stay in the loop 🚀