Account
AccountService manages account-level operations. Accounts are the top-level organizational unit in the system. All operations are scoped to the authenticated account determined by the JWT token.
Authentication: Bearer token (JWT) Scope: Account-level operations
Retrieves the current account for the token accessing the API
Rotates the webhook signing key for the account
ModelsExpand Collapse
type Account struct{…}
Account is an account resource.
Info AccountInfo
AccountInfo contains information about the account.
WebhookEventsHmacSecret stringoptional
The generated secret that will sign all webhooks that are sent to your configured Webhook URL. Formatted as "wh_asdf1234" per the https://www.standardwebhooks.com/ format.
Metadata AccountResourceMetadata
Spec AccountSpec
AccountSpec contains the specification for an account.
Metadata AccountResourceMetadata
Spec WorkspaceSpec
type AccountSpec struct{…}
AccountSpec contains the specification for an account.
Metadata AccountResourceMetadata
Spec WorkspaceSpec
type Profile struct{…}
Profile represents a human user at the account level. Profiles are account-scoped resources that can be associated with multiple workspaces through the Actor model. Authentication for profiles is handled via SSO/OAuth (WorkOS).