clerk

package
v1.49.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 9, 2024 License: MIT Imports: 20 Imported by: 22

Documentation

Index

Constants

View Source
const (
	ProdUrl = "https://api.clerk.dev/v1/"

	ActorTokensUrl     = "actor_tokens"
	AllowlistsUrl      = "allowlist_identifiers"
	BlocklistsUrl      = "blocklist_identifiers"
	ClientsUrl         = "clients"
	ClientsVerifyUrl   = ClientsUrl + "/verify"
	DomainsURL         = "domains"
	EmailAddressesURL  = "email_addresses"
	EmailsUrl          = "emails"
	InvitationsURL     = "invitations"
	OrganizationsUrl   = "organizations"
	PhoneNumbersURL    = "phone_numbers"
	ProxyChecksURL     = "proxy_checks"
	RedirectURLsUrl    = "redirect_urls"
	SAMLConnectionsUrl = "saml_connections"
	SessionsUrl        = "sessions"
	TemplatesUrl       = "templates"
	UsersUrl           = "users"
	UsersCountUrl      = UsersUrl + "/count"
	WebhooksUrl        = "webhooks"
	JWTTemplatesUrl    = "jwt_templates"
)
View Source
const (
	ActiveSession = iota
	ActiveSessionClaims
)
View Source
const (
	CookieSession       = "__session"
	QueryParamSessionId = "_clerk_session_id"
)

Variables

This section is empty.

Functions

func RequireSessionV2 added in v1.1.0

func RequireSessionV2(client Client, verifyTokenOptions ...VerifyTokenOption) func(handler http.Handler) http.Handler

RequireSessionV2 will hijack the request and return an HTTP status 403 if the session is not authenticated.

func WithSession deprecated added in v1.0.3

func WithSession(client Client) func(handler http.Handler) http.Handler

Deprecated: this middleware handles the old authentication scheme. Use WithSessionV2 instead.

func WithSessionV2 added in v1.1.0

func WithSessionV2(client Client, verifyTokenOptions ...VerifyTokenOption) func(handler http.Handler) http.Handler

WithSessionV2 is the de-facto authentication middleware and should be preferred to WithSession. If the session is authenticated, it adds the corresponding session claims found in the JWT to request's context.

Types

type ActorTokenResponse added in v1.22.0

type ActorTokenResponse struct {
	Object    string          `json:"object"`
	ID        string          `json:"id"`
	UserID    string          `json:"user_id"`
	Actor     json.RawMessage `json:"actor"`
	Token     string          `json:"token,omitempty"`
	Status    string          `json:"status"`
	CreatedAt int64           `json:"created_at"`
	UpdatedAt int64           `json:"updated_at"`
}

type ActorTokenService added in v1.22.0

type ActorTokenService service

func (*ActorTokenService) Create added in v1.22.0

func (*ActorTokenService) Revoke added in v1.22.0

func (s *ActorTokenService) Revoke(actorTokenID string) (*ActorTokenResponse, error)

type AllowlistIdentifierResponse added in v1.16.0

type AllowlistIdentifierResponse struct {
	Object         string `json:"object"`
	ID             string `json:"id"`
	InvitationID   string `json:"invitation_id,omitempty"`
	Identifier     string `json:"identifier"`
	IdentifierType string `json:"identifier_type"`
	CreatedAt      int64  `json:"created_at"`
	UpdatedAt      int64  `json:"updated_at"`
}

type AllowlistIdentifiersResponse added in v1.16.0

type AllowlistIdentifiersResponse struct {
	Data       []*AllowlistIdentifierResponse `json:"data"`
	TotalCount int64                          `json:"total_count"`
}

type AllowlistsService added in v1.16.0

type AllowlistsService service

func (*AllowlistsService) CreateIdentifier added in v1.16.0

func (*AllowlistsService) DeleteIdentifier added in v1.16.0

func (s *AllowlistsService) DeleteIdentifier(identifierID string) (*DeleteResponse, error)

func (*AllowlistsService) ListAllIdentifiers added in v1.16.0

func (s *AllowlistsService) ListAllIdentifiers() (*AllowlistIdentifiersResponse, error)

type BlocklistIdentifierResponse added in v1.15.0

type BlocklistIdentifierResponse struct {
	Object         string `json:"object"`
	ID             string `json:"id"`
	Identifier     string `json:"identifier"`
	IdentifierType string `json:"identifier_type"`
	CreatedAt      int64  `json:"created_at"`
	UpdatedAt      int64  `json:"updated_at"`
}

type BlocklistIdentifiersResponse added in v1.15.0

type BlocklistIdentifiersResponse struct {
	Data       []*BlocklistIdentifierResponse `json:"data"`
	TotalCount int64                          `json:"total_count"`
}

type BlocklistsService added in v1.15.0

type BlocklistsService service

func (*BlocklistsService) CreateIdentifier added in v1.15.0

func (*BlocklistsService) DeleteIdentifier added in v1.15.0

func (s *BlocklistsService) DeleteIdentifier(identifierID string) (*DeleteResponse, error)

func (*BlocklistsService) ListAllIdentifiers added in v1.15.0

func (s *BlocklistsService) ListAllIdentifiers() (*BlocklistIdentifiersResponse, error)

type ClerkOption added in v1.2.0

type ClerkOption func(*client) error

ClerkOption describes a functional parameter for the clerk client constructor

func WithBaseURL added in v1.2.0

func WithBaseURL(rawURL string) ClerkOption

WithBaseURL allows the overriding of the base URL

func WithHTTPClient added in v1.2.0

func WithHTTPClient(httpClient *http.Client) ClerkOption

WithHTTPClient allows the overriding of the http client

type Client

type Client interface {
	NewRequest(method, url string, body ...interface{}) (*http.Request, error)
	Do(req *http.Request, v interface{}) (*http.Response, error)

	DecodeToken(token string) (*TokenClaims, error)
	VerifyToken(token string, opts ...VerifyTokenOption) (*SessionClaims, error)

	Allowlists() *AllowlistsService
	Blocklists() *BlocklistsService
	Clients() *ClientsService
	Domains() *DomainsService
	EmailAddresses() *EmailAddressesService
	Emails() *EmailService
	ActorTokens() *ActorTokenService
	Instances() *InstanceService
	JWKS() *JWKSService
	JWTTemplates() *JWTTemplatesService
	Organizations() *OrganizationsService
	PhoneNumbers() *PhoneNumbersService
	ProxyChecks() *ProxyChecksService
	RedirectURLs() *RedirectURLsService
	SAMLConnections() *SAMLConnectionsService
	Sessions() *SessionsService
	Templates() *TemplatesService
	Users() *UsersService
	Webhooks() *WebhooksService
	Verification() *VerificationService
	Interstitial() ([]byte, error)

	APIKey() string
}

func NewClient

func NewClient(token string, options ...ClerkOption) (Client, error)

NewClient creates a new Clerk client. Because the token supplied will be used for all authenticated requests, the created client should not be used across different users

func NewClientWithBaseUrl deprecated

func NewClientWithBaseUrl(token, baseUrl string) (Client, error)

Deprecated: NewClientWithBaseUrl is deprecated. Use the NewClient instead e.g. NewClient(token, WithBaseURL(baseUrl))

func NewClientWithCustomHTTP deprecated added in v1.0.4

func NewClientWithCustomHTTP(token, urlStr string, httpClient *http.Client) (Client, error)

Deprecated: NewClientWithCustomHTTP is deprecated. Use the NewClient instead e.g. NewClient(token, WithBaseURL(urlStr), WithHTTPClient(httpClient))

type ClientResponse added in v1.0.3

type ClientResponse struct {
	Object              string     `json:"object"`
	ID                  string     `json:"id"`
	LastActiveSessionID *string    `json:"last_active_session_id"`
	SessionIDs          []string   `json:"session_ids"`
	Sessions            []*Session `json:"sessions"`
	Ended               bool       `json:"ended"`
}

type ClientsService added in v1.0.3

type ClientsService service

func (*ClientsService) ListAll added in v1.0.3

func (s *ClientsService) ListAll() ([]ClientResponse, error)

func (*ClientsService) Read added in v1.0.3

func (s *ClientsService) Read(clientId string) (*ClientResponse, error)

func (*ClientsService) Verify added in v1.0.3

func (s *ClientsService) Verify(token string) (*ClientResponse, error)

type CreateActorTokenParams added in v1.22.0

type CreateActorTokenParams struct {
	UserID                      string          `json:"user_id"`
	Actor                       json.RawMessage `json:"actor"`
	ExpiresInSeconds            *int            `json:"expires_in_seconds"`
	SessionMaxDurationInSeconds *int            `json:"session_max_duration_in_seconds"`
}

type CreateAllowlistIdentifierParams added in v1.16.0

type CreateAllowlistIdentifierParams struct {
	Identifier string `json:"identifier"`
	Notify     bool   `json:"notify"`
}

type CreateBlocklistIdentifierParams added in v1.15.0

type CreateBlocklistIdentifierParams struct {
	Identifier string `json:"identifier"`
}

type CreateDomainParams added in v1.46.0

type CreateDomainParams struct {
	Name        string  `json:"name"`
	IsSatellite bool    `json:"is_satellite"`
	ProxyURL    *string `json:"proxy_url,omitempty"`
}

type CreateEmailAddressParams added in v1.28.0

type CreateEmailAddressParams struct {
	UserID       string `json:"user_id"`
	EmailAddress string `json:"email_address"`
	Verified     *bool  `json:"verified"`
	Primary      *bool  `json:"primary"`
}

type CreateOrganizationInvitationParams added in v1.28.0

type CreateOrganizationInvitationParams struct {
	EmailAddress   string          `json:"email_address"`
	InviterUserID  string          `json:"inviter_user_id"`
	OrganizationID string          `json:"organization_id"`
	PublicMetadata json.RawMessage `json:"public_metadata,omitempty"`
	RedirectURL    string          `json:"redirect_url,omitempty"`
	Role           string          `json:"role"`
}

type CreateOrganizationMembershipParams added in v1.32.0

type CreateOrganizationMembershipParams struct {
	UserID string `json:"user_id"`
	Role   string `json:"role"`
}

type CreateOrganizationParams added in v1.25.0

type CreateOrganizationParams struct {
	Name                  string          `json:"name"`
	Slug                  *string         `json:"slug,omitempty"`
	CreatedBy             string          `json:"created_by"`
	MaxAllowedMemberships *int            `json:"max_allowed_memberships,omitempty"`
	PublicMetadata        json.RawMessage `json:"public_metadata,omitempty"`
	PrivateMetadata       json.RawMessage `json:"private_metadata,omitempty"`
}

type CreatePhoneNumberParams added in v1.28.0

type CreatePhoneNumberParams struct {
	UserID      string `json:"user_id"`
	PhoneNumber string `json:"phone_number"`
	Verified    *bool  `json:"verified"`
	Primary     *bool  `json:"primary"`
}

type CreateProxyCheckParams added in v1.49.0

type CreateProxyCheckParams struct {
	DomainID string `json:"domain_id"`
	ProxyURL string `json:"proxy_url"`
}

type CreateRedirectURLParams added in v1.13.0

type CreateRedirectURLParams struct {
	URL string `json:"url"`
}

type CreateSAMLConnectionParams added in v1.38.3

type CreateSAMLConnectionParams struct {
	Name           string  `json:"name"`
	Domain         string  `json:"domain"`
	IdpEntityID    *string `json:"idp_entity_id,omitempty"`
	IdpSsoURL      *string `json:"idp_sso_url,omitempty"`
	IdpCertificate *string `json:"idp_certificate,omitempty"`
}

type CreateUpdateJWTTemplate added in v1.2.0

type CreateUpdateJWTTemplate struct {
	Name             string                 `json:"name"`
	Claims           map[string]interface{} `json:"claims"`
	Lifetime         *int                   `json:"lifetime"`
	AllowedClockSkew *int                   `json:"allowed_clock_skew"`

	CustomSigningKey bool    `json:"custom_signing_key"`
	SigningAlgorithm *string `json:"signing_algorithm"`
	SigningKey       *string `json:"signing_key"`
}

type CreateUserParams added in v1.18.0

type CreateUserParams struct {
	EmailAddresses          []string         `json:"email_address,omitempty"`
	PhoneNumbers            []string         `json:"phone_number,omitempty"`
	Web3Wallets             []string         `json:"web3_wallet,omitempty"`
	Username                *string          `json:"username,omitempty"`
	Password                *string          `json:"password,omitempty"`
	FirstName               *string          `json:"first_name,omitempty"`
	LastName                *string          `json:"last_name,omitempty"`
	ExternalID              *string          `json:"external_id,omitempty"`
	UnsafeMetadata          *json.RawMessage `json:"unsafe_metadata,omitempty"`
	PublicMetadata          *json.RawMessage `json:"public_metadata,omitempty"`
	PrivateMetadata         *json.RawMessage `json:"private_metadata,omitempty"`
	PasswordDigest          *string          `json:"password_digest,omitempty"`
	PasswordHasher          *string          `json:"password_hasher,omitempty"`
	SkipPasswordRequirement *bool            `json:"skip_password_requirement,omitempty"`
	SkipPasswordChecks      *bool            `json:"skip_password_checks,omitempty"`
	TOTPSecret              *string          `json:"totp_secret,omitempty"`
	BackupCodes             []string         `json:"backup_codes,omitempty"`
	// Specified in RFC3339 format
	CreatedAt *string `json:"created_at,omitempty"`
}

type DeleteResponse

type DeleteResponse struct {
	ID      string `json:"id,omitempty"`
	Slug    string `json:"slug,omitempty"`
	Object  string `json:"object"`
	Deleted bool   `json:"deleted"`
}

type Domain added in v1.46.0

type Domain struct {
	Object            string              `json:"object"`
	ID                string              `json:"id"`
	Name              string              `json:"name"`
	IsSatellite       bool                `json:"is_satellite"`
	FapiURL           string              `json:"frontend_api_url"`
	AccountsPortalURL *string             `json:"accounts_portal_url,omitempty"`
	ProxyURL          *string             `json:"proxy_url,omitempty"`
	CNameTargets      []DomainCNameTarget `json:"cname_targets,omitempty"`
	DevelopmentOrigin string              `json:"development_origin"`
}

type DomainCNameTarget added in v1.46.0

type DomainCNameTarget struct {
	Host  string `json:"host"`
	Value string `json:"value"`
}

type DomainListResponse added in v1.46.0

type DomainListResponse struct {
	Data       []Domain `json:"data"`
	TotalCount int      `json:"total_count"`
}

type DomainsService added in v1.46.0

type DomainsService service

func (*DomainsService) Create added in v1.46.0

func (s *DomainsService) Create(
	params CreateDomainParams,
) (*Domain, error)

func (*DomainsService) Delete added in v1.46.0

func (s *DomainsService) Delete(domainID string) (*DeleteResponse, error)

func (*DomainsService) ListAll added in v1.46.0

func (s *DomainsService) ListAll() (*DomainListResponse, error)

func (*DomainsService) Update added in v1.46.0

func (s *DomainsService) Update(
	domainID string,
	params UpdateDomainParams,
) (*Domain, error)

type Email

type Email struct {
	FromEmailName  string `json:"from_email_name"`
	Subject        string `json:"subject"`
	Body           string `json:"body"`
	EmailAddressID string `json:"email_address_id"`
}

type EmailAddress

type EmailAddress struct {
	ID           string               `json:"id"`
	Object       string               `json:"object"`
	EmailAddress string               `json:"email_address"`
	Reserved     bool                 `json:"reserved"`
	Verification *Verification        `json:"verification"`
	LinkedTo     []IdentificationLink `json:"linked_to"`
}

type EmailAddressesService added in v1.28.0

type EmailAddressesService service

func (*EmailAddressesService) Create added in v1.28.0

func (*EmailAddressesService) Delete added in v1.28.0

func (s *EmailAddressesService) Delete(emailAddressID string) (*DeleteResponse, error)

func (*EmailAddressesService) Read added in v1.28.0

func (s *EmailAddressesService) Read(emailAddressID string) (*EmailAddress, error)

func (*EmailAddressesService) Update added in v1.28.0

func (s *EmailAddressesService) Update(emailAddressID string, params UpdateEmailAddressParams) (*EmailAddress, error)

type EmailResponse

type EmailResponse struct {
	ID               string          `json:"id"`
	Object           string          `json:"object"`
	Status           string          `json:"status,omitempty"`
	ToEmailAddress   *string         `json:"to_email_address,omitempty"`
	DeliveredByClerk bool            `json:"delivered_by_clerk"`
	Data             json.RawMessage `json:"data"`
	Email
}

type EmailService

type EmailService service

func (*EmailService) Create

func (s *EmailService) Create(email Email) (*EmailResponse, error)

type Error added in v1.0.5

type Error struct {
	Message     string      `json:"message"`
	LongMessage string      `json:"long_message"`
	Code        string      `json:"code"`
	Meta        interface{} `json:"meta,omitempty"`
}

type ErrorResponse added in v1.0.5

type ErrorResponse struct {
	Response *http.Response
	Errors   []Error `json:"errors"`
}

func (*ErrorResponse) Error added in v1.0.5

func (e *ErrorResponse) Error() string
type IdentificationLink struct {
	IdentType string `json:"type"`
	IdentID   string `json:"id"`
}

type InstanceRestrictionsResponse added in v1.16.0

type InstanceRestrictionsResponse struct {
	Object                      string `json:"object"`
	Allowlist                   bool   `json:"allowlist"`
	Blocklist                   bool   `json:"blocklist"`
	BlockEmailSubaddresses      bool   `json:"block_email_subaddresses"`
	BlockDisposableEmailDomains bool   `json:"block_disposable_email_domains"`
}

type InstanceService added in v1.10.0

type InstanceService service

func (*InstanceService) Update added in v1.10.0

func (s *InstanceService) Update(params UpdateInstanceParams) error

func (*InstanceService) UpdateHomeURL added in v1.38.1

func (s *InstanceService) UpdateHomeURL(params UpdateHomeURLParams) error

func (*InstanceService) UpdateOrganizationSettings added in v1.23.0

func (s *InstanceService) UpdateOrganizationSettings(params UpdateOrganizationSettingsParams) (*OrganizationSettingsResponse, error)

func (*InstanceService) UpdateRestrictions added in v1.16.0

type JWKS added in v1.1.0

type JWKS jose.JSONWebKeySet

type JWKSService added in v1.1.0

type JWKSService service

func (*JWKSService) ListAll added in v1.1.0

func (s *JWKSService) ListAll() (*JWKS, error)

type JWTTemplate added in v1.2.0

type JWTTemplate struct {
	ID               string          `json:"id"`
	Object           string          `json:"object"`
	Name             string          `json:"name"`
	Claims           json.RawMessage `json:"claims"`
	Lifetime         int             `json:"lifetime"`
	AllowedClockSkew int             `json:"allowed_clock_skew"`
	CustomSigningKey bool            `json:"custom_signing_key"`
	SigningAlgorithm string          `json:"signing_algorithm"`
	CreatedAt        int64           `json:"created_at"`
	UpdatedAt        int64           `json:"updated_at"`
}

type JWTTemplatesService added in v1.2.0

type JWTTemplatesService service

func (JWTTemplatesService) Create added in v1.2.0

func (JWTTemplatesService) Delete added in v1.2.0

func (JWTTemplatesService) ListAll added in v1.2.0

func (s JWTTemplatesService) ListAll() ([]JWTTemplate, error)

func (JWTTemplatesService) Read added in v1.2.0

func (JWTTemplatesService) Update added in v1.2.0

type ListAllOrganizationsParams added in v1.6.0

type ListAllOrganizationsParams struct {
	Limit               *int
	Offset              *int
	IncludeMembersCount bool
	Query               string
	UserIDs             []string
	OrderBy             *string
}

type ListAllSessionsParams added in v1.40.0

type ListAllSessionsParams struct {
	Limit    *int
	Offset   *int
	ClientID *string
	UserID   *string
	Status   *SessionStatus
}

type ListAllUsersParams added in v1.0.9

type ListAllUsersParams struct {
	Limit             *int
	Offset            *int
	EmailAddresses    []string
	ExternalIDs       []string
	PhoneNumbers      []string
	Web3Wallets       []string
	Usernames         []string
	UserIDs           []string
	Query             *string
	LastActiveAtSince *int64
	OrderBy           *string
}

type ListMembershipsParams added in v1.35.1

type ListMembershipsParams struct {
	Limit  *int
	Offset *int
	UserID string
}

type ListOrganizationMembershipsParams added in v1.32.0

type ListOrganizationMembershipsParams struct {
	OrganizationID string
	Limit          *int
	Offset         *int
	Roles          []string `json:"role"`
	UserIDs        []string `json:"user_id"`
	EmailAddresses []string `json:"email_address"`
	PhoneNumbers   []string `json:"phone_number"`
	Usernames      []string `json:"username"`
	Web3Wallets    []string `json:"web3_wallet"`
	OrderBy        *string  `json:"order_by"`
	Query          *string  `json:"query"`
}

type ListOrganizationMembershipsResponse added in v1.32.0

type ListOrganizationMembershipsResponse struct {
	Data       []OrganizationMembership `json:"data"`
	TotalCount int64                    `json:"total_count"`
}

type ListSAMLConnectionsParams added in v1.38.4

type ListSAMLConnectionsParams struct {
	Limit   *int
	Offset  *int
	Query   *string
	OrderBy *string
}

type ListSAMLConnectionsResponse added in v1.38.4

type ListSAMLConnectionsResponse struct {
	Data       []SAMLConnection `json:"data"`
	TotalCount int64            `json:"total_count"`
}

type Organization added in v1.6.0

type Organization struct {
	Object                string          `json:"object"`
	ID                    string          `json:"id"`
	Name                  string          `json:"name"`
	Slug                  *string         `json:"slug"`
	LogoURL               *string         `json:"logo_url"`
	ImageURL              *string         `json:"image_url,omitempty"`
	HasImage              bool            `json:"has_image"`
	MembersCount          *int            `json:"members_count,omitempty"`
	MaxAllowedMemberships int             `json:"max_allowed_memberships"`
	AdminDeleteEnabled    bool            `json:"admin_delete_enabled"`
	PublicMetadata        json.RawMessage `json:"public_metadata"`
	PrivateMetadata       json.RawMessage `json:"private_metadata,omitempty"`
	CreatedBy             string          `json:"created_by"`
	CreatedAt             int64           `json:"created_at"`
	UpdatedAt             int64           `json:"updated_at"`
}

type OrganizationInvitation added in v1.28.0

type OrganizationInvitation struct {
	Object         string          `json:"object"`
	ID             string          `json:"id"`
	EmailAddress   string          `json:"email_address"`
	OrganizationID string          `json:"organization_id"`
	PublicMetadata json.RawMessage `json:"public_metadata"`
	Role           string          `json:"role"`
	Status         string          `json:"status"`
	CreatedAt      int64           `json:"created_at"`
	UpdatedAt      int64           `json:"updated_at"`
}

type OrganizationMembership added in v1.32.0

type OrganizationMembership struct {
	Object          string          `json:"object"`
	ID              string          `json:"id"`
	PublicMetadata  json.RawMessage `json:"public_metadata"`
	PrivateMetadata json.RawMessage `json:"private_metadata"`
	Role            string          `json:"role"`
	CreatedAt       int64           `json:"created_at"`
	UpdatedAt       int64           `json:"updated_at"`

	Organization   *Organization                         `json:"organization"`
	PublicUserData *ΟrganizationMembershipPublicUserData `json:"public_user_data"`
}

type OrganizationSettingsResponse added in v1.23.0

type OrganizationSettingsResponse struct {
	Object                 string   `json:"object"`
	Enabled                bool     `json:"enabled"`
	MaxAllowedMemberships  int      `json:"max_allowed_memberships"`
	CreatorRole            string   `json:"creator_role"`
	AdminDeleteEnabled     bool     `json:"admin_delete_enabled"`
	DomainsEnabled         bool     `json:"domains_enabled"`
	DomainsEnrollmentModes []string `json:"domains_enrollment_modes"`
	DomainsDefaultRole     string   `json:"domains_default_role"`
}

type OrganizationsResponse added in v1.6.0

type OrganizationsResponse struct {
	Data       []Organization `json:"data"`
	TotalCount int64          `json:"total_count"`
}

type OrganizationsService added in v1.6.0

type OrganizationsService service

func (*OrganizationsService) Create added in v1.25.0

func (*OrganizationsService) CreateInvitation added in v1.28.0

func (*OrganizationsService) CreateMembership added in v1.32.0

func (s *OrganizationsService) CreateMembership(organizationID string, params CreateOrganizationMembershipParams) (*OrganizationMembership, error)

func (*OrganizationsService) Delete added in v1.25.0

func (s *OrganizationsService) Delete(organizationID string) (*DeleteResponse, error)
func (s *OrganizationsService) DeleteLogo(organizationID string) (*Organization, error)

func (*OrganizationsService) DeleteMembership added in v1.33.0

func (s *OrganizationsService) DeleteMembership(organizationID, userID string) (*OrganizationMembership, error)

func (*OrganizationsService) ListAll added in v1.6.0

func (*OrganizationsService) ListMemberships added in v1.32.0

func (*OrganizationsService) Read added in v1.29.0

func (s *OrganizationsService) Read(organizationIDOrSlug string) (*Organization, error)

func (*OrganizationsService) Update added in v1.25.0

func (s *OrganizationsService) Update(organizationID string, params UpdateOrganizationParams) (*Organization, error)
func (s *OrganizationsService) UpdateLogo(organizationID string, params UpdateOrganizationLogoParams) (*Organization, error)

func (*OrganizationsService) UpdateMembership added in v1.32.0

func (s *OrganizationsService) UpdateMembership(organizationID string, params UpdateOrganizationMembershipParams) (*OrganizationMembership, error)

func (*OrganizationsService) UpdateMetadata added in v1.29.1

func (s *OrganizationsService) UpdateMetadata(organizationID string, params UpdateOrganizationMetadataParams) (*Organization, error)

type PaginationParams added in v1.35.1

type PaginationParams struct {
	Limit  *int
	Offset *int
}

type PhoneNumber

type PhoneNumber struct {
	ID                      string               `json:"id"`
	Object                  string               `json:"object"`
	PhoneNumber             string               `json:"phone_number"`
	ReservedForSecondFactor bool                 `json:"reserved_for_second_factor"`
	DefaultSecondFactor     bool                 `json:"default_second_factor"`
	Reserved                bool                 `json:"reserved"`
	Verification            *Verification        `json:"verification"`
	LinkedTo                []IdentificationLink `json:"linked_to"`
	BackupCodes             []string             `json:"backup_codes"`
}

type PhoneNumbersService added in v1.28.0

type PhoneNumbersService service

func (*PhoneNumbersService) Create added in v1.28.0

func (*PhoneNumbersService) Delete added in v1.28.0

func (s *PhoneNumbersService) Delete(phoneNumberID string) (*DeleteResponse, error)

func (*PhoneNumbersService) Read added in v1.28.0

func (s *PhoneNumbersService) Read(phoneNumberID string) (*PhoneNumber, error)

func (*PhoneNumbersService) Update added in v1.28.0

func (s *PhoneNumbersService) Update(phoneNumberID string, params UpdatePhoneNumberParams) (*PhoneNumber, error)

type PreviewTemplateRequest added in v1.2.0

type PreviewTemplateRequest struct {
	Subject       string  `json:"subject,omitempty"`
	Body          string  `json:"body"`
	FromEmailName *string `json:"from_email_name"`
}

type ProxyCheck added in v1.49.0

type ProxyCheck struct {
	Object     string `json:"object"`
	ID         string `json:"id"`
	DomainID   string `json:"domain_id"`
	ProxyURL   string `json:"proxy_url"`
	Successful bool   `json:"successful"`
	LastRunAt  *int64 `json:"last_run_at"`
	CreatedAt  int64  `json:"created_at"`
	UpdatedAt  int64  `json:"updated_at"`
}

type ProxyChecksService added in v1.49.0

type ProxyChecksService service

func (*ProxyChecksService) Create added in v1.49.0

type RedirectURLResponse added in v1.13.0

type RedirectURLResponse struct {
	Object    string `json:"object"`
	ID        string `json:"id"`
	URL       string `json:"url"`
	CreatedAt int64  `json:"created_at"`
	UpdatedAt int64  `json:"updated_at"`
}

type RedirectURLsService added in v1.13.0

type RedirectURLsService service

func (*RedirectURLsService) Create added in v1.13.0

func (*RedirectURLsService) Delete added in v1.13.0

func (s *RedirectURLsService) Delete(redirectURLID string) (*DeleteResponse, error)

func (*RedirectURLsService) ListAll added in v1.13.0

func (s *RedirectURLsService) ListAll() ([]*RedirectURLResponse, error)

type SAMLConnection added in v1.38.3

type SAMLConnection struct {
	ID                 string  `json:"id"`
	Object             string  `json:"object"`
	Name               string  `json:"name"`
	Domain             string  `json:"domain"`
	IdpEntityID        *string `json:"idp_entity_id"`
	IdpSsoURL          *string `json:"idp_sso_url"`
	IdpCertificate     *string `json:"idp_certificate"`
	AcsURL             string  `json:"acs_url"`
	SPEntityID         string  `json:"sp_entity_id"`
	Active             bool    `json:"active"`
	Provider           string  `json:"provider"`
	UserCount          int64   `json:"user_count"`
	SyncUserAttributes bool    `json:"sync_user_attributes"`
	CreatedAt          int64   `json:"created_at"`
	UpdatedAt          int64   `json:"updated_at"`
}

type SAMLConnectionsService added in v1.38.3

type SAMLConnectionsService service

func (SAMLConnectionsService) Create added in v1.38.3

func (SAMLConnectionsService) Delete added in v1.38.3

func (SAMLConnectionsService) ListAll added in v1.38.3

func (SAMLConnectionsService) Read added in v1.38.3

func (SAMLConnectionsService) Update added in v1.38.3

type Session

type Session struct {
	Object                   string `json:"object"`
	ID                       string `json:"id"`
	ClientID                 string `json:"client_id"`
	UserID                   string `json:"user_id"`
	Status                   string `json:"status"`
	LastActiveAt             int64  `json:"last_active_at"`
	LastActiveOrganizationID string `json:"last_active_organization_id,omitempty"`
	ExpireAt                 int64  `json:"expire_at"`
	AbandonAt                int64  `json:"abandon_at"`
	CreatedAt                int64  `json:"created_at"`
	UpdatedAt                int64  `json:"updated_at"`
}

type SessionClaims added in v1.1.0

type SessionClaims struct {
	jwt.Claims
	SessionID                     string          `json:"sid"`
	AuthorizedParty               string          `json:"azp"`
	ActiveOrganizationID          string          `json:"org_id"`
	ActiveOrganizationSlug        string          `json:"org_slug"`
	ActiveOrganizationRole        string          `json:"org_role"`
	ActiveOrganizationPermissions []string        `json:"org_permissions"`
	Actor                         json.RawMessage `json:"act,omitempty"`
}

func SessionFromContext added in v1.1.0

func SessionFromContext(ctx context.Context) (*SessionClaims, bool)

SessionFromContext returns the session's (if any) claims, as parsed from the token.

type SessionStatus added in v1.40.0

type SessionStatus string
const (
	SessionStatusAbandoned SessionStatus = "abandoned"
	SessionStatusActive    SessionStatus = "active"
	SessionStatusEnded     SessionStatus = "ended"
	SessionStatusExpired   SessionStatus = "expired"
	SessionStatusRemoved   SessionStatus = "removed"
	SessionStatusReplaced  SessionStatus = "replaced"
	SessionStatusRevoked   SessionStatus = "revoked"
)

type SessionsService

type SessionsService service

func (*SessionsService) ListAll

func (s *SessionsService) ListAll() ([]Session, error)

func (*SessionsService) ListAllWithFiltering added in v1.40.0

func (s *SessionsService) ListAllWithFiltering(params ListAllSessionsParams) ([]Session, error)

func (*SessionsService) Read

func (s *SessionsService) Read(sessionId string) (*Session, error)

func (*SessionsService) Revoke

func (s *SessionsService) Revoke(sessionId string) (*Session, error)

func (*SessionsService) Verify added in v1.0.3

func (s *SessionsService) Verify(sessionId, token string) (*Session, error)

type SvixResponse added in v1.1.0

type SvixResponse struct {
	SvixURL string `json:"svix_url"`
}

type Template added in v1.2.0

type Template struct {
	Object           string  `json:"object"`
	Slug             string  `json:"slug"`
	ResourceType     string  `json:"resource_type"`
	TemplateType     string  `json:"template_type"`
	Name             string  `json:"name"`
	Position         int     `json:"position"`
	CanRevert        bool    `json:"can_revert"`
	CanDelete        bool    `json:"can_delete"`
	FromEmailName    *string `json:"from_email_name"`
	DeliveredByClerk bool    `json:"delivered_by_clerk"`
	CreatedAt        int64   `json:"created_at"`
	UpdatedAt        int64   `json:"updated_at"`
}

type TemplateExtended added in v1.2.0

type TemplateExtended struct {
	*Template
	Subject            string   `json:"subject"`
	Markup             string   `json:"markup"`
	Body               string   `json:"body"`
	AvailableVariables []string `json:"available_variables"`
	RequiredVariables  []string `json:"required_variables"`
}

type TemplatePreview added in v1.2.0

type TemplatePreview struct {
	Subject          string  `json:"subject,omitempty"`
	Body             string  `json:"body"`
	FromEmailAddress *string `json:"from_email_address,omitempty"`
}

type TemplatesService added in v1.2.0

type TemplatesService service

func (*TemplatesService) Delete added in v1.2.0

func (s *TemplatesService) Delete(templateType, slug string) (*DeleteResponse, error)

Delete deletes a custom user template

func (*TemplatesService) ListAll added in v1.2.0

func (s *TemplatesService) ListAll(templateType string) ([]Template, error)

func (*TemplatesService) Preview added in v1.2.0

func (s *TemplatesService) Preview(templateType, slug string, previewTemplateRequest *PreviewTemplateRequest) (*TemplatePreview, error)

Preview returns a rendering of a template with sample data for preview purposes

func (*TemplatesService) Read added in v1.2.0

func (s *TemplatesService) Read(templateType, slug string) (*TemplateExtended, error)

func (*TemplatesService) Revert added in v1.2.0

func (s *TemplatesService) Revert(templateType, slug string) (*TemplateExtended, error)

Revert reverts a user template to the corresponding system template

func (*TemplatesService) ToggleDelivery added in v1.48.4

func (s *TemplatesService) ToggleDelivery(templateType, slug string, toggleDeliveryTemplateRequest *ToggleDeliveryTemplateRequest) (*TemplateExtended, error)

func (*TemplatesService) Upsert added in v1.2.0

func (s *TemplatesService) Upsert(templateType, slug string, upsertTemplateRequest *UpsertTemplateRequest) (*TemplateExtended, error)

type ToggleDeliveryTemplateRequest added in v1.48.4

type ToggleDeliveryTemplateRequest struct {
	DeliveredByClerk bool `json:"delivered_by_clerk"`
}

type TokenClaims added in v1.1.0

type TokenClaims struct {
	jwt.Claims
	Extra map[string]interface{}
}

type UpdateDomainParams added in v1.46.0

type UpdateDomainParams struct {
	Name     *string `json:"name,omitempty"`
	ProxyURL *string `json:"proxy_url,omitempty"`
}

type UpdateEmailAddressParams added in v1.28.0

type UpdateEmailAddressParams struct {
	Verified *bool `json:"verified"`
	Primary  *bool `json:"primary"`
}

type UpdateHomeURLParams added in v1.38.1

type UpdateHomeURLParams struct {
	HomeURL string `json:"home_url"`
}

type UpdateInstanceParams added in v1.10.0

type UpdateInstanceParams struct {
	// TestMode can be used to toggle test mode for this instance.
	// Defaults to true for development instances.
	TestMode *bool `json:"test_mode,omitempty"`

	// HIBP is used to configure whether Clerk should use the
	// "Have I Been Pawned" service to check passwords against
	// known security breaches.
	// By default, this is enabled in all instances.
	HIBP *bool `json:"hibp,omitempty"`

	// EnhancedEmailDeliverability controls how Clerk delivers emails.
	// Specifically, when set to true, if the instance is a production
	// instance, OTP verification emails are sent by the Clerk's shared
	// domain via Postmark.
	EnhancedEmailDeliverability *bool `json:"enhanced_email_deliverability,omitempty"`

	// SupportEmail is the contact email address that will be displayed
	// on the frontend, in case your instance users need support.
	// If the empty string is provided, the support email that is currently
	// configured in the instance will be removed.
	SupportEmail *string `json:"support_email,omitempty"`

	// ClerkJSVersion allows you to request a specific Clerk JS version on the Clerk Hosted Account pages.
	// If an empty string is provided, the stored version will be removed.
	// If an explicit version is not set, the Clerk JS version will be automatically be resolved.
	ClerkJSVersion *string `json:"clerk_js_version,omitempty"`

	// CookielessDev can be used to enable the new mode in which no third-party
	// cookies are used in development instances. Make sure to also enable the
	// setting in Clerk.js
	//
	// Deprecated: Use URLBasedSessionSyncing instead
	CookielessDev *bool `json:"cookieless_dev,omitempty"`

	// URLBasedSessionSyncing can be used to enable the new mode in which no third-party
	// cookies are used in development instances. Make sure to also enable the
	// setting in Clerk.js
	URLBasedSessionSyncing *bool `json:"url_based_session_syncing,omitempty"`

	// URL that is going to be used in development instances in order to create custom redirects
	// and fix the third-party cookies issues.
	DevelopmentOrigin *string `json:"development_origin,omitempty"`
}

type UpdateOrganizationLogoParams added in v1.44.0

type UpdateOrganizationLogoParams struct {
	File           multipart.File
	UploaderUserID string
	Filename       *string
}

type UpdateOrganizationMembershipParams added in v1.32.0

type UpdateOrganizationMembershipParams struct {
	UserID string `json:"user_id"`
	Role   string `json:"role"`
}

type UpdateOrganizationMetadataParams added in v1.29.1

type UpdateOrganizationMetadataParams struct {
	PublicMetadata  json.RawMessage `json:"public_metadata,omitempty"`
	PrivateMetadata json.RawMessage `json:"private_metadata,omitempty"`
}

type UpdateOrganizationParams added in v1.25.0

type UpdateOrganizationParams struct {
	Name                  *string         `json:"name,omitempty"`
	Slug                  *string         `json:"slug,omitempty"`
	MaxAllowedMemberships *int            `json:"max_allowed_memberships,omitempty"`
	AdminDeleteEnabled    *bool           `json:"admin_delete_enabled,omitempty"`
	PublicMetadata        json.RawMessage `json:"public_metadata,omitempty"`
	PrivateMetadata       json.RawMessage `json:"private_metadata,omitempty"`
}

type UpdateOrganizationSettingsParams added in v1.23.0

type UpdateOrganizationSettingsParams struct {
	Enabled                *bool    `json:"enabled,omitempty"`
	MaxAllowedMemberships  *int     `json:"max_allowed_memberships,omitempty"`
	CreatorRoleID          *string  `json:"creator_role_id,omitempty"`
	AdminDeleteEnabled     *bool    `json:"admin_delete_enabled,omitempty"`
	DomainsEnabled         *bool    `json:"domains_enabled,omitempty"`
	DomainsEnrollmentModes []string `json:"domains_enrollment_modes,omitempty"`
	DomainsDefaultRoleID   *string  `json:"domains_default_role_id,omitempty"`
}

type UpdatePhoneNumberParams added in v1.28.0

type UpdatePhoneNumberParams struct {
	Verified *bool `json:"verified"`
	Primary  *bool `json:"primary"`
}

type UpdateRestrictionsParams added in v1.16.0

type UpdateRestrictionsParams struct {
	Allowlist                   *bool `json:"allowlist,omitempty"`
	Blocklist                   *bool `json:"blocklist,omitempty"`
	BlockEmailSubaddresses      *bool `json:"block_email_subaddresses,omitempty"`
	BlockDisposableEmailDomains *bool `json:"block_disposable_email_domains,omitempty"`
}

type UpdateSAMLConnectionParams added in v1.38.3

type UpdateSAMLConnectionParams struct {
	Name               *string `json:"name,omitempty"`
	Domain             *string `json:"domain,omitempty"`
	IdpEntityID        *string `json:"idp_entity_id,omitempty"`
	IdpSsoURL          *string `json:"idp_sso_url,omitempty"`
	IdpCertificate     *string `json:"idp_certificate,omitempty"`
	Active             *bool   `json:"active,omitempty"`
	SyncUserAttributes *bool   `json:"sync_user_attributes,omitempty"`
}

type UpdateUser

type UpdateUser struct {
	FirstName              *string     `json:"first_name,omitempty"`
	LastName               *string     `json:"last_name,omitempty"`
	PrimaryEmailAddressID  *string     `json:"primary_email_address_id,omitempty"`
	PrimaryPhoneNumberID   *string     `json:"primary_phone_number_id,omitempty"`
	PrimaryWeb3WalletID    *string     `json:"primary_web3_wallet_id,omitempty"`
	Username               *string     `json:"username,omitempty"`
	ProfileImageID         *string     `json:"profile_image_id,omitempty"`
	ProfileImage           *string     `json:"profile_image,omitempty"`
	Password               *string     `json:"password,omitempty"`
	SkipPasswordChecks     *bool       `json:"skip_password_checks,omitempty"`
	SignOutOfOtherSessions *bool       `json:"sign_out_of_other_sessions,omitempty"`
	ExternalID             *string     `json:"external_id,omitempty"`
	PublicMetadata         interface{} `json:"public_metadata,omitempty"`
	PrivateMetadata        interface{} `json:"private_metadata,omitempty"`
	UnsafeMetadata         interface{} `json:"unsafe_metadata,omitempty"`
	TOTPSecret             *string     `json:"totp_secret,omitempty"`
	BackupCodes            []string    `json:"backup_codes,omitempty"`
	// Specified in RFC3339 format
	CreatedAt *string `json:"created_at,omitempty"`
}

type UpdateUserMetadata added in v1.9.0

type UpdateUserMetadata struct {
	PublicMetadata  json.RawMessage `json:"public_metadata"`
	PrivateMetadata json.RawMessage `json:"private_metadata"`
	UnsafeMetadata  json.RawMessage `json:"unsafe_metadata"`
}

type UpsertTemplateRequest added in v1.2.0

type UpsertTemplateRequest struct {
	Name             string  `json:"name"`
	Subject          string  `json:"subject,omitempty"`
	Markup           string  `json:"markup,omitempty"`
	Body             string  `json:"body"`
	FromEmailName    *string `json:"from_email_name"`
	DeliveredByClerk *bool   `json:"delivered_by_clerk"`
}

type User

type User struct {
	ID                            string         `json:"id"`
	Object                        string         `json:"object"`
	Username                      *string        `json:"username"`
	FirstName                     *string        `json:"first_name"`
	LastName                      *string        `json:"last_name"`
	Gender                        *string        `json:"gender"`
	Birthday                      *string        `json:"birthday"`
	ProfileImageURL               string         `json:"profile_image_url"`
	ImageURL                      *string        `json:"image_url,omitempty"`
	HasImage                      bool           `json:"has_image"`
	PrimaryEmailAddressID         *string        `json:"primary_email_address_id"`
	PrimaryPhoneNumberID          *string        `json:"primary_phone_number_id"`
	PrimaryWeb3WalletID           *string        `json:"primary_web3_wallet_id"`
	PasswordEnabled               bool           `json:"password_enabled"`
	TwoFactorEnabled              bool           `json:"two_factor_enabled"`
	TOTPEnabled                   bool           `json:"totp_enabled"`
	BackupCodeEnabled             bool           `json:"backup_code_enabled"`
	EmailAddresses                []EmailAddress `json:"email_addresses"`
	PhoneNumbers                  []PhoneNumber  `json:"phone_numbers"`
	Web3Wallets                   []Web3Wallet   `json:"web3_wallets"`
	ExternalAccounts              []interface{}  `json:"external_accounts"`
	PublicMetadata                interface{}    `json:"public_metadata"`
	PrivateMetadata               interface{}    `json:"private_metadata"`
	UnsafeMetadata                interface{}    `json:"unsafe_metadata"`
	LastSignInAt                  *int64         `json:"last_sign_in_at"`
	Banned                        bool           `json:"banned"`
	Locked                        bool           `json:"locked"`
	LockoutExpiresInSeconds       *int64         `json:"lockout_expires_in_seconds"`
	VerificationAttemptsRemaining *int64         `json:"verification_attempts_remaining"`
	ExternalID                    *string        `json:"external_id"`
	CreatedAt                     int64          `json:"created_at"`
	UpdatedAt                     int64          `json:"updated_at"`
	LastActiveAt                  *int64         `json:"last_active_at"`
}

type UserCount added in v1.4.0

type UserCount struct {
	Object     string `json:"object"`
	TotalCount int    `json:"total_count"`
}

type UserDisableMFAResponse added in v1.21.0

type UserDisableMFAResponse struct {
	UserID string `json:"user_id"`
}

type UserOAuthAccessToken added in v1.31.0

type UserOAuthAccessToken struct {
	Object         string          `json:"object"`
	Token          string          `json:"token"`
	Provider       string          `json:"provider"`
	PublicMetadata json.RawMessage `json:"public_metadata"`
	Label          *string         `json:"label"`
	Scopes         []string        `json:"scopes"`
	TokenSecret    *string         `json:"token_secret"`
}

type UsersService

type UsersService service

func (*UsersService) Ban added in v1.21.0

func (s *UsersService) Ban(userID string) (*User, error)

func (*UsersService) Count added in v1.4.0

func (s *UsersService) Count(params ListAllUsersParams) (*UserCount, error)

func (*UsersService) Create added in v1.18.0

func (s *UsersService) Create(params CreateUserParams) (*User, error)

func (*UsersService) Delete

func (s *UsersService) Delete(userId string) (*DeleteResponse, error)

func (*UsersService) DisableMFA added in v1.21.0

func (s *UsersService) DisableMFA(userID string) (*UserDisableMFAResponse, error)

func (*UsersService) ListAll

func (s *UsersService) ListAll(params ListAllUsersParams) ([]User, error)

func (*UsersService) ListMemberships added in v1.35.1

func (*UsersService) ListOAuthAccessTokens added in v1.31.0

func (s *UsersService) ListOAuthAccessTokens(userID, provider string) ([]*UserOAuthAccessToken, error)

func (*UsersService) Lock added in v1.48.4

func (s *UsersService) Lock(userID string) (*User, error)

func (*UsersService) Read

func (s *UsersService) Read(userId string) (*User, error)

func (*UsersService) Unban added in v1.21.0

func (s *UsersService) Unban(userID string) (*User, error)

func (*UsersService) Unlock added in v1.48.4

func (s *UsersService) Unlock(userID string) (*User, error)

func (*UsersService) Update

func (s *UsersService) Update(userId string, updateRequest *UpdateUser) (*User, error)

func (*UsersService) UpdateMetadata added in v1.9.0

func (s *UsersService) UpdateMetadata(userId string, updateMetadataRequest *UpdateUserMetadata) (*User, error)

type Verification added in v1.28.0

type Verification struct {
	Status           string `json:"status"`
	Strategy         string `json:"strategy"`
	Attempts         *int   `json:"attempts"`
	ExpireAt         *int64 `json:"expire_at"`
	VerifiedAtClient string `json:"verified_at_client,omitempty"`

	// needed for Web3
	Nonce *string `json:"nonce,omitempty"`

	// needed for OAuth
	ExternalVerificationRedirectURL *string `json:"external_verification_redirect_url,omitempty"`
	Error                           []byte  `json:"error,omitempty"`
}

type VerificationService added in v1.0.3

type VerificationService service

func (*VerificationService) Verify added in v1.0.3

func (s *VerificationService) Verify(req *http.Request) (*Session, error)

type VerifyTokenOption added in v1.2.0

type VerifyTokenOption func(*verifyTokenOptions) error

VerifyTokenOption describes a functional parameter for the VerifyToken method

func WithAuthorizedParty added in v1.2.0

func WithAuthorizedParty(parties ...string) VerifyTokenOption

WithAuthorizedParty allows to set the authorized parties to check against the azp claim of the session token

func WithCustomClaims added in v1.8.0

func WithCustomClaims(customClaims interface{}) VerifyTokenOption

WithCustomClaims allows to pass a type (e.g. struct), which will be populated with the token claims based on json tags. For this option to work you must pass a pointer.

func WithJWTVerificationKey added in v1.5.0

func WithJWTVerificationKey(key string) VerifyTokenOption

WithJWTVerificationKey allows to set the JWK to use for verifying tokens without the need to download or cache any JWKs at runtime

func WithLeeway added in v1.5.0

func WithLeeway(leeway time.Duration) VerifyTokenOption

WithLeeway allows to set a custom leeway that gives some extra time to the token to accomodate for clock skew, etc.

func WithProxyURL added in v1.48.4

func WithProxyURL(proxyURL string) VerifyTokenOption

func WithSatelliteDomain added in v1.48.4

func WithSatelliteDomain(isSatellite bool) VerifyTokenOption

type Web3Wallet added in v1.31.0

type Web3Wallet struct {
	ID           string        `json:"id"`
	Object       string        `json:"object"`
	Web3Wallet   string        `json:"web3_wallet"`
	Verification *Verification `json:"verification"`
}

type WebhooksService added in v1.0.8

type WebhooksService service

func (*WebhooksService) CreateSvix added in v1.1.0

func (s *WebhooksService) CreateSvix() (*SvixResponse, error)

func (*WebhooksService) DeleteSvix added in v1.1.0

func (s *WebhooksService) DeleteSvix() error

func (*WebhooksService) RefreshSvixURL added in v1.1.0

func (s *WebhooksService) RefreshSvixURL() (*SvixResponse, error)

type ΟrganizationMembershipPublicUserData added in v1.32.0

type ΟrganizationMembershipPublicUserData struct {
	FirstName       *string `json:"first_name"`
	LastName        *string `json:"last_name"`
	ProfileImageURL string  `json:"profile_image_url"`
	ImageURL        *string `json:"image_url,omitempty"`
	HasImage        bool    `json:"has_image"`
	Identifier      string  `json:"identifier"`
	UserID          string  `json:"user_id"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL