diff --git a/pkg/api/user.go b/pkg/api/user.go index f03f2d90990..6db9c6f6baf 100644 --- a/pkg/api/user.go +++ b/pkg/api/user.go @@ -118,7 +118,7 @@ func GetSignedInUserTeamList(c *m.ReqContext) Response { // GET /api/users/:id/teams func GetUserTeams(c *m.ReqContext) Response { - return getUserTeamList(c.OrgId, c.ParamsInt64("id")) + return getUserTeamList(c.OrgId, c.ParamsInt64(":id")) } func getUserTeamList(userID int64, orgID int64) Response {