From 39581eaa74acc8452d05d45fbe709f00a04c1f2234ba999f1a6af1e4e887180d Mon Sep 17 00:00:00 2001 From: aslan Date: Sat, 10 Jan 2026 19:26:31 -0500 Subject: [PATCH] Add invites community api --- docs/api/community.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/docs/api/community.md b/docs/api/community.md index 9836f83..cf0c539 100644 --- a/docs/api/community.md +++ b/docs/api/community.md @@ -145,6 +145,26 @@ Returns roles for a community with id = {id} } ``` +## GET /api/v1/community/{id}/invites + +_Requires an authorization header_ + +Returns invites for a community with id = {id} + +### Response: + +```json +{ + "id": "string", + "name": "string", + "invites": [ + { + "id": "string" + } + ] +} +``` + ## POST /api/v1/community/{id}/invite _Requires an authorization header_