We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for retrieving Content for a Group. This is supported via the v1/experimental/groups/:group_guid/content API. See https://docs.posit.co/connect/cookbook/content-access-controls/auditing-group-access-to-content/
v1/experimental/groups/:group_guid/content
This should be implemented as an attribute off of the Group resource and resemble the following pseudo-code:
Group
from posit import connect client = connect.Client() group = client.groups.find_by(name="example-group") assert group content: List[Content] = group.content
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Add support for retrieving Content for a Group. This is supported via the
v1/experimental/groups/:group_guid/content
API. See https://docs.posit.co/connect/cookbook/content-access-controls/auditing-group-access-to-content/This should be implemented as an attribute off of the
Group
resource and resemble the following pseudo-code:The text was updated successfully, but these errors were encountered: