@Summary Get the organization idp sync claim field values @ID get-the-organization-idp-sync-claim-field-values @Security CoderSessionToken @Produce json @Tags Enterprise @Param organization path string true "Organization ID" format(uuid) @Param claimField query string true "Claim Field" format(strin
(rw http.ResponseWriter, r *http.Request)
| 790 | // @Success 200 {array} string |
| 791 | // @Router /api/v2/organizations/{organization}/settings/idpsync/field-values [get] |
| 792 | func (api *API) organizationIDPSyncClaimFieldValues(rw http.ResponseWriter, r *http.Request) { |
| 793 | org := httpmw.OrganizationParam(r) |
| 794 | api.idpSyncClaimFieldValues(org.ID, rw, r) |
| 795 | } |
| 796 | |
| 797 | // @Summary Get the idp sync claim field values |
| 798 | // @ID get-the-idp-sync-claim-field-values |
nothing calls this directly
no test coverage detected