Add get user api for admin

This commit is contained in:
Lakhan Samani
2023-01-05 20:16:41 +05:30
parent 4f810d2f8b
commit b2423140e2
7 changed files with 286 additions and 0 deletions

View File

@@ -136,6 +136,10 @@ type GenerateJWTKeysResponse struct {
PrivateKey *string `json:"private_key"`
}
type GetUserRequest struct {
ID string `json:"id"`
}
type InviteMemberInput struct {
Emails []string `json:"emails"`
RedirectURI *string `json:"redirect_uri"`