productivity
FusionAuth CLI for AI Agents
Use the FusionAuth CLI from KosmoKrator to call FusionAuth tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.FusionAuth CLI Setup
FusionAuth can be configured headlessly with `kosmokrator integrations:configure fusionauth`.
# Install KosmoKrator first if it is not available on PATH.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash
# Configure and verify this integration.
kosmokrator integrations:configure fusionauth --set api_key="$FUSIONAUTH_API_KEY" --set base_url="$FUSIONAUTH_BASE_URL" --enable --read allow --write ask --json
kosmokrator integrations:doctor fusionauth --json
kosmokrator integrations:status --json Credentials
Authentication type: api key header api_key_header. Configure credentials once, then reuse the same stored profile from scripts, coding CLIs, Lua, and MCP.
| Key | Env var | Type | Required | Label |
|---|---|---|---|---|
api_key | FUSIONAUTH_API_KEY | Secret secret | yes | API Key |
base_url | FUSIONAUTH_BASE_URL | URL url | yes | FusionAuth Base URL |
tenant_id | FUSIONAUTH_TENANT_ID | Text string | no | Default Tenant ID |
Command Patterns
The generic command is stable across every integration. The provider shortcut is shorter for humans.
kosmo integrations:call fusionauth.fusionauth_action_user_with_id '{}' --json kosmo integrations:fusionauth fusionauth_action_user_with_id '{}' --json Discovery
These commands return structured output for coding agents that need to inspect capabilities before choosing a function.
kosmo integrations:docs fusionauth --json
kosmo integrations:docs fusionauth.fusionauth_action_user_with_id --json
kosmo integrations:schema fusionauth.fusionauth_action_user_with_id --json
kosmo integrations:search "FusionAuth" --json
kosmo integrations:list --json Automation Contexts
The same configured command surface works in these environments. The command does not change unless the host wrapper, credentials, or permissions change.
CLI Functions
Every function below can be called headlessly. Commands are highlighted, copyable, and scroll horizontally when payloads are long.
fusionauth.fusionauth_action_user_with_id
Takes an action on a user. The user being actioned is called the "actionee" and the user taking the action is called the "actioner". Both user ids are required in the request object.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_action_user_with_id '{}' --json kosmo integrations:fusionauth fusionauth_action_user_with_id '{}' --json fusionauth.fusionauth_activate_reactor_with_id
Activates the FusionAuth Reactor using a license Id and optionally a license text (for air-gapped deployments)
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_activate_reactor_with_id '{}' --json kosmo integrations:fusionauth fusionauth_activate_reactor_with_id '{}' --json fusionauth.fusionauth_cancel_action_with_id
Cancels the user action.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_cancel_action_with_id '{}' --json kosmo integrations:fusionauth fusionauth_cancel_action_with_id '{}' --json fusionauth.fusionauth_change_password_with_id
Changes a user's password using the change password Id. This usually occurs after an email has been sent to the user and they clicked on a link to reset their password. As of version 1.32.2, prefer sending the changePasswordId in the request body. To do this, omit the first parameter, and set the value in the request body.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_change_password_with_id '{}' --json kosmo integrations:fusionauth fusionauth_change_password_with_id '{}' --json fusionauth.fusionauth_comment_on_user_with_id
Adds a comment to the user's account.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_comment_on_user_with_id '{}' --json kosmo integrations:fusionauth fusionauth_comment_on_user_with_id '{}' --json fusionauth.fusionauth_complete_verify_identity_with_id
Completes verification of an identity using verification codes from the Verify Start API.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_complete_verify_identity_with_id '{}' --json kosmo integrations:fusionauth fusionauth_complete_verify_identity_with_id '{}' --json fusionauth.fusionauth_complete_web_authn_assertion_with_id
Complete a WebAuthn authentication ceremony by validating the signature against the previously generated challenge without logging the user in
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_complete_web_authn_assertion_with_id '{}' --json kosmo integrations:fusionauth fusionauth_complete_web_authn_assertion_with_id '{}' --json fusionauth.fusionauth_complete_web_authn_login_with_id
Complete a WebAuthn authentication ceremony by validating the signature against the previously generated challenge and then login the user in
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_complete_web_authn_login_with_id '{}' --json kosmo integrations:fusionauth fusionauth_complete_web_authn_login_with_id '{}' --json fusionauth.fusionauth_complete_web_authn_registration_with_id
Complete a WebAuthn registration ceremony by validating the client request and saving the new credential
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_complete_web_authn_registration_with_id '{}' --json kosmo integrations:fusionauth fusionauth_complete_web_authn_registration_with_id '{}' --json fusionauth.fusionauth_create_apikey
Creates an API key. You can optionally specify a unique Id for the key, if not provided one will be generated. an API key can only be created with equal or lesser authority. An API key cannot create another API key unless it is granted to that API key. If an API key is locked to a tenant, it can only create API Keys for that same tenant.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_apikey '{}' --json kosmo integrations:fusionauth fusionauth_create_apikey '{}' --json fusionauth.fusionauth_create_apikey_with_id
Creates an API key. You can optionally specify a unique Id for the key, if not provided one will be generated. an API key can only be created with equal or lesser authority. An API key cannot create another API key unless it is granted to that API key. If an API key is locked to a tenant, it can only create API Keys for that same tenant.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_apikey_with_id '{}' --json kosmo integrations:fusionauth fusionauth_create_apikey_with_id '{}' --json fusionauth.fusionauth_create_application
Creates an application. You can optionally specify an Id for the application, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_application '{}' --json kosmo integrations:fusionauth fusionauth_create_application '{}' --json fusionauth.fusionauth_create_application_role
Creates a new role for an application. You must specify the Id of the application you are creating the role for. You can optionally specify an Id for the role inside the ApplicationRole object itself, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_application_role '{}' --json kosmo integrations:fusionauth fusionauth_create_application_role '{}' --json fusionauth.fusionauth_create_application_role_with_id
Creates a new role for an application. You must specify the Id of the application you are creating the role for. You can optionally specify an Id for the role inside the ApplicationRole object itself, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_application_role_with_id '{}' --json kosmo integrations:fusionauth fusionauth_create_application_role_with_id '{}' --json fusionauth.fusionauth_create_application_with_id
Creates an application. You can optionally specify an Id for the application, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_application_with_id '{}' --json kosmo integrations:fusionauth fusionauth_create_application_with_id '{}' --json fusionauth.fusionauth_create_audit_log_with_id
Creates an audit log with the message and user name (usually an email). Audit logs should be written anytime you make changes to the FusionAuth database. When using the FusionAuth App web interface, any changes are automatically written to the audit log. However, if you are accessing the API, you must write the audit logs yourself.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_audit_log_with_id '{}' --json kosmo integrations:fusionauth fusionauth_create_audit_log_with_id '{}' --json fusionauth.fusionauth_create_connector
Creates a connector. You can optionally specify an Id for the connector, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_connector '{}' --json kosmo integrations:fusionauth fusionauth_create_connector '{}' --json fusionauth.fusionauth_create_connector_with_id
Creates a connector. You can optionally specify an Id for the connector, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_connector_with_id '{}' --json kosmo integrations:fusionauth fusionauth_create_connector_with_id '{}' --json fusionauth.fusionauth_create_consent
Creates a user consent type. You can optionally specify an Id for the consent type, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_consent '{}' --json kosmo integrations:fusionauth fusionauth_create_consent '{}' --json fusionauth.fusionauth_create_consent_with_id
Creates a user consent type. You can optionally specify an Id for the consent type, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_consent_with_id '{}' --json kosmo integrations:fusionauth fusionauth_create_consent_with_id '{}' --json fusionauth.fusionauth_create_device_approve
Approve a device grant. OR Approve a device grant.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_device_approve '{}' --json kosmo integrations:fusionauth fusionauth_create_device_approve '{}' --json fusionauth.fusionauth_create_device_authorize
Start the Device Authorization flow using a request body OR Start the Device Authorization flow using form-encoded parameters
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_device_authorize '{}' --json kosmo integrations:fusionauth fusionauth_create_device_authorize '{}' --json fusionauth.fusionauth_create_device_user_code
Retrieve a user_code that is part of an in-progress Device Authorization Grant. This API is useful if you want to build your own login workflow to complete a device grant. OR Retrieve a user_code that is part of an in-progress Device Authorization Grant. This API is useful if you want to build your own login workflow to complete a device grant. This request will require an API key.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_device_user_code '{}' --json kosmo integrations:fusionauth fusionauth_create_device_user_code '{}' --json fusionauth.fusionauth_create_email_template
Creates an email template. You can optionally specify an Id for the template, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_email_template '{}' --json kosmo integrations:fusionauth fusionauth_create_email_template '{}' --json fusionauth.fusionauth_create_email_template_with_id
Creates an email template. You can optionally specify an Id for the template, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_email_template_with_id '{}' --json kosmo integrations:fusionauth fusionauth_create_email_template_with_id '{}' --json fusionauth.fusionauth_create_entity
Creates an Entity. You can optionally specify an Id for the Entity. If not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_entity '{}' --json kosmo integrations:fusionauth fusionauth_create_entity '{}' --json fusionauth.fusionauth_create_entity_type
Creates a Entity Type. You can optionally specify an Id for the Entity Type, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_entity_type '{}' --json kosmo integrations:fusionauth fusionauth_create_entity_type '{}' --json fusionauth.fusionauth_create_entity_type_permission
Creates a new permission for an entity type. You must specify the Id of the entity type you are creating the permission for. You can optionally specify an Id for the permission inside the EntityTypePermission object itself, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_entity_type_permission '{}' --json kosmo integrations:fusionauth fusionauth_create_entity_type_permission '{}' --json fusionauth.fusionauth_create_entity_type_permission_with_id
Creates a new permission for an entity type. You must specify the Id of the entity type you are creating the permission for. You can optionally specify an Id for the permission inside the EntityTypePermission object itself, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_entity_type_permission_with_id '{}' --json kosmo integrations:fusionauth fusionauth_create_entity_type_permission_with_id '{}' --json fusionauth.fusionauth_create_entity_type_with_id
Creates a Entity Type. You can optionally specify an Id for the Entity Type, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_entity_type_with_id '{}' --json kosmo integrations:fusionauth fusionauth_create_entity_type_with_id '{}' --json fusionauth.fusionauth_create_entity_with_id
Creates an Entity. You can optionally specify an Id for the Entity. If not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_entity_with_id '{}' --json kosmo integrations:fusionauth fusionauth_create_entity_with_id '{}' --json fusionauth.fusionauth_create_family
Creates a family with the user Id in the request as the owner and sole member of the family. You can optionally specify an Id for the family, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_family '{}' --json kosmo integrations:fusionauth fusionauth_create_family '{}' --json fusionauth.fusionauth_create_family_with_id
Creates a family with the user Id in the request as the owner and sole member of the family. You can optionally specify an Id for the family, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_family_with_id '{}' --json kosmo integrations:fusionauth fusionauth_create_family_with_id '{}' --json fusionauth.fusionauth_create_form
Creates a form. You can optionally specify an Id for the form, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_form '{}' --json kosmo integrations:fusionauth fusionauth_create_form '{}' --json fusionauth.fusionauth_create_form_field
Creates a form field. You can optionally specify an Id for the form, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_form_field '{}' --json kosmo integrations:fusionauth fusionauth_create_form_field '{}' --json fusionauth.fusionauth_create_form_field_with_id
Creates a form field. You can optionally specify an Id for the form, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_form_field_with_id '{}' --json kosmo integrations:fusionauth fusionauth_create_form_field_with_id '{}' --json fusionauth.fusionauth_create_form_with_id
Creates a form. You can optionally specify an Id for the form, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_form_with_id '{}' --json kosmo integrations:fusionauth fusionauth_create_form_with_id '{}' --json fusionauth.fusionauth_create_group
Creates a group. You can optionally specify an Id for the group, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_group '{}' --json kosmo integrations:fusionauth fusionauth_create_group '{}' --json fusionauth.fusionauth_create_group_members_with_id
Creates a member in a group.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_group_members_with_id '{}' --json kosmo integrations:fusionauth fusionauth_create_group_members_with_id '{}' --json fusionauth.fusionauth_create_group_with_id
Creates a group. You can optionally specify an Id for the group, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_group_with_id '{}' --json kosmo integrations:fusionauth fusionauth_create_group_with_id '{}' --json fusionauth.fusionauth_create_identity_provider
Creates an identity provider. You can optionally specify an Id for the identity provider, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_identity_provider '{}' --json kosmo integrations:fusionauth fusionauth_create_identity_provider '{}' --json fusionauth.fusionauth_create_identity_provider_with_id
Creates an identity provider. You can optionally specify an Id for the identity provider, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_identity_provider_with_id '{}' --json kosmo integrations:fusionauth fusionauth_create_identity_provider_with_id '{}' --json fusionauth.fusionauth_create_introspect
Inspect an access token issued as the result of the Client Credentials Grant. OR Inspect an access token issued as the result of the Client Credentials Grant. OR Inspect an access token issued as the result of the User based grant such as the Authorization Code Grant, Implicit Grant, the User Credentials Grant or the Refresh Grant. OR Inspect an access token issued as the result of the User based grant such as the Authorization Code Grant, Implicit Grant, the User Credentials Grant or the Refres
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_introspect '{}' --json kosmo integrations:fusionauth fusionauth_create_introspect '{}' --json fusionauth.fusionauth_create_ipaccess_control_list
Creates an IP Access Control List. You can optionally specify an Id on this create request, if one is not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_ipaccess_control_list '{}' --json kosmo integrations:fusionauth fusionauth_create_ipaccess_control_list '{}' --json fusionauth.fusionauth_create_ipaccess_control_list_with_id
Creates an IP Access Control List. You can optionally specify an Id on this create request, if one is not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_ipaccess_control_list_with_id '{}' --json kosmo integrations:fusionauth fusionauth_create_ipaccess_control_list_with_id '{}' --json fusionauth.fusionauth_create_lambda
Creates a Lambda. You can optionally specify an Id for the lambda, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_lambda '{}' --json kosmo integrations:fusionauth fusionauth_create_lambda '{}' --json fusionauth.fusionauth_create_lambda_with_id
Creates a Lambda. You can optionally specify an Id for the lambda, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_lambda_with_id '{}' --json kosmo integrations:fusionauth fusionauth_create_lambda_with_id '{}' --json fusionauth.fusionauth_create_logout
The Logout API is intended to be used to remove the refresh token and access token cookies if they exist on the client and revoke the refresh token stored. This API takes the refresh token in the JSON body. OR The Logout API is intended to be used to remove the refresh token and access token cookies if they exist on the client and revoke the refresh token stored. This API does nothing if the request does not contain an access token or refresh token cookies.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_logout '{}' --json kosmo integrations:fusionauth fusionauth_create_logout '{}' --json fusionauth.fusionauth_create_message_template
Creates an message template. You can optionally specify an Id for the template, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_message_template '{}' --json kosmo integrations:fusionauth fusionauth_create_message_template '{}' --json fusionauth.fusionauth_create_message_template_with_id
Creates an message template. You can optionally specify an Id for the template, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_message_template_with_id '{}' --json kosmo integrations:fusionauth fusionauth_create_message_template_with_id '{}' --json fusionauth.fusionauth_create_messenger
Creates a messenger. You can optionally specify an Id for the messenger, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_messenger '{}' --json kosmo integrations:fusionauth fusionauth_create_messenger '{}' --json fusionauth.fusionauth_create_messenger_with_id
Creates a messenger. You can optionally specify an Id for the messenger, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_messenger_with_id '{}' --json kosmo integrations:fusionauth fusionauth_create_messenger_with_id '{}' --json fusionauth.fusionauth_create_oauth_scope
Creates a new custom OAuth scope for an application. You must specify the Id of the application you are creating the scope for. You can optionally specify an Id for the OAuth scope on the URL, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_oauth_scope '{}' --json kosmo integrations:fusionauth fusionauth_create_oauth_scope '{}' --json fusionauth.fusionauth_create_oauth_scope_with_id
Creates a new custom OAuth scope for an application. You must specify the Id of the application you are creating the scope for. You can optionally specify an Id for the OAuth scope on the URL, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_oauth_scope_with_id '{}' --json kosmo integrations:fusionauth fusionauth_create_oauth_scope_with_id '{}' --json fusionauth.fusionauth_create_tenant
Creates a tenant. You can optionally specify an Id for the tenant, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_tenant '{}' --json kosmo integrations:fusionauth fusionauth_create_tenant '{}' --json fusionauth.fusionauth_create_tenant_manager_identity_provider_type_configuration_with_id
Creates a tenant manager identity provider type configuration for the given identity provider type.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_tenant_manager_identity_provider_type_configuration_with_id '{}' --json kosmo integrations:fusionauth fusionauth_create_tenant_manager_identity_provider_type_configuration_with_id '{}' --json fusionauth.fusionauth_create_tenant_with_id
Creates a tenant. You can optionally specify an Id for the tenant, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_tenant_with_id '{}' --json kosmo integrations:fusionauth fusionauth_create_tenant_with_id '{}' --json fusionauth.fusionauth_create_theme
Creates a Theme. You can optionally specify an Id for the theme, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_theme '{}' --json kosmo integrations:fusionauth fusionauth_create_theme '{}' --json fusionauth.fusionauth_create_theme_with_id
Creates a Theme. You can optionally specify an Id for the theme, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_theme_with_id '{}' --json kosmo integrations:fusionauth fusionauth_create_theme_with_id '{}' --json fusionauth.fusionauth_create_token
Exchange User Credentials for a Token. If you will be using the Resource Owner Password Credential Grant, you will make a request to the Token endpoint to exchange the user's email and password for an access token. OR Exchange User Credentials for a Token. If you will be using the Resource Owner Password Credential Grant, you will make a request to the Token endpoint to exchange the user's email and password for an access token. OR Exchange a Refresh Token for an Access Token. If you will be usi
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_token '{}' --json kosmo integrations:fusionauth fusionauth_create_token '{}' --json fusionauth.fusionauth_create_user
Creates a user. You can optionally specify an Id for the user, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_user '{}' --json kosmo integrations:fusionauth fusionauth_create_user '{}' --json fusionauth.fusionauth_create_user_action
Creates a user action. This action cannot be taken on a user until this call successfully returns. Anytime after that the user action can be applied to any user.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_user_action '{}' --json kosmo integrations:fusionauth fusionauth_create_user_action '{}' --json fusionauth.fusionauth_create_user_action_reason
Creates a user reason. This user action reason cannot be used when actioning a user until this call completes successfully. Anytime after that the user action reason can be used.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_user_action_reason '{}' --json kosmo integrations:fusionauth fusionauth_create_user_action_reason '{}' --json fusionauth.fusionauth_create_user_action_reason_with_id
Creates a user reason. This user action reason cannot be used when actioning a user until this call completes successfully. Anytime after that the user action reason can be used.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_user_action_reason_with_id '{}' --json kosmo integrations:fusionauth fusionauth_create_user_action_reason_with_id '{}' --json fusionauth.fusionauth_create_user_action_with_id
Creates a user action. This action cannot be taken on a user until this call successfully returns. Anytime after that the user action can be applied to any user.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_user_action_with_id '{}' --json kosmo integrations:fusionauth fusionauth_create_user_action_with_id '{}' --json fusionauth.fusionauth_create_user_change_password
Changes a user's password using their access token (JWT) instead of the changePasswordId A common use case for this method will be if you want to allow the user to change their own password. Remember to send refreshToken in the request body if you want to get a new refresh token when login using the returned oneTimePassword. OR Changes a user's password using their identity (loginId and password). Using a loginId instead of the changePasswordId bypasses the email verification and allows a passwo
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_user_change_password '{}' --json kosmo integrations:fusionauth fusionauth_create_user_change_password '{}' --json fusionauth.fusionauth_create_user_consent
Creates a single User consent.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_user_consent '{}' --json kosmo integrations:fusionauth fusionauth_create_user_consent '{}' --json fusionauth.fusionauth_create_user_consent_with_id
Creates a single User consent.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_user_consent_with_id '{}' --json kosmo integrations:fusionauth fusionauth_create_user_consent_with_id '{}' --json fusionauth.fusionauth_create_user_link_with_id
Link an external user from a 3rd party identity provider to a FusionAuth user.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_user_link_with_id '{}' --json kosmo integrations:fusionauth fusionauth_create_user_link_with_id '{}' --json fusionauth.fusionauth_create_user_verify_email
Administratively verify a user's email address. Use this method to bypass email verification for the user. The request body will contain the userId to be verified. An API key is required when sending the userId in the request body. OR Confirms a user's email address. The request body will contain the verificationId. You may also be required to send a one-time use code based upon your configuration. When the tenant is configured to gate a user until their email address is verified, this procedure
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_user_verify_email '{}' --json kosmo integrations:fusionauth fusionauth_create_user_verify_email '{}' --json fusionauth.fusionauth_create_user_with_id
Creates a user. You can optionally specify an Id for the user, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_user_with_id '{}' --json kosmo integrations:fusionauth fusionauth_create_user_with_id '{}' --json fusionauth.fusionauth_create_webhook
Creates a webhook. You can optionally specify an Id for the webhook, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_webhook '{}' --json kosmo integrations:fusionauth fusionauth_create_webhook '{}' --json fusionauth.fusionauth_create_webhook_with_id
Creates a webhook. You can optionally specify an Id for the webhook, if not provided one will be generated.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_create_webhook_with_id '{}' --json kosmo integrations:fusionauth fusionauth_create_webhook_with_id '{}' --json fusionauth.fusionauth_delete_apikey_with_id
Deletes the API key for the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_apikey_with_id '{}' --json kosmo integrations:fusionauth fusionauth_delete_apikey_with_id '{}' --json fusionauth.fusionauth_delete_application_role_with_id
Hard deletes an application role. This is a dangerous operation and should not be used in most circumstances. This permanently removes the given role from all users that had it.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_application_role_with_id '{}' --json kosmo integrations:fusionauth fusionauth_delete_application_role_with_id '{}' --json fusionauth.fusionauth_delete_application_with_id
Hard deletes an application. This is a dangerous operation and should not be used in most circumstances. This will delete the application, any registrations for that application, metrics and reports for the application, all the roles for the application, and any other data associated with the application. This operation could take a very long time, depending on the amount of data in your database. OR Deactivates the application with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_application_with_id '{}' --json kosmo integrations:fusionauth fusionauth_delete_application_with_id '{}' --json fusionauth.fusionauth_delete_connector_with_id
Deletes the connector for the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_connector_with_id '{}' --json kosmo integrations:fusionauth fusionauth_delete_connector_with_id '{}' --json fusionauth.fusionauth_delete_consent_with_id
Deletes the consent for the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_consent_with_id '{}' --json kosmo integrations:fusionauth fusionauth_delete_consent_with_id '{}' --json fusionauth.fusionauth_delete_email_template_with_id
Deletes the email template for the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_email_template_with_id '{}' --json kosmo integrations:fusionauth fusionauth_delete_email_template_with_id '{}' --json fusionauth.fusionauth_delete_entity_grant_with_id
Deletes an Entity Grant for the given User or Entity.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_entity_grant_with_id '{}' --json kosmo integrations:fusionauth fusionauth_delete_entity_grant_with_id '{}' --json fusionauth.fusionauth_delete_entity_type_permission_with_id
Hard deletes a permission. This is a dangerous operation and should not be used in most circumstances. This permanently removes the given permission from all grants that had it.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_entity_type_permission_with_id '{}' --json kosmo integrations:fusionauth fusionauth_delete_entity_type_permission_with_id '{}' --json fusionauth.fusionauth_delete_entity_type_with_id
Deletes the Entity Type for the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_entity_type_with_id '{}' --json kosmo integrations:fusionauth fusionauth_delete_entity_type_with_id '{}' --json fusionauth.fusionauth_delete_entity_with_id
Deletes the Entity for the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_entity_with_id '{}' --json kosmo integrations:fusionauth fusionauth_delete_entity_with_id '{}' --json fusionauth.fusionauth_delete_form_field_with_id
Deletes the form field for the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_form_field_with_id '{}' --json kosmo integrations:fusionauth fusionauth_delete_form_field_with_id '{}' --json fusionauth.fusionauth_delete_form_with_id
Deletes the form for the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_form_with_id '{}' --json kosmo integrations:fusionauth fusionauth_delete_form_with_id '{}' --json fusionauth.fusionauth_delete_group_members_with_id
Removes users as members of a group.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_group_members_with_id '{}' --json kosmo integrations:fusionauth fusionauth_delete_group_members_with_id '{}' --json fusionauth.fusionauth_delete_group_with_id
Deletes the group for the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_group_with_id '{}' --json kosmo integrations:fusionauth fusionauth_delete_group_with_id '{}' --json fusionauth.fusionauth_delete_identity_provider_with_id
Deletes the identity provider for the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_identity_provider_with_id '{}' --json kosmo integrations:fusionauth fusionauth_delete_identity_provider_with_id '{}' --json fusionauth.fusionauth_delete_ipaccess_control_list_with_id
Deletes the IP Access Control List for the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_ipaccess_control_list_with_id '{}' --json kosmo integrations:fusionauth fusionauth_delete_ipaccess_control_list_with_id '{}' --json fusionauth.fusionauth_delete_jwt_refresh
Revokes refresh tokens using the information in the JSON body. The handling for this method is the same as the revokeRefreshToken method and is based on the information you provide in the RefreshDeleteRequest object. See that method for additional information. OR Revoke all refresh tokens that belong to a user by user Id for a specific application by applicationId. OR Revoke all refresh tokens that belong to a user by user Id. OR Revoke all refresh tokens that belong to an application by applica
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_jwt_refresh '{}' --json kosmo integrations:fusionauth fusionauth_delete_jwt_refresh '{}' --json fusionauth.fusionauth_delete_key_with_id
Deletes the key for the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_key_with_id '{}' --json kosmo integrations:fusionauth fusionauth_delete_key_with_id '{}' --json fusionauth.fusionauth_delete_lambda_with_id
Deletes the lambda for the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_lambda_with_id '{}' --json kosmo integrations:fusionauth fusionauth_delete_lambda_with_id '{}' --json fusionauth.fusionauth_delete_message_template_with_id
Deletes the message template for the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_message_template_with_id '{}' --json kosmo integrations:fusionauth fusionauth_delete_message_template_with_id '{}' --json fusionauth.fusionauth_delete_messenger_with_id
Deletes the messenger for the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_messenger_with_id '{}' --json kosmo integrations:fusionauth fusionauth_delete_messenger_with_id '{}' --json fusionauth.fusionauth_delete_oauth_scope_with_id
Hard deletes a custom OAuth scope. OAuth workflows that are still requesting the deleted OAuth scope may fail depending on the application's unknown scope policy.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_oauth_scope_with_id '{}' --json kosmo integrations:fusionauth fusionauth_delete_oauth_scope_with_id '{}' --json fusionauth.fusionauth_delete_tenant_manager_identity_provider_type_configuration_with_id
Deletes the tenant manager identity provider type configuration for the given identity provider type.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_tenant_manager_identity_provider_type_configuration_with_id '{}' --json kosmo integrations:fusionauth fusionauth_delete_tenant_manager_identity_provider_type_configuration_with_id '{}' --json fusionauth.fusionauth_delete_tenant_with_id
Deletes the tenant based on the given request (sent to the API as JSON). This permanently deletes all information, metrics, reports and data associated with the tenant and everything under the tenant (applications, users, etc). OR Deletes the tenant for the given Id asynchronously. This method is helpful if you do not want to wait for the delete operation to complete. OR Deletes the tenant based on the given Id on the URL. This permanently deletes all information, metrics, reports and data assoc
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_tenant_with_id '{}' --json kosmo integrations:fusionauth fusionauth_delete_tenant_with_id '{}' --json fusionauth.fusionauth_delete_theme_with_id
Deletes the theme for the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_theme_with_id '{}' --json kosmo integrations:fusionauth fusionauth_delete_theme_with_id '{}' --json fusionauth.fusionauth_delete_user_action_reason_with_id
Deletes the user action reason for the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_user_action_reason_with_id '{}' --json kosmo integrations:fusionauth fusionauth_delete_user_action_reason_with_id '{}' --json fusionauth.fusionauth_delete_user_action_with_id
Deletes the user action for the given Id. This permanently deletes the user action and also any history and logs of the action being applied to any users. OR Deactivates the user action with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_user_action_with_id '{}' --json kosmo integrations:fusionauth fusionauth_delete_user_action_with_id '{}' --json fusionauth.fusionauth_delete_user_bulk
Deletes the users with the given Ids, or users matching the provided JSON query or queryString. The order of preference is Ids, query and then queryString, it is recommended to only provide one of the three for the request. This method can be used to deactivate or permanently delete (hard-delete) users based upon the hardDelete boolean in the request body. Using the dryRun parameter you may also request the result of the action without actually deleting or deactivating any users. OR Deactivates
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_user_bulk '{}' --json kosmo integrations:fusionauth fusionauth_delete_user_bulk '{}' --json fusionauth.fusionauth_delete_user_link_with_id
Remove an existing link that has been made from a 3rd party identity provider to a FusionAuth user.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_user_link_with_id '{}' --json kosmo integrations:fusionauth fusionauth_delete_user_link_with_id '{}' --json fusionauth.fusionauth_delete_user_registration_with_id
Deletes the user registration for the given user and application along with the given JSON body that contains the event information. OR Deletes the user registration for the given user and application.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_user_registration_with_id '{}' --json kosmo integrations:fusionauth fusionauth_delete_user_registration_with_id '{}' --json fusionauth.fusionauth_delete_user_two_factor_with_id
Disable two-factor authentication for a user using a JSON body rather than URL parameters. OR Disable two-factor authentication for a user.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_user_two_factor_with_id '{}' --json kosmo integrations:fusionauth fusionauth_delete_user_two_factor_with_id '{}' --json fusionauth.fusionauth_delete_user_with_id
Deletes the user based on the given request (sent to the API as JSON). This permanently deletes all information, metrics, reports and data associated with the user. OR Deletes the user for the given Id. This permanently deletes all information, metrics, reports and data associated with the user. OR Deactivates the user with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_user_with_id '{}' --json kosmo integrations:fusionauth fusionauth_delete_user_with_id '{}' --json fusionauth.fusionauth_delete_web_authn_credential_with_id
Deletes the WebAuthn credential for the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_web_authn_credential_with_id '{}' --json kosmo integrations:fusionauth fusionauth_delete_web_authn_credential_with_id '{}' --json fusionauth.fusionauth_delete_web_authn_credentials_for_user_with_id
Deletes all of the WebAuthn credentials for the given User Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_web_authn_credentials_for_user_with_id '{}' --json kosmo integrations:fusionauth fusionauth_delete_web_authn_credentials_for_user_with_id '{}' --json fusionauth.fusionauth_delete_webhook_with_id
Deletes the webhook for the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_delete_webhook_with_id '{}' --json kosmo integrations:fusionauth fusionauth_delete_webhook_with_id '{}' --json fusionauth.fusionauth_enable_two_factor_with_id
Enable two-factor authentication for a user.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_enable_two_factor_with_id '{}' --json kosmo integrations:fusionauth fusionauth_enable_two_factor_with_id '{}' --json fusionauth.fusionauth_exchange_refresh_token_for_jwtwith_id
Exchange a refresh token for a new JWT.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_exchange_refresh_token_for_jwtwith_id '{}' --json kosmo integrations:fusionauth fusionauth_exchange_refresh_token_for_jwtwith_id '{}' --json fusionauth.fusionauth_forgot_password_with_id
Begins the forgot password sequence, which kicks off an email to the user so that they can reset their password.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_forgot_password_with_id '{}' --json kosmo integrations:fusionauth fusionauth_forgot_password_with_id '{}' --json fusionauth.fusionauth_generate_key
Generate a new RSA or EC key pair or an HMAC secret.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_generate_key '{}' --json kosmo integrations:fusionauth fusionauth_generate_key '{}' --json fusionauth.fusionauth_generate_key_with_id
Generate a new RSA or EC key pair or an HMAC secret.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_generate_key_with_id '{}' --json kosmo integrations:fusionauth fusionauth_generate_key_with_id '{}' --json fusionauth.fusionauth_generate_two_factor_recovery_codes_with_id
Generate two-factor recovery codes for a user. Generating two-factor recovery codes will invalidate any existing recovery codes.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_generate_two_factor_recovery_codes_with_id '{}' --json kosmo integrations:fusionauth fusionauth_generate_two_factor_recovery_codes_with_id '{}' --json fusionauth.fusionauth_generate_two_factor_secret_using_jwtwith_id
Generate a Two Factor secret that can be used to enable Two Factor authentication for a User. The response will contain both the secret and a Base32 encoded form of the secret which can be shown to a User when using a 2 Step Authentication application such as Google Authenticator.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_generate_two_factor_secret_using_jwtwith_id '{}' --json kosmo integrations:fusionauth fusionauth_generate_two_factor_secret_using_jwtwith_id '{}' --json fusionauth.fusionauth_identity_provider_login_with_id
Handles login via third-parties including Social login, external OAuth and OpenID Connect, and other login systems.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_identity_provider_login_with_id '{}' --json kosmo integrations:fusionauth fusionauth_identity_provider_login_with_id '{}' --json fusionauth.fusionauth_import_key
Import an existing RSA or EC key pair or an HMAC secret.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_import_key '{}' --json kosmo integrations:fusionauth fusionauth_import_key '{}' --json fusionauth.fusionauth_import_key_with_id
Import an existing RSA or EC key pair or an HMAC secret.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_import_key_with_id '{}' --json kosmo integrations:fusionauth fusionauth_import_key_with_id '{}' --json fusionauth.fusionauth_import_refresh_tokens_with_id
Bulk imports refresh tokens. This request performs minimal validation and runs batch inserts of refresh tokens with the expectation that each token represents a user that already exists and is registered for the corresponding FusionAuth Application. This is done to increases the insert performance. Therefore, if you encounter an error due to a database key violation, the response will likely offer a generic explanation. If you encounter an error, you may optionally enable additional validation t
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_import_refresh_tokens_with_id '{}' --json kosmo integrations:fusionauth fusionauth_import_refresh_tokens_with_id '{}' --json fusionauth.fusionauth_import_users_with_id
Bulk imports users. This request performs minimal validation and runs batch inserts of users with the expectation that each user does not yet exist and each registration corresponds to an existing FusionAuth Application. This is done to increases the insert performance. Therefore, if you encounter an error due to a database key violation, the response will likely offer a generic explanation. If you encounter an error, you may optionally enable additional validation to receive a JSON response bod
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_import_users_with_id '{}' --json kosmo integrations:fusionauth fusionauth_import_users_with_id '{}' --json fusionauth.fusionauth_import_web_authn_credential_with_id
Import a WebAuthn credential
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_import_web_authn_credential_with_id '{}' --json kosmo integrations:fusionauth fusionauth_import_web_authn_credential_with_id '{}' --json fusionauth.fusionauth_issue_jwtwith_id
Issue a new access token (JWT) for the requested Application after ensuring the provided JWT is valid. A valid access token is properly signed and not expired. This API may be used in an SSO configuration to issue new tokens for another application after the user has obtained a valid token from authentication.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_issue_jwtwith_id '{}' --json kosmo integrations:fusionauth fusionauth_issue_jwtwith_id '{}' --json fusionauth.fusionauth_login_ping_with_id
Sends a ping to FusionAuth indicating that the user was automatically logged into an application. When using FusionAuth's SSO or your own, you should call this if the user is already logged in centrally, but accesses an application where they no longer have a session. This helps correctly track login counts, times and helps with reporting.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_login_ping_with_id '{}' --json kosmo integrations:fusionauth fusionauth_login_ping_with_id '{}' --json fusionauth.fusionauth_login_ping_with_request_with_id
Sends a ping to FusionAuth indicating that the user was automatically logged into an application. When using FusionAuth's SSO or your own, you should call this if the user is already logged in centrally, but accesses an application where they no longer have a session. This helps correctly track login counts, times and helps with reporting.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_login_ping_with_request_with_id '{}' --json kosmo integrations:fusionauth fusionauth_login_ping_with_request_with_id '{}' --json fusionauth.fusionauth_login_with_id
Authenticates a user to FusionAuth. This API optionally requires an API key. See Application.loginConfiguration.requireAuthentication.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_login_with_id '{}' --json kosmo integrations:fusionauth fusionauth_login_with_id '{}' --json fusionauth.fusionauth_modify_action_with_id
Modifies a temporal user action by changing the expiration of the action and optionally adding a comment to the action.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_modify_action_with_id '{}' --json kosmo integrations:fusionauth fusionauth_modify_action_with_id '{}' --json fusionauth.fusionauth_passwordless_login_with_id
Complete a login request using a passwordless code
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_passwordless_login_with_id '{}' --json kosmo integrations:fusionauth fusionauth_passwordless_login_with_id '{}' --json fusionauth.fusionauth_patch_apikey_with_id
Updates an API key with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_patch_apikey_with_id '{}' --json kosmo integrations:fusionauth fusionauth_patch_apikey_with_id '{}' --json fusionauth.fusionauth_patch_application_role_with_id
Updates, via PATCH, the application role with the given Id for the application.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_patch_application_role_with_id '{}' --json kosmo integrations:fusionauth fusionauth_patch_application_role_with_id '{}' --json fusionauth.fusionauth_patch_application_with_id
Updates, via PATCH, the application with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_patch_application_with_id '{}' --json kosmo integrations:fusionauth fusionauth_patch_application_with_id '{}' --json fusionauth.fusionauth_patch_connector_with_id
Updates, via PATCH, the connector with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_patch_connector_with_id '{}' --json kosmo integrations:fusionauth fusionauth_patch_connector_with_id '{}' --json fusionauth.fusionauth_patch_consent_with_id
Updates, via PATCH, the consent with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_patch_consent_with_id '{}' --json kosmo integrations:fusionauth fusionauth_patch_consent_with_id '{}' --json fusionauth.fusionauth_patch_email_template_with_id
Updates, via PATCH, the email template with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_patch_email_template_with_id '{}' --json kosmo integrations:fusionauth fusionauth_patch_email_template_with_id '{}' --json fusionauth.fusionauth_patch_entity_type_permission_with_id
Patches the permission with the given Id for the entity type.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_patch_entity_type_permission_with_id '{}' --json kosmo integrations:fusionauth fusionauth_patch_entity_type_permission_with_id '{}' --json fusionauth.fusionauth_patch_entity_type_with_id
Updates, via PATCH, the Entity Type with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_patch_entity_type_with_id '{}' --json kosmo integrations:fusionauth fusionauth_patch_entity_type_with_id '{}' --json fusionauth.fusionauth_patch_entity_with_id
Updates, via PATCH, the Entity with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_patch_entity_with_id '{}' --json kosmo integrations:fusionauth fusionauth_patch_entity_with_id '{}' --json fusionauth.fusionauth_patch_form_field_with_id
Patches the form field with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_patch_form_field_with_id '{}' --json kosmo integrations:fusionauth fusionauth_patch_form_field_with_id '{}' --json fusionauth.fusionauth_patch_form_with_id
Patches the form with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_patch_form_with_id '{}' --json kosmo integrations:fusionauth fusionauth_patch_form_with_id '{}' --json fusionauth.fusionauth_patch_group_with_id
Updates, via PATCH, the group with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_patch_group_with_id '{}' --json kosmo integrations:fusionauth fusionauth_patch_group_with_id '{}' --json fusionauth.fusionauth_patch_identity_provider_with_id
Updates, via PATCH, the identity provider with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_patch_identity_provider_with_id '{}' --json kosmo integrations:fusionauth fusionauth_patch_identity_provider_with_id '{}' --json fusionauth.fusionauth_patch_integrations_with_id
Updates, via PATCH, the available integrations.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_patch_integrations_with_id '{}' --json kosmo integrations:fusionauth fusionauth_patch_integrations_with_id '{}' --json fusionauth.fusionauth_patch_ipaccess_control_list_with_id
Update the IP Access Control List with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_patch_ipaccess_control_list_with_id '{}' --json kosmo integrations:fusionauth fusionauth_patch_ipaccess_control_list_with_id '{}' --json fusionauth.fusionauth_patch_lambda_with_id
Updates, via PATCH, the lambda with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_patch_lambda_with_id '{}' --json kosmo integrations:fusionauth fusionauth_patch_lambda_with_id '{}' --json fusionauth.fusionauth_patch_message_template_with_id
Updates, via PATCH, the message template with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_patch_message_template_with_id '{}' --json kosmo integrations:fusionauth fusionauth_patch_message_template_with_id '{}' --json fusionauth.fusionauth_patch_messenger_with_id
Updates, via PATCH, the messenger with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_patch_messenger_with_id '{}' --json kosmo integrations:fusionauth fusionauth_patch_messenger_with_id '{}' --json fusionauth.fusionauth_patch_oauth_scope_with_id
Updates, via PATCH, the custom OAuth scope with the given Id for the application.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_patch_oauth_scope_with_id '{}' --json kosmo integrations:fusionauth fusionauth_patch_oauth_scope_with_id '{}' --json fusionauth.fusionauth_patch_registration_with_id
Updates, via PATCH, the registration for the user with the given Id and the application defined in the request.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_patch_registration_with_id '{}' --json kosmo integrations:fusionauth fusionauth_patch_registration_with_id '{}' --json fusionauth.fusionauth_patch_system_configuration_with_id
Updates, via PATCH, the system configuration.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_patch_system_configuration_with_id '{}' --json kosmo integrations:fusionauth fusionauth_patch_system_configuration_with_id '{}' --json fusionauth.fusionauth_patch_tenant_manager_configuration_with_id
Updates, via PATCH, the Tenant Manager configuration.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_patch_tenant_manager_configuration_with_id '{}' --json kosmo integrations:fusionauth fusionauth_patch_tenant_manager_configuration_with_id '{}' --json fusionauth.fusionauth_patch_tenant_manager_identity_provider_type_configuration_with_id
Patches the tenant manager identity provider type configuration for the given identity provider type.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_patch_tenant_manager_identity_provider_type_configuration_with_id '{}' --json kosmo integrations:fusionauth fusionauth_patch_tenant_manager_identity_provider_type_configuration_with_id '{}' --json fusionauth.fusionauth_patch_tenant_with_id
Updates, via PATCH, the tenant with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_patch_tenant_with_id '{}' --json kosmo integrations:fusionauth fusionauth_patch_tenant_with_id '{}' --json fusionauth.fusionauth_patch_theme_with_id
Updates, via PATCH, the theme with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_patch_theme_with_id '{}' --json kosmo integrations:fusionauth fusionauth_patch_theme_with_id '{}' --json fusionauth.fusionauth_patch_user_action_reason_with_id
Updates, via PATCH, the user action reason with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_patch_user_action_reason_with_id '{}' --json kosmo integrations:fusionauth fusionauth_patch_user_action_reason_with_id '{}' --json fusionauth.fusionauth_patch_user_action_with_id
Updates, via PATCH, the user action with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_patch_user_action_with_id '{}' --json kosmo integrations:fusionauth fusionauth_patch_user_action_with_id '{}' --json fusionauth.fusionauth_patch_user_consent_with_id
Updates, via PATCH, a single User consent by Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_patch_user_consent_with_id '{}' --json kosmo integrations:fusionauth fusionauth_patch_user_consent_with_id '{}' --json fusionauth.fusionauth_patch_user_with_id
Updates, via PATCH, the user with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_patch_user_with_id '{}' --json kosmo integrations:fusionauth fusionauth_patch_user_with_id '{}' --json fusionauth.fusionauth_patch_webhook_with_id
Patches the webhook with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_patch_webhook_with_id '{}' --json kosmo integrations:fusionauth fusionauth_patch_webhook_with_id '{}' --json fusionauth.fusionauth_reconcile_jwtwith_id
Reconcile a User to FusionAuth using JWT issued from another Identity Provider.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_reconcile_jwtwith_id '{}' --json kosmo integrations:fusionauth fusionauth_reconcile_jwtwith_id '{}' --json fusionauth.fusionauth_register
Registers a user for an application. If you provide the User and the UserRegistration object on this request, it will create the user as well as register them for the application. This is called a Full Registration. However, if you only provide the UserRegistration object, then the user must already exist and they will be registered for the application. The user Id can also be provided and it will either be used to look up an existing user or it will be used for the newly created User.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_register '{}' --json kosmo integrations:fusionauth fusionauth_register '{}' --json fusionauth.fusionauth_register_with_id
Registers a user for an application. If you provide the User and the UserRegistration object on this request, it will create the user as well as register them for the application. This is called a Full Registration. However, if you only provide the UserRegistration object, then the user must already exist and they will be registered for the application. The user Id can also be provided and it will either be used to look up an existing user or it will be used for the newly created User.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_register_with_id '{}' --json kosmo integrations:fusionauth fusionauth_register_with_id '{}' --json fusionauth.fusionauth_reindex_with_id
Requests Elasticsearch to delete and rebuild the index for FusionAuth users or entities. Be very careful when running this request as it will increase the CPU and I/O load on your database until the operation completes. Generally speaking you do not ever need to run this operation unless instructed by FusionAuth support, or if you are migrating a database another system and you are not brining along the Elasticsearch index. You have been warned.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_reindex_with_id '{}' --json kosmo integrations:fusionauth fusionauth_reindex_with_id '{}' --json fusionauth.fusionauth_remove_user_from_family_with_id
Removes a user from the family with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_remove_user_from_family_with_id '{}' --json kosmo integrations:fusionauth fusionauth_remove_user_from_family_with_id '{}' --json fusionauth.fusionauth_retrieve_action_with_id
Retrieves a single action log (the log of a user action that was taken on a user previously) for the given Id.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_action_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_action_with_id '{}' --json fusionauth.fusionauth_retrieve_apikey_with_id
Retrieves an authentication API key for the given Id.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_apikey_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_apikey_with_id '{}' --json fusionauth.fusionauth_retrieve_application
Retrieves all the applications that are currently inactive. OR Retrieves the application for the given Id or all the applications if the Id is null.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_application '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_application '{}' --json fusionauth.fusionauth_retrieve_application_with_id
Retrieves the application for the given Id or all the applications if the Id is null.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_application_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_application_with_id '{}' --json fusionauth.fusionauth_retrieve_audit_log_with_id
Retrieves a single audit log for the given Id.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_audit_log_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_audit_log_with_id '{}' --json fusionauth.fusionauth_retrieve_connector_with_id
Retrieves the connector with the given Id.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_connector_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_connector_with_id '{}' --json fusionauth.fusionauth_retrieve_consent_with_id
Retrieves the Consent for the given Id.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_consent_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_consent_with_id '{}' --json fusionauth.fusionauth_retrieve_daily_active_report_with_id
Retrieves the daily active user report between the two instants. If you specify an application Id, it will only return the daily active counts for that application.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_daily_active_report_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_daily_active_report_with_id '{}' --json fusionauth.fusionauth_retrieve_device_user_code
Retrieve a user_code that is part of an in-progress Device Authorization Grant. This API is useful if you want to build your own login workflow to complete a device grant. This request will require an API key. OR Retrieve a user_code that is part of an in-progress Device Authorization Grant. This API is useful if you want to build your own login workflow to complete a device grant.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_device_user_code '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_device_user_code '{}' --json fusionauth.fusionauth_retrieve_device_validate
Validates the end-user provided user_code from the user-interaction of the Device Authorization Grant. If you build your own activation form you should validate the user provided code prior to beginning the Authorization grant. OR Validates the end-user provided user_code from the user-interaction of the Device Authorization Grant. If you build your own activation form you should validate the user provided code prior to beginning the Authorization grant.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_device_validate '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_device_validate '{}' --json fusionauth.fusionauth_retrieve_email_template
Retrieves the email template for the given Id. If you don't specify the Id, this will return all the email templates.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_email_template '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_email_template '{}' --json fusionauth.fusionauth_retrieve_email_template_preview_with_id
Creates a preview of the email template provided in the request. This allows you to preview an email template that hasn't been saved to the database yet. The entire email template does not need to be provided on the request. This will create the preview based on whatever is given.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_email_template_preview_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_email_template_preview_with_id '{}' --json fusionauth.fusionauth_retrieve_email_template_with_id
Retrieves the email template for the given Id. If you don't specify the Id, this will return all the email templates.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_email_template_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_email_template_with_id '{}' --json fusionauth.fusionauth_retrieve_entity_grant_with_id
Retrieves an Entity Grant for the given Entity and User/Entity.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_entity_grant_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_entity_grant_with_id '{}' --json fusionauth.fusionauth_retrieve_entity_type_with_id
Retrieves the Entity Type for the given Id.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_entity_type_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_entity_type_with_id '{}' --json fusionauth.fusionauth_retrieve_entity_with_id
Retrieves the Entity for the given Id.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_entity_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_entity_with_id '{}' --json fusionauth.fusionauth_retrieve_event_log_with_id
Retrieves a single event log for the given Id.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_event_log_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_event_log_with_id '{}' --json fusionauth.fusionauth_retrieve_families_with_id
Retrieves all the families that a user belongs to.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_families_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_families_with_id '{}' --json fusionauth.fusionauth_retrieve_family_members_by_family_id_with_id
Retrieves all the members of a family by the unique Family Id.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_family_members_by_family_id_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_family_members_by_family_id_with_id '{}' --json fusionauth.fusionauth_retrieve_form_field_with_id
Retrieves the form field with the given Id.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_form_field_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_form_field_with_id '{}' --json fusionauth.fusionauth_retrieve_form_with_id
Retrieves the form with the given Id.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_form_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_form_with_id '{}' --json fusionauth.fusionauth_retrieve_group_with_id
Retrieves the group for the given Id.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_group_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_group_with_id '{}' --json fusionauth.fusionauth_retrieve_identity_provider_by_type_with_id
Retrieves one or more identity provider for the given type. For types such as Google, Facebook, Twitter and LinkedIn, only a single identity provider can exist. For types such as OpenID Connect and SAMLv2 more than one identity provider can be configured so this request may return multiple identity providers.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_identity_provider_by_type_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_identity_provider_by_type_with_id '{}' --json fusionauth.fusionauth_retrieve_identity_provider_connection_test_results_with_id
Retrieves the results for an identity provider connection test.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_identity_provider_connection_test_results_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_identity_provider_connection_test_results_with_id '{}' --json fusionauth.fusionauth_retrieve_identity_provider_link
Retrieve all Identity Provider users (links) for the user. Specify the optional identityProviderId to retrieve links for a particular IdP. OR Retrieve a single Identity Provider user (link).
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_identity_provider_link '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_identity_provider_link '{}' --json fusionauth.fusionauth_retrieve_identity_provider_lookup
Retrieves the identity provider for the given domain and tenantId. A 200 response code indicates the domain is managed by a registered identity provider. A 404 indicates the domain is not managed. OR Retrieves any global identity providers for the given domain. A 200 response code indicates the domain is managed by a registered identity provider. A 404 indicates the domain is not managed.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_identity_provider_lookup '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_identity_provider_lookup '{}' --json fusionauth.fusionauth_retrieve_identity_provider_with_id
Retrieves the identity provider for the given Id or all the identity providers if the Id is null.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_identity_provider_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_identity_provider_with_id '{}' --json fusionauth.fusionauth_retrieve_ipaccess_control_list_with_id
Retrieves the IP Access Control List with the given Id.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_ipaccess_control_list_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_ipaccess_control_list_with_id '{}' --json fusionauth.fusionauth_retrieve_json_web_key_set_with_id
Returns public keys used by FusionAuth to cryptographically verify JWTs using the JSON Web Key format.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_json_web_key_set_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_json_web_key_set_with_id '{}' --json fusionauth.fusionauth_retrieve_jwt_public_key
Retrieves the Public Key configured for verifying the JSON Web Tokens (JWT) issued by the Login API by the Application Id. OR Retrieves the Public Key configured for verifying JSON Web Tokens (JWT) by the key Id (kid).
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_jwt_public_key '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_jwt_public_key '{}' --json fusionauth.fusionauth_retrieve_key_with_id
Retrieves the key for the given Id.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_key_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_key_with_id '{}' --json fusionauth.fusionauth_retrieve_keys_with_id
Retrieves all the keys.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_keys_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_keys_with_id '{}' --json fusionauth.fusionauth_retrieve_lambda_with_id
Retrieves the lambda for the given Id.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_lambda_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_lambda_with_id '{}' --json fusionauth.fusionauth_retrieve_lambdas_by_type_with_id
Retrieves all the lambdas for the provided type.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_lambdas_by_type_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_lambdas_by_type_with_id '{}' --json fusionauth.fusionauth_retrieve_message_template
Retrieves the message template for the given Id. If you don't specify the Id, this will return all the message templates.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_message_template '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_message_template '{}' --json fusionauth.fusionauth_retrieve_message_template_preview_with_id
Creates a preview of the message template provided in the request, normalized to a given locale.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_message_template_preview_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_message_template_preview_with_id '{}' --json fusionauth.fusionauth_retrieve_message_template_with_id
Retrieves the message template for the given Id. If you don't specify the Id, this will return all the message templates.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_message_template_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_message_template_with_id '{}' --json fusionauth.fusionauth_retrieve_messenger_with_id
Retrieves the messenger with the given Id.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_messenger_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_messenger_with_id '{}' --json fusionauth.fusionauth_retrieve_monthly_active_report_with_id
Retrieves the monthly active user report between the two instants. If you specify an application Id, it will only return the monthly active counts for that application.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_monthly_active_report_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_monthly_active_report_with_id '{}' --json fusionauth.fusionauth_retrieve_oauth_configuration_with_id
Retrieves the Oauth2 configuration for the application for the given Application Id.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_oauth_configuration_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_oauth_configuration_with_id '{}' --json fusionauth.fusionauth_retrieve_oauth_scope_with_id
Retrieves a custom OAuth scope.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_oauth_scope_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_oauth_scope_with_id '{}' --json fusionauth.fusionauth_retrieve_open_id_configuration_with_id
Returns the well known OpenID Configuration JSON document
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_open_id_configuration_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_open_id_configuration_with_id '{}' --json fusionauth.fusionauth_retrieve_password_validation_rules_with_id
Retrieves the password validation rules for a specific tenant. This method requires a tenantId to be provided through the use of a Tenant scoped API key or an HTTP header X-FusionAuth-TenantId to specify the Tenant Id. This API does not require an API key.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_password_validation_rules_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_password_validation_rules_with_id '{}' --json fusionauth.fusionauth_retrieve_password_validation_rules_with_tenant_id_with_id
Retrieves the password validation rules for a specific tenant. This API does not require an API key.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_password_validation_rules_with_tenant_id_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_password_validation_rules_with_tenant_id_with_id '{}' --json fusionauth.fusionauth_retrieve_pending_children_with_id
Retrieves all the children for the given parent email address.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_pending_children_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_pending_children_with_id '{}' --json fusionauth.fusionauth_retrieve_pending_link_with_id
Retrieve a pending identity provider link. This is useful to validate a pending link and retrieve meta-data about the identity provider link.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_pending_link_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_pending_link_with_id '{}' --json fusionauth.fusionauth_retrieve_reactor_metrics_with_id
Retrieves the FusionAuth Reactor metrics.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_reactor_metrics_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_reactor_metrics_with_id '{}' --json fusionauth.fusionauth_retrieve_refresh_token_by_id_with_id
Retrieves a single refresh token by unique Id. This is not the same thing as the string value of the refresh token. If you have that, you already have what you need.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_refresh_token_by_id_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_refresh_token_by_id_with_id '{}' --json fusionauth.fusionauth_retrieve_refresh_tokens_with_id
Retrieves the refresh tokens that belong to the user with the given Id.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_refresh_tokens_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_refresh_tokens_with_id '{}' --json fusionauth.fusionauth_retrieve_registration_report_with_id
Retrieves the registration report between the two instants. If you specify an application Id, it will only return the registration counts for that application.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_registration_report_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_registration_report_with_id '{}' --json fusionauth.fusionauth_retrieve_registration_with_id
Retrieves the user registration for the user with the given Id and the given application Id.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_registration_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_registration_with_id '{}' --json fusionauth.fusionauth_retrieve_report_login
Retrieves the login report between the two instants for a particular user by login Id, using specific loginIdTypes. If you specify an application id, it will only return the login counts for that application. OR Retrieves the login report between the two instants for a particular user by login Id. If you specify an application Id, it will only return the login counts for that application. OR Retrieves the login report between the two instants for a particular user by Id. If you specify an applic
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_report_login '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_report_login '{}' --json fusionauth.fusionauth_retrieve_status
Retrieves the FusionAuth system status using an API key. Using an API key will cause the response to include the product version, health checks and various runtime metrics. OR Retrieves the FusionAuth system status. This request is anonymous and does not require an API key. When an API key is not provided the response will contain a single value in the JSON response indicating the current health check.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_status '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_status '{}' --json fusionauth.fusionauth_retrieve_system_health_with_id
Retrieves the FusionAuth system health. This API will return 200 if the system is healthy, and 500 if the system is un-healthy.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_system_health_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_system_health_with_id '{}' --json fusionauth.fusionauth_retrieve_tenant_with_id
Retrieves the tenant for the given Id.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_tenant_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_tenant_with_id '{}' --json fusionauth.fusionauth_retrieve_theme_with_id
Retrieves the theme for the given Id.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_theme_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_theme_with_id '{}' --json fusionauth.fusionauth_retrieve_total_report_with_excludes_with_id
Retrieves the totals report. This allows excluding applicationTotals from the report. An empty list will include the applicationTotals.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_total_report_with_excludes_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_total_report_with_excludes_with_id '{}' --json fusionauth.fusionauth_retrieve_two_factor_recovery_codes_with_id
Retrieve two-factor recovery codes for a user.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_two_factor_recovery_codes_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_two_factor_recovery_codes_with_id '{}' --json fusionauth.fusionauth_retrieve_two_factor_status_with_id
Retrieve a user's two-factor status. This can be used to see if a user will need to complete a two-factor challenge to complete a login, and optionally identify the state of the two-factor trust across various applications.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_two_factor_status_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_two_factor_status_with_id '{}' --json fusionauth.fusionauth_retrieve_two_factor_status_with_request_with_id
Retrieve a user's two-factor status. This can be used to see if a user will need to complete a two-factor challenge to complete a login, and optionally identify the state of the two-factor trust across various applications. This operation provides more payload options than retrieveTwoFactorStatus.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_two_factor_status_with_request_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_two_factor_status_with_request_with_id '{}' --json fusionauth.fusionauth_retrieve_user
Retrieves the user by a verificationId. The intended use of this API is to retrieve a user after the forgot password workflow has been initiated and you may not know the user's email or username. OR Retrieves the user for the given username. OR Retrieves the user for the loginId, using specific loginIdTypes. OR Retrieves the user for the loginId. The loginId can be either the username or the email. OR Retrieves the user for the given email. OR Retrieves the user by a change password Id. The inte
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_user '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_user '{}' --json fusionauth.fusionauth_retrieve_user_action
Retrieves the user action for the given Id. If you pass in null for the Id, this will return all the user actions. OR Retrieves all the user actions that are currently inactive.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_user_action '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_user_action '{}' --json fusionauth.fusionauth_retrieve_user_action_reason
Retrieves the user action reason for the given Id. If you pass in null for the Id, this will return all the user action reasons.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_user_action_reason '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_user_action_reason '{}' --json fusionauth.fusionauth_retrieve_user_action_reason_with_id
Retrieves the user action reason for the given Id. If you pass in null for the Id, this will return all the user action reasons.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_user_action_reason_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_user_action_reason_with_id '{}' --json fusionauth.fusionauth_retrieve_user_action_with_id
Retrieves the user action for the given Id. If you pass in null for the Id, this will return all the user actions.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_user_action_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_user_action_with_id '{}' --json fusionauth.fusionauth_retrieve_user_actioning
Retrieves all the actions for the user with the given Id that are currently inactive. An inactive action means one that is time based and has been canceled or has expired, or is not time based. OR Retrieves all the actions for the user with the given Id that are currently active. An active action means one that is time based and has not been canceled, and has not ended. OR Retrieves all the actions for the user with the given Id that are currently preventing the User from logging in. OR Retrieve
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_user_actioning '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_user_actioning '{}' --json fusionauth.fusionauth_retrieve_user_change_password
Check to see if the user must obtain a Trust Request Id in order to complete a change password request. When a user has enabled Two-Factor authentication, before you are allowed to use the Change Password API to change your password, you must obtain a Trust Request Id by completing a Two-Factor Step-Up authentication. An HTTP status code of 400 with a general error code of [TrustTokenRequired] indicates that a Trust Token is required to make a POST request to this API. OR Check to see if the use
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_user_change_password '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_user_change_password '{}' --json fusionauth.fusionauth_retrieve_user_change_password_with_id
Check to see if the user must obtain a Trust Token Id in order to complete a change password request. When a user has enabled Two-Factor authentication, before you are allowed to use the Change Password API to change your password, you must obtain a Trust Token by completing a Two-Factor Step-Up authentication. An HTTP status code of 400 with a general error code of [TrustTokenRequired] indicates that a Trust Token is required to make a POST request to this API. OR Check to see if the user must
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_user_change_password_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_user_change_password_with_id '{}' --json fusionauth.fusionauth_retrieve_user_comments_with_id
Retrieves all the comments for the user with the given Id.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_user_comments_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_user_comments_with_id '{}' --json fusionauth.fusionauth_retrieve_user_consent_with_id
Retrieve a single User consent by Id.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_user_consent_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_user_consent_with_id '{}' --json fusionauth.fusionauth_retrieve_user_consents_with_id
Retrieves all the consents for a User.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_user_consents_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_user_consents_with_id '{}' --json fusionauth.fusionauth_retrieve_user_info_from_access_token_with_id
Call the UserInfo endpoint to retrieve User Claims from the access token issued by FusionAuth.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_user_info_from_access_token_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_user_info_from_access_token_with_id '{}' --json fusionauth.fusionauth_retrieve_user_recent_login
Retrieves the last number of login records for a user. OR Retrieves the last number of login records.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_user_recent_login '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_user_recent_login '{}' --json fusionauth.fusionauth_retrieve_user_with_id
Retrieves the user for the given Id.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_user_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_user_with_id '{}' --json fusionauth.fusionauth_retrieve_version_with_id
Retrieves the FusionAuth version string.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_version_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_version_with_id '{}' --json fusionauth.fusionauth_retrieve_web_authn_credential_with_id
Retrieves the WebAuthn credential for the given Id.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_web_authn_credential_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_web_authn_credential_with_id '{}' --json fusionauth.fusionauth_retrieve_web_authn_credentials_for_user_with_id
Retrieves all WebAuthn credentials for the given user.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_web_authn_credentials_for_user_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_web_authn_credentials_for_user_with_id '{}' --json fusionauth.fusionauth_retrieve_webhook
Retrieves the webhook for the given Id. If you pass in null for the Id, this will return all the webhooks.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_webhook '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_webhook '{}' --json fusionauth.fusionauth_retrieve_webhook_attempt_log_with_id
Retrieves a single webhook attempt log for the given Id.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_webhook_attempt_log_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_webhook_attempt_log_with_id '{}' --json fusionauth.fusionauth_retrieve_webhook_event_log_with_id
Retrieves a single webhook event log for the given Id.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_webhook_event_log_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_webhook_event_log_with_id '{}' --json fusionauth.fusionauth_retrieve_webhook_with_id
Retrieves the webhook for the given Id. If you pass in null for the Id, this will return all the webhooks.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_retrieve_webhook_with_id '{}' --json kosmo integrations:fusionauth fusionauth_retrieve_webhook_with_id '{}' --json fusionauth.fusionauth_revoke_refresh_token_by_id_with_id
Revokes a single refresh token by the unique Id. The unique Id is not sensitive as it cannot be used to obtain another JWT.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_revoke_refresh_token_by_id_with_id '{}' --json kosmo integrations:fusionauth fusionauth_revoke_refresh_token_by_id_with_id '{}' --json fusionauth.fusionauth_revoke_user_consent_with_id
Revokes a single User consent by Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_revoke_user_consent_with_id '{}' --json kosmo integrations:fusionauth fusionauth_revoke_user_consent_with_id '{}' --json fusionauth.fusionauth_search_applications_with_id
Searches applications with the specified criteria and pagination.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_search_applications_with_id '{}' --json kosmo integrations:fusionauth fusionauth_search_applications_with_id '{}' --json fusionauth.fusionauth_search_audit_logs_with_id
Searches the audit logs with the specified criteria and pagination.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_search_audit_logs_with_id '{}' --json kosmo integrations:fusionauth fusionauth_search_audit_logs_with_id '{}' --json fusionauth.fusionauth_search_consents_with_id
Searches consents with the specified criteria and pagination.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_search_consents_with_id '{}' --json kosmo integrations:fusionauth fusionauth_search_consents_with_id '{}' --json fusionauth.fusionauth_search_email_templates_with_id
Searches email templates with the specified criteria and pagination.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_search_email_templates_with_id '{}' --json kosmo integrations:fusionauth fusionauth_search_email_templates_with_id '{}' --json fusionauth.fusionauth_search_entities_by_ids_with_id
Retrieves the entities for the given Ids. If any Id is invalid, it is ignored.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_search_entities_by_ids_with_id '{}' --json kosmo integrations:fusionauth fusionauth_search_entities_by_ids_with_id '{}' --json fusionauth.fusionauth_search_entities_with_id
Searches entities with the specified criteria and pagination.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_search_entities_with_id '{}' --json kosmo integrations:fusionauth fusionauth_search_entities_with_id '{}' --json fusionauth.fusionauth_search_entity_grants_with_id
Searches Entity Grants with the specified criteria and pagination.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_search_entity_grants_with_id '{}' --json kosmo integrations:fusionauth fusionauth_search_entity_grants_with_id '{}' --json fusionauth.fusionauth_search_entity_types_with_id
Searches the entity types with the specified criteria and pagination.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_search_entity_types_with_id '{}' --json kosmo integrations:fusionauth fusionauth_search_entity_types_with_id '{}' --json fusionauth.fusionauth_search_event_logs_with_id
Searches the event logs with the specified criteria and pagination.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_search_event_logs_with_id '{}' --json kosmo integrations:fusionauth fusionauth_search_event_logs_with_id '{}' --json fusionauth.fusionauth_search_group_members_with_id
Searches group members with the specified criteria and pagination.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_search_group_members_with_id '{}' --json kosmo integrations:fusionauth fusionauth_search_group_members_with_id '{}' --json fusionauth.fusionauth_search_groups_with_id
Searches groups with the specified criteria and pagination.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_search_groups_with_id '{}' --json kosmo integrations:fusionauth fusionauth_search_groups_with_id '{}' --json fusionauth.fusionauth_search_identity_providers_with_id
Searches identity providers with the specified criteria and pagination.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_search_identity_providers_with_id '{}' --json kosmo integrations:fusionauth fusionauth_search_identity_providers_with_id '{}' --json fusionauth.fusionauth_search_ipaccess_control_lists_with_id
Searches the IP Access Control Lists with the specified criteria and pagination.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_search_ipaccess_control_lists_with_id '{}' --json kosmo integrations:fusionauth fusionauth_search_ipaccess_control_lists_with_id '{}' --json fusionauth.fusionauth_search_keys_with_id
Searches keys with the specified criteria and pagination.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_search_keys_with_id '{}' --json kosmo integrations:fusionauth fusionauth_search_keys_with_id '{}' --json fusionauth.fusionauth_search_lambdas_with_id
Searches lambdas with the specified criteria and pagination.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_search_lambdas_with_id '{}' --json kosmo integrations:fusionauth fusionauth_search_lambdas_with_id '{}' --json fusionauth.fusionauth_search_login_records_with_id
Searches the login records with the specified criteria and pagination.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_search_login_records_with_id '{}' --json kosmo integrations:fusionauth fusionauth_search_login_records_with_id '{}' --json fusionauth.fusionauth_search_tenants_with_id
Searches tenants with the specified criteria and pagination.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_search_tenants_with_id '{}' --json kosmo integrations:fusionauth fusionauth_search_tenants_with_id '{}' --json fusionauth.fusionauth_search_themes_with_id
Searches themes with the specified criteria and pagination.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_search_themes_with_id '{}' --json kosmo integrations:fusionauth fusionauth_search_themes_with_id '{}' --json fusionauth.fusionauth_search_user_comments_with_id
Searches user comments with the specified criteria and pagination.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_search_user_comments_with_id '{}' --json kosmo integrations:fusionauth fusionauth_search_user_comments_with_id '{}' --json fusionauth.fusionauth_search_users_by_ids_with_id
Retrieves the users for the given Ids. If any Id is invalid, it is ignored.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_search_users_by_ids_with_id '{}' --json kosmo integrations:fusionauth fusionauth_search_users_by_ids_with_id '{}' --json fusionauth.fusionauth_search_users_by_query_with_id
Retrieves the users for the given search criteria and pagination.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_search_users_by_query_with_id '{}' --json kosmo integrations:fusionauth fusionauth_search_users_by_query_with_id '{}' --json fusionauth.fusionauth_search_webhook_event_logs_with_id
Searches the webhook event logs with the specified criteria and pagination.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_search_webhook_event_logs_with_id '{}' --json kosmo integrations:fusionauth fusionauth_search_webhook_event_logs_with_id '{}' --json fusionauth.fusionauth_search_webhooks_with_id
Searches webhooks with the specified criteria and pagination.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_search_webhooks_with_id '{}' --json kosmo integrations:fusionauth fusionauth_search_webhooks_with_id '{}' --json fusionauth.fusionauth_send_email_with_id
Send an email using an email template Id. You can optionally provide requestData to access key value pairs in the email template.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_send_email_with_id '{}' --json kosmo integrations:fusionauth fusionauth_send_email_with_id '{}' --json fusionauth.fusionauth_send_family_request_email_with_id
Sends out an email to a parent that they need to register and create a family or need to log in and add a child to their existing family.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_send_family_request_email_with_id '{}' --json kosmo integrations:fusionauth fusionauth_send_family_request_email_with_id '{}' --json fusionauth.fusionauth_send_passwordless_code_with_id
Send a passwordless authentication code in an email to complete login.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_send_passwordless_code_with_id '{}' --json kosmo integrations:fusionauth fusionauth_send_passwordless_code_with_id '{}' --json fusionauth.fusionauth_send_two_factor_code_for_enable_disable_with_id
Send a Two Factor authentication code to assist in setting up Two Factor authentication or disabling.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_send_two_factor_code_for_enable_disable_with_id '{}' --json kosmo integrations:fusionauth fusionauth_send_two_factor_code_for_enable_disable_with_id '{}' --json fusionauth.fusionauth_send_two_factor_code_for_login_using_method_with_id
Send a Two Factor authentication code to allow the completion of Two Factor authentication.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_send_two_factor_code_for_login_using_method_with_id '{}' --json kosmo integrations:fusionauth fusionauth_send_two_factor_code_for_login_using_method_with_id '{}' --json fusionauth.fusionauth_send_verify_identity_with_id
Send a verification code using the appropriate transport for the identity type being verified.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_send_verify_identity_with_id '{}' --json kosmo integrations:fusionauth fusionauth_send_verify_identity_with_id '{}' --json fusionauth.fusionauth_start_identity_provider_connection_test_with_id
Begins an identity provider connection test.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_start_identity_provider_connection_test_with_id '{}' --json kosmo integrations:fusionauth fusionauth_start_identity_provider_connection_test_with_id '{}' --json fusionauth.fusionauth_start_identity_provider_login_with_id
Begins a login request for a 3rd party login that requires user interaction such as HYPR.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_start_identity_provider_login_with_id '{}' --json kosmo integrations:fusionauth fusionauth_start_identity_provider_login_with_id '{}' --json fusionauth.fusionauth_start_passwordless_login_with_id
Start a passwordless login request by generating a passwordless code. This code can be sent to the User using the Send Passwordless Code API or using a mechanism outside of FusionAuth. The passwordless login is completed by using the Passwordless Login API with this code.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_start_passwordless_login_with_id '{}' --json kosmo integrations:fusionauth fusionauth_start_passwordless_login_with_id '{}' --json fusionauth.fusionauth_start_two_factor_login_with_id
Start a Two-Factor login request by generating a two-factor identifier. This code can then be sent to the Two Factor Send API (/api/two-factor/send)in order to send a one-time use code to a user. You can also use one-time use code returned to send the code out-of-band. The Two-Factor login is completed by making a request to the Two-Factor Login API (/api/two-factor/login). with the two-factor identifier and the one-time use code. This API is intended to allow you to begin a Two-Factor login out
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_start_two_factor_login_with_id '{}' --json kosmo integrations:fusionauth fusionauth_start_two_factor_login_with_id '{}' --json fusionauth.fusionauth_start_verify_identity_with_id
Start a verification of an identity by generating a code. This code can be sent to the User using the Verify Send API Verification Code API or using a mechanism outside of FusionAuth. The verification is completed by using the Verify Complete API with this code.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_start_verify_identity_with_id '{}' --json kosmo integrations:fusionauth fusionauth_start_verify_identity_with_id '{}' --json fusionauth.fusionauth_start_web_authn_login_with_id
Start a WebAuthn authentication ceremony by generating a new challenge for the user
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_start_web_authn_login_with_id '{}' --json kosmo integrations:fusionauth fusionauth_start_web_authn_login_with_id '{}' --json fusionauth.fusionauth_start_web_authn_registration_with_id
Start a WebAuthn registration ceremony by generating a new challenge for the user
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_start_web_authn_registration_with_id '{}' --json kosmo integrations:fusionauth fusionauth_start_web_authn_registration_with_id '{}' --json fusionauth.fusionauth_two_factor_login_with_id
Complete login using a 2FA challenge
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_two_factor_login_with_id '{}' --json kosmo integrations:fusionauth fusionauth_two_factor_login_with_id '{}' --json fusionauth.fusionauth_update_apikey_with_id
Updates an API key with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_apikey_with_id '{}' --json kosmo integrations:fusionauth fusionauth_update_apikey_with_id '{}' --json fusionauth.fusionauth_update_application_role_with_id
Updates the application role with the given Id for the application.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_application_role_with_id '{}' --json kosmo integrations:fusionauth fusionauth_update_application_role_with_id '{}' --json fusionauth.fusionauth_update_application_with_id
Updates the application with the given Id. OR Reactivates the application with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_application_with_id '{}' --json kosmo integrations:fusionauth fusionauth_update_application_with_id '{}' --json fusionauth.fusionauth_update_connector_with_id
Updates the connector with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_connector_with_id '{}' --json kosmo integrations:fusionauth fusionauth_update_connector_with_id '{}' --json fusionauth.fusionauth_update_consent_with_id
Updates the consent with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_consent_with_id '{}' --json kosmo integrations:fusionauth fusionauth_update_consent_with_id '{}' --json fusionauth.fusionauth_update_email_template_with_id
Updates the email template with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_email_template_with_id '{}' --json kosmo integrations:fusionauth fusionauth_update_email_template_with_id '{}' --json fusionauth.fusionauth_update_entity_type_permission_with_id
Updates the permission with the given Id for the entity type.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_entity_type_permission_with_id '{}' --json kosmo integrations:fusionauth fusionauth_update_entity_type_permission_with_id '{}' --json fusionauth.fusionauth_update_entity_type_with_id
Updates the Entity Type with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_entity_type_with_id '{}' --json kosmo integrations:fusionauth fusionauth_update_entity_type_with_id '{}' --json fusionauth.fusionauth_update_entity_with_id
Updates the Entity with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_entity_with_id '{}' --json kosmo integrations:fusionauth fusionauth_update_entity_with_id '{}' --json fusionauth.fusionauth_update_form_field_with_id
Updates the form field with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_form_field_with_id '{}' --json kosmo integrations:fusionauth fusionauth_update_form_field_with_id '{}' --json fusionauth.fusionauth_update_form_with_id
Updates the form with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_form_with_id '{}' --json kosmo integrations:fusionauth fusionauth_update_form_with_id '{}' --json fusionauth.fusionauth_update_group_members_with_id
Creates a member in a group.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_group_members_with_id '{}' --json kosmo integrations:fusionauth fusionauth_update_group_members_with_id '{}' --json fusionauth.fusionauth_update_group_with_id
Updates the group with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_group_with_id '{}' --json kosmo integrations:fusionauth fusionauth_update_group_with_id '{}' --json fusionauth.fusionauth_update_identity_provider_with_id
Updates the identity provider with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_identity_provider_with_id '{}' --json kosmo integrations:fusionauth fusionauth_update_identity_provider_with_id '{}' --json fusionauth.fusionauth_update_integrations_with_id
Updates the available integrations.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_integrations_with_id '{}' --json kosmo integrations:fusionauth fusionauth_update_integrations_with_id '{}' --json fusionauth.fusionauth_update_ipaccess_control_list_with_id
Updates the IP Access Control List with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_ipaccess_control_list_with_id '{}' --json kosmo integrations:fusionauth fusionauth_update_ipaccess_control_list_with_id '{}' --json fusionauth.fusionauth_update_key_with_id
Updates the key with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_key_with_id '{}' --json kosmo integrations:fusionauth fusionauth_update_key_with_id '{}' --json fusionauth.fusionauth_update_lambda_with_id
Updates the lambda with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_lambda_with_id '{}' --json kosmo integrations:fusionauth fusionauth_update_lambda_with_id '{}' --json fusionauth.fusionauth_update_message_template_with_id
Updates the message template with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_message_template_with_id '{}' --json kosmo integrations:fusionauth fusionauth_update_message_template_with_id '{}' --json fusionauth.fusionauth_update_messenger_with_id
Updates the messenger with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_messenger_with_id '{}' --json kosmo integrations:fusionauth fusionauth_update_messenger_with_id '{}' --json fusionauth.fusionauth_update_oauth_scope_with_id
Updates the OAuth scope with the given Id for the application.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_oauth_scope_with_id '{}' --json kosmo integrations:fusionauth fusionauth_update_oauth_scope_with_id '{}' --json fusionauth.fusionauth_update_registration_with_id
Updates the registration for the user with the given Id and the application defined in the request.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_registration_with_id '{}' --json kosmo integrations:fusionauth fusionauth_update_registration_with_id '{}' --json fusionauth.fusionauth_update_system_configuration_with_id
Updates the system configuration.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_system_configuration_with_id '{}' --json kosmo integrations:fusionauth fusionauth_update_system_configuration_with_id '{}' --json fusionauth.fusionauth_update_tenant_manager_configuration_with_id
Updates the Tenant Manager configuration.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_tenant_manager_configuration_with_id '{}' --json kosmo integrations:fusionauth fusionauth_update_tenant_manager_configuration_with_id '{}' --json fusionauth.fusionauth_update_tenant_manager_identity_provider_type_configuration_with_id
Updates the tenant manager identity provider type configuration for the given identity provider type.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_tenant_manager_identity_provider_type_configuration_with_id '{}' --json kosmo integrations:fusionauth fusionauth_update_tenant_manager_identity_provider_type_configuration_with_id '{}' --json fusionauth.fusionauth_update_tenant_with_id
Updates the tenant with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_tenant_with_id '{}' --json kosmo integrations:fusionauth fusionauth_update_tenant_with_id '{}' --json fusionauth.fusionauth_update_theme_with_id
Updates the theme with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_theme_with_id '{}' --json kosmo integrations:fusionauth fusionauth_update_theme_with_id '{}' --json fusionauth.fusionauth_update_user_action_reason_with_id
Updates the user action reason with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_user_action_reason_with_id '{}' --json kosmo integrations:fusionauth fusionauth_update_user_action_reason_with_id '{}' --json fusionauth.fusionauth_update_user_action_with_id
Updates the user action with the given Id. OR Reactivates the user action with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_user_action_with_id '{}' --json kosmo integrations:fusionauth fusionauth_update_user_action_with_id '{}' --json fusionauth.fusionauth_update_user_consent_with_id
Updates a single User consent by Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_user_consent_with_id '{}' --json kosmo integrations:fusionauth fusionauth_update_user_consent_with_id '{}' --json fusionauth.fusionauth_update_user_family_with_id
Updates a family with a given Id. OR Adds a user to an existing family. The family Id must be specified.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_user_family_with_id '{}' --json kosmo integrations:fusionauth fusionauth_update_user_family_with_id '{}' --json fusionauth.fusionauth_update_user_verify_email
Re-sends the verification email to the user. If the Application has configured a specific email template this will be used instead of the tenant configuration. OR Re-sends the verification email to the user. OR Generate a new Email Verification Id to be used with the Verify Email API. This API will not attempt to send an email to the User. This API may be used to collect the verificationId for use with a third party system.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_user_verify_email '{}' --json kosmo integrations:fusionauth fusionauth_update_user_verify_email '{}' --json fusionauth.fusionauth_update_user_verify_registration
Re-sends the application registration verification email to the user. OR Generate a new Application Registration Verification Id to be used with the Verify Registration API. This API will not attempt to send an email to the User. This API may be used to collect the verificationId for use with a third party system.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_user_verify_registration '{}' --json kosmo integrations:fusionauth fusionauth_update_user_verify_registration '{}' --json fusionauth.fusionauth_update_user_with_id
Updates the user with the given Id. OR Reactivates the user with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_user_with_id '{}' --json kosmo integrations:fusionauth fusionauth_update_user_with_id '{}' --json fusionauth.fusionauth_update_webhook_with_id
Updates the webhook with the given Id.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_update_webhook_with_id '{}' --json kosmo integrations:fusionauth fusionauth_update_webhook_with_id '{}' --json fusionauth.fusionauth_upsert_entity_grant_with_id
Creates or updates an Entity Grant. This is when a User/Entity is granted permissions to an Entity.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_upsert_entity_grant_with_id '{}' --json kosmo integrations:fusionauth fusionauth_upsert_entity_grant_with_id '{}' --json fusionauth.fusionauth_validate_jwtwith_id
Validates the provided JWT (encoded JWT string) to ensure the token is valid. A valid access token is properly signed and not expired. This API may be used to verify the JWT as well as decode the encoded JWT into human readable identity claims.
read - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_validate_jwtwith_id '{}' --json kosmo integrations:fusionauth fusionauth_validate_jwtwith_id '{}' --json fusionauth.fusionauth_vend_jwtwith_id
It's a JWT vending machine! Issue a new access token (JWT) with the provided claims in the request. This JWT is not scoped to a tenant or user, it is a free form token that will contain what claims you provide. The iat, exp and jti claims will be added by FusionAuth, all other claims must be provided by the caller. If a TTL is not provided in the request, the TTL will be retrieved from the default Tenant or the Tenant specified on the request either by way of the X-FusionAuth-TenantId request he
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_vend_jwtwith_id '{}' --json kosmo integrations:fusionauth fusionauth_vend_jwtwith_id '{}' --json fusionauth.fusionauth_verify_identity_with_id
Administratively verify a user identity.
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_verify_identity_with_id '{}' --json kosmo integrations:fusionauth fusionauth_verify_identity_with_id '{}' --json fusionauth.fusionauth_verify_user_registration_with_id
Confirms a user's registration. The request body will contain the verificationId. You may also be required to send a one-time use code based upon your configuration. When the application is configured to gate a user until their registration is verified, this procedures requires two values instead of one. The verificationId is a high entropy value and the one-time use code is a low entropy value that is easily entered in a user interactive form. The two values together are able to confirm a user'
write - Parameters
- none
kosmo integrations:call fusionauth.fusionauth_verify_user_registration_with_id '{}' --json kosmo integrations:fusionauth fusionauth_verify_user_registration_with_id '{}' --json Function Schemas
Use these parameter tables when building CLI payloads without calling integrations:schema first.
fusionauth.fusionauth_action_user_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_action_user_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_activate_reactor_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_activate_reactor_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_cancel_action_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_cancel_action_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_change_password_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_change_password_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_comment_on_user_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_comment_on_user_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_complete_verify_identity_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_complete_verify_identity_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_complete_web_authn_assertion_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_complete_web_authn_assertion_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_complete_web_authn_login_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_complete_web_authn_login_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_complete_web_authn_registration_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_complete_web_authn_registration_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_apikey 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_apikey --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_apikey_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_apikey_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_application 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_application --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_application_role 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_application_role --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_application_role_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_application_role_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_application_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_application_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_audit_log_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_audit_log_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_connector 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_connector --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_connector_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_connector_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_consent 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_consent --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_consent_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_consent_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_device_approve 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_device_approve --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_device_authorize 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_device_authorize --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_device_user_code 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_device_user_code --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_email_template 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_email_template --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_email_template_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_email_template_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_entity 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_entity --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_entity_type 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_entity_type --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_entity_type_permission 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_entity_type_permission --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_entity_type_permission_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_entity_type_permission_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_entity_type_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_entity_type_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_entity_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_entity_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_family 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_family --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_family_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_family_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_form 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_form --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_form_field 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_form_field --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_form_field_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_form_field_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_form_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_form_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_group 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_group_members_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_group_members_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_group_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_group_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_identity_provider 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_identity_provider --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_identity_provider_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_identity_provider_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_introspect 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_introspect --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_ipaccess_control_list 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_ipaccess_control_list --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_ipaccess_control_list_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_ipaccess_control_list_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_lambda 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_lambda --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_lambda_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_lambda_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_logout 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_logout --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_message_template 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_message_template --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_message_template_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_message_template_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_messenger 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_messenger --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_messenger_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_messenger_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_oauth_scope 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_oauth_scope --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_oauth_scope_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_oauth_scope_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_tenant 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_tenant --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_tenant_manager_identity_provider_type_configuration_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_tenant_manager_identity_provider_type_configuration_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_tenant_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_tenant_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_theme 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_theme --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_theme_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_theme_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_token 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_token --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_user 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_user --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_user_action 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_user_action --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_user_action_reason 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_user_action_reason --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_user_action_reason_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_user_action_reason_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_user_action_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_user_action_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_user_change_password 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_user_change_password --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_user_consent 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_user_consent --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_user_consent_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_user_consent_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_user_link_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_user_link_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_user_verify_email 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_user_verify_email --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_user_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_user_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_webhook 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_webhook --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_create_webhook_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_create_webhook_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_apikey_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_apikey_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_application_role_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_application_role_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_application_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_application_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_connector_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_connector_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_consent_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_consent_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_email_template_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_email_template_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_entity_grant_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_entity_grant_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_entity_type_permission_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_entity_type_permission_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_entity_type_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_entity_type_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_entity_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_entity_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_form_field_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_form_field_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_form_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_form_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_group_members_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_group_members_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_group_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_group_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_identity_provider_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_identity_provider_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_ipaccess_control_list_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_ipaccess_control_list_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_jwt_refresh 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_jwt_refresh --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_key_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_key_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_lambda_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_lambda_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_message_template_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_message_template_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_messenger_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_messenger_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_oauth_scope_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_oauth_scope_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_tenant_manager_identity_provider_type_configuration_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_tenant_manager_identity_provider_type_configuration_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_tenant_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_tenant_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_theme_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_theme_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_user_action_reason_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_user_action_reason_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_user_action_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_user_action_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_user_bulk 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_user_bulk --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_user_link_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_user_link_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_user_registration_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_user_registration_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_user_two_factor_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_user_two_factor_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_user_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_user_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_web_authn_credential_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_web_authn_credential_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_web_authn_credentials_for_user_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_web_authn_credentials_for_user_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_delete_webhook_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_delete_webhook_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_enable_two_factor_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_enable_two_factor_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_exchange_refresh_token_for_jwtwith_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_exchange_refresh_token_for_jwtwith_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_forgot_password_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_forgot_password_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_generate_key 0 parameters
kosmo integrations:schema fusionauth.fusionauth_generate_key --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_generate_key_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_generate_key_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_generate_two_factor_recovery_codes_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_generate_two_factor_recovery_codes_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_generate_two_factor_secret_using_jwtwith_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_generate_two_factor_secret_using_jwtwith_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_identity_provider_login_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_identity_provider_login_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_import_key 0 parameters
kosmo integrations:schema fusionauth.fusionauth_import_key --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_import_key_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_import_key_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_import_refresh_tokens_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_import_refresh_tokens_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_import_users_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_import_users_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_import_web_authn_credential_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_import_web_authn_credential_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_issue_jwtwith_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_issue_jwtwith_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_login_ping_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_login_ping_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_login_ping_with_request_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_login_ping_with_request_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_login_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_login_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_modify_action_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_modify_action_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_passwordless_login_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_passwordless_login_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_patch_apikey_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_patch_apikey_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_patch_application_role_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_patch_application_role_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_patch_application_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_patch_application_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_patch_connector_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_patch_connector_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_patch_consent_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_patch_consent_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_patch_email_template_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_patch_email_template_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_patch_entity_type_permission_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_patch_entity_type_permission_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_patch_entity_type_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_patch_entity_type_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_patch_entity_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_patch_entity_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_patch_form_field_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_patch_form_field_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_patch_form_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_patch_form_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_patch_group_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_patch_group_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_patch_identity_provider_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_patch_identity_provider_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_patch_integrations_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_patch_integrations_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_patch_ipaccess_control_list_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_patch_ipaccess_control_list_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_patch_lambda_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_patch_lambda_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_patch_message_template_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_patch_message_template_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_patch_messenger_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_patch_messenger_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_patch_oauth_scope_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_patch_oauth_scope_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_patch_registration_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_patch_registration_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_patch_system_configuration_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_patch_system_configuration_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_patch_tenant_manager_configuration_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_patch_tenant_manager_configuration_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_patch_tenant_manager_identity_provider_type_configuration_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_patch_tenant_manager_identity_provider_type_configuration_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_patch_tenant_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_patch_tenant_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_patch_theme_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_patch_theme_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_patch_user_action_reason_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_patch_user_action_reason_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_patch_user_action_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_patch_user_action_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_patch_user_consent_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_patch_user_consent_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_patch_user_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_patch_user_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_patch_webhook_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_patch_webhook_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_reconcile_jwtwith_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_reconcile_jwtwith_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_register 0 parameters
kosmo integrations:schema fusionauth.fusionauth_register --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_register_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_register_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_reindex_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_reindex_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_remove_user_from_family_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_remove_user_from_family_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_action_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_action_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_apikey_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_apikey_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_application 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_application --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_application_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_application_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_audit_log_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_audit_log_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_connector_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_connector_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_consent_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_consent_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_daily_active_report_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_daily_active_report_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_device_user_code 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_device_user_code --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_device_validate 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_device_validate --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_email_template 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_email_template --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_email_template_preview_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_email_template_preview_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_email_template_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_email_template_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_entity_grant_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_entity_grant_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_entity_type_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_entity_type_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_entity_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_entity_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_event_log_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_event_log_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_families_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_families_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_family_members_by_family_id_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_family_members_by_family_id_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_form_field_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_form_field_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_form_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_form_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_group_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_group_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_identity_provider_by_type_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_identity_provider_by_type_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_identity_provider_connection_test_results_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_identity_provider_connection_test_results_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_identity_provider_link 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_identity_provider_link --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_identity_provider_lookup 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_identity_provider_lookup --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_identity_provider_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_identity_provider_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_ipaccess_control_list_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_ipaccess_control_list_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_json_web_key_set_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_json_web_key_set_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_jwt_public_key 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_jwt_public_key --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_key_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_key_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_keys_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_keys_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_lambda_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_lambda_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_lambdas_by_type_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_lambdas_by_type_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_message_template 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_message_template --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_message_template_preview_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_message_template_preview_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_message_template_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_message_template_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_messenger_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_messenger_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_monthly_active_report_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_monthly_active_report_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_oauth_configuration_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_oauth_configuration_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_oauth_scope_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_oauth_scope_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_open_id_configuration_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_open_id_configuration_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_password_validation_rules_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_password_validation_rules_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_password_validation_rules_with_tenant_id_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_password_validation_rules_with_tenant_id_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_pending_children_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_pending_children_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_pending_link_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_pending_link_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_reactor_metrics_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_reactor_metrics_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_refresh_token_by_id_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_refresh_token_by_id_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_refresh_tokens_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_refresh_tokens_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_registration_report_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_registration_report_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_registration_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_registration_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_report_login 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_report_login --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_status 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_status --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_system_health_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_system_health_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_tenant_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_tenant_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_theme_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_theme_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_total_report_with_excludes_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_total_report_with_excludes_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_two_factor_recovery_codes_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_two_factor_recovery_codes_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_two_factor_status_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_two_factor_status_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_two_factor_status_with_request_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_two_factor_status_with_request_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_user 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_user --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_user_action 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_user_action --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_user_action_reason 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_user_action_reason --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_user_action_reason_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_user_action_reason_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_user_action_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_user_action_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_user_actioning 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_user_actioning --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_user_change_password 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_user_change_password --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_user_change_password_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_user_change_password_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_user_comments_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_user_comments_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_user_consent_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_user_consent_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_user_consents_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_user_consents_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_user_info_from_access_token_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_user_info_from_access_token_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_user_recent_login 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_user_recent_login --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_user_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_user_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_version_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_version_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_web_authn_credential_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_web_authn_credential_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_web_authn_credentials_for_user_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_web_authn_credentials_for_user_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_webhook 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_webhook --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_webhook_attempt_log_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_webhook_attempt_log_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_webhook_event_log_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_webhook_event_log_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_retrieve_webhook_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_retrieve_webhook_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_revoke_refresh_token_by_id_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_revoke_refresh_token_by_id_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_revoke_user_consent_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_revoke_user_consent_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_search_applications_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_search_applications_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_search_audit_logs_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_search_audit_logs_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_search_consents_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_search_consents_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_search_email_templates_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_search_email_templates_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_search_entities_by_ids_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_search_entities_by_ids_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_search_entities_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_search_entities_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_search_entity_grants_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_search_entity_grants_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_search_entity_types_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_search_entity_types_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_search_event_logs_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_search_event_logs_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_search_group_members_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_search_group_members_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_search_groups_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_search_groups_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_search_identity_providers_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_search_identity_providers_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_search_ipaccess_control_lists_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_search_ipaccess_control_lists_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_search_keys_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_search_keys_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_search_lambdas_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_search_lambdas_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_search_login_records_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_search_login_records_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_search_tenants_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_search_tenants_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_search_themes_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_search_themes_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_search_user_comments_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_search_user_comments_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_search_users_by_ids_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_search_users_by_ids_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_search_users_by_query_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_search_users_by_query_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_search_webhook_event_logs_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_search_webhook_event_logs_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_search_webhooks_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_search_webhooks_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_send_email_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_send_email_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_send_family_request_email_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_send_family_request_email_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_send_passwordless_code_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_send_passwordless_code_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_send_two_factor_code_for_enable_disable_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_send_two_factor_code_for_enable_disable_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_send_two_factor_code_for_login_using_method_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_send_two_factor_code_for_login_using_method_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_send_verify_identity_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_send_verify_identity_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_start_identity_provider_connection_test_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_start_identity_provider_connection_test_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_start_identity_provider_login_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_start_identity_provider_login_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_start_passwordless_login_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_start_passwordless_login_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_start_two_factor_login_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_start_two_factor_login_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_start_verify_identity_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_start_verify_identity_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_start_web_authn_login_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_start_web_authn_login_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_start_web_authn_registration_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_start_web_authn_registration_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_two_factor_login_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_two_factor_login_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_apikey_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_apikey_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_application_role_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_application_role_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_application_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_application_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_connector_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_connector_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_consent_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_consent_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_email_template_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_email_template_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_entity_type_permission_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_entity_type_permission_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_entity_type_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_entity_type_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_entity_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_entity_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_form_field_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_form_field_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_form_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_form_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_group_members_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_group_members_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_group_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_group_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_identity_provider_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_identity_provider_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_integrations_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_integrations_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_ipaccess_control_list_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_ipaccess_control_list_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_key_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_key_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_lambda_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_lambda_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_message_template_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_message_template_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_messenger_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_messenger_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_oauth_scope_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_oauth_scope_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_registration_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_registration_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_system_configuration_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_system_configuration_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_tenant_manager_configuration_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_tenant_manager_configuration_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_tenant_manager_identity_provider_type_configuration_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_tenant_manager_identity_provider_type_configuration_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_tenant_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_tenant_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_theme_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_theme_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_user_action_reason_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_user_action_reason_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_user_action_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_user_action_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_user_consent_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_user_consent_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_user_family_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_user_family_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_user_verify_email 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_user_verify_email --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_user_verify_registration 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_user_verify_registration --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_user_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_user_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_update_webhook_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_update_webhook_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_upsert_entity_grant_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_upsert_entity_grant_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_validate_jwtwith_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_validate_jwtwith_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_vend_jwtwith_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_vend_jwtwith_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_verify_identity_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_verify_identity_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
fusionauth.fusionauth_verify_user_registration_with_id 0 parameters
kosmo integrations:schema fusionauth.fusionauth_verify_user_registration_with_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
Permissions
Headless calls still follow the integration read/write permission policy. Configure read/write defaults with
integrations:configure. Add --force only for trusted automation that should bypass that policy.