# Group Applications Endpoints for managing applications available to groups, including listing, adding, and removing group-specific applications ## List all group applications - [GET /api/v1/groups/apps](https://docs.wellesley.social/openapi/group-applications/paths/~1api~1v1~1groups~1apps/get.md): Returns a list of all applications available at the group entry point. These applications can be installed by any group. Requires authentication and appropriate permissions. ## List applications for a specific group - [GET /api/v1/groups/{groupId}/apps](https://docs.wellesley.social/openapi/group-applications/paths/~1api~1v1~1groups~1%7Bgroupid%7D~1apps/get.md): Returns a list of applications available to the specified group. Only group members can view the group's applications. ## Remove application from group - [DELETE /api/v1/groups/{groupId}/apps/{appId}](https://docs.wellesley.social/openapi/group-applications/paths/~1api~1v1~1groups~1%7Bgroupid%7D~1apps~1%7Bappid%7D/delete.md): Removes an application from the specified group's application list. ## Add application to group - [PUT /api/v1/groups/{groupId}/apps/{appId}](https://docs.wellesley.social/openapi/group-applications/paths/~1api~1v1~1groups~1%7Bgroupid%7D~1apps~1%7Bappid%7D/put.md): Adds an application to the specified group's application list, making it available for group members.