@Summary Get group by organization and group name @ID get-group-by-organization-and-group-name @Security CoderSessionToken @Produce json @Tags Enterprise @Param organization path string true "Organization ID" format(uuid) @Param groupName path string true "Group name" @Success 200 {object} codersdk.
(rw http.ResponseWriter, r *http.Request)
| 387 | // @Success 200 {object} codersdk.Group |
| 388 | // @Router /api/v2/organizations/{organization}/groups/{groupName} [get] |
| 389 | func (api *API) groupByOrganization(rw http.ResponseWriter, r *http.Request) { |
| 390 | api.group(rw, r) |
| 391 | } |
| 392 | |
| 393 | // @Summary Get group by ID |
| 394 | // @ID get-group-by-id |