Acciones disponibles (10)
Cada acción es una operación que el agente puede ejecutar contra este conector. Haz clic en una acción para ver sus parámetros.
Create UserSUPERSAAS_CREATE_USERAcciónTool to create a new user in SuperSaaS. Use when you need to add a user to the account. The username is required; all other fields are optional. If a foreign_key is provided, SuperSaaS will use it instead of generating its own ID. Set duplicate='raise' to prevent creating duplicate users with the same foreign key.
SUPERSAAS_CREATE_USERAcciónTool to create a new user in SuperSaaS. Use when you need to add a user to the account. The username is required; all other fields are optional. If a foreign_key is provided, SuperSaaS will use it instead of generating its own ID. Set duplicate='raise' to prevent creating duplicate users with the same foreign key.
Parámetros de entrada
namestringObligatorioUsername (max 50 chars). If account is configured for email-only login, this should be the email address.
rolestringenumRole levels for users in SuperSaaS
regularsuperuserblockedemailstringEmail address for the user
groupintegerGroup ID to assign the user to
phonestringPhone number
creditintegerCredit level for the user (default: 0)
mobilestringMobile phone number
addressstringPhysical address of the user
countrystringTwo character ISO 3166-1 country code (e.g., US, GB, CA)
webhookbooleanSet to true to trigger webhooks connected to the account
passwordstringPassword for the user account
timezonestringIANA timezone identifier (e.g., America/New_York, Europe/London)
duplicatestringSet to 'raise' to return 422 error if a user with the same foreign key already exists. Only applicable when foreign_key is provided.
full_namestringFull name of the user
foreign_keystringYour own foreign key in format '9999fk' (e.g., '12345fk'). If provided, SuperSaaS will use this instead of generating its own ID.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete UserSUPERSAAS_DELETE_USERAcciónTool to delete a SuperSaaS user by their ID. Use when you need to permanently remove a user from the system.
SUPERSAAS_DELETE_USERAcciónTool to delete a SuperSaaS user by their ID. Use when you need to permanently remove a user from the system.
Parámetros de entrada
idstringObligatorioThe unique identifier of the user to delete.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get UserSUPERSAAS_GET_USERAcciónTool to read a single user by ID from SuperSaaS. Use when you need to retrieve detailed information about a specific user.
SUPERSAAS_GET_USERAcciónTool to read a single user by ID from SuperSaaS. Use when you need to retrieve detailed information about a specific user.
Parámetros de entrada
idstringObligatorioUser ID. Numeric IDs are SuperSaaS keys, alphanumeric are your foreign keys.
formbooleanInclude attached form data in the response.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List Field ListSUPERSAAS_LIST_FIELD_LISTAcciónTool to retrieve available fields on Schedule or User objects. Use when you need to discover what custom fields are configured for a schedule or user profile.
SUPERSAAS_LIST_FIELD_LISTAcciónTool to retrieve available fields on Schedule or User objects. Use when you need to discover what custom fields are configured for a schedule or user profile.
Parámetros de entrada
schedule_idintegerThe ID of the schedule. Omit this parameter to retrieve User object fields instead of Schedule fields.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List User GroupsSUPERSAAS_LIST_GROUPSAcciónTool to retrieve all user groups defined in a SuperSaaS account. Use when you need to list groups for managing user access or organizing users.
SUPERSAAS_LIST_GROUPSAcciónTool to retrieve all user groups defined in a SuperSaaS account. Use when you need to list groups for managing user access or organizing users.
Parámetros de entrada
accountstringObligatorioAccount name for authentication
api_keystringObligatorioAdministrator API key for authentication
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List PromotionsSUPERSAAS_LIST_PROMOTIONSAcciónTool to list all promotional coupon codes in the account or retrieve a single promotion by code. Use when you need to view available promotions or check details of a specific promotion code.
SUPERSAAS_LIST_PROMOTIONSAcciónTool to list all promotional coupon codes in the account or retrieve a single promotion by code. Use when you need to view available promotions or check details of a specific promotion code.
Parámetros de entrada
idstringPromotion code to retrieve a single promotion. If provided, returns only the specified promotion.
limitintegerMaximum number of promotions to return. Use for pagination.
offsetintegerNumber of promotions to skip before returning results. Use for pagination.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List SchedulesSUPERSAAS_LIST_SCHEDULESAcciónTool to retrieve all schedules in a SuperSaaS account with their IDs and names. Use when you need to list available schedules or get schedule IDs for other operations.
SUPERSAAS_LIST_SCHEDULESAcciónTool to retrieve all schedules in a SuperSaaS account with their IDs and names. Use when you need to list available schedules or get schedule IDs for other operations.
Parámetros de entrada
Sin parámetros.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List Form DefinitionsSUPERSAAS_LIST_SUPER_FORMSAcciónTool to retrieve all form definitions in a SuperSaaS account with their IDs and names. Use when you need to list available forms or get form IDs for other operations.
SUPERSAAS_LIST_SUPER_FORMSAcciónTool to retrieve all form definitions in a SuperSaaS account with their IDs and names. Use when you need to list available forms or get form IDs for other operations.
Parámetros de entrada
Sin parámetros.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List UsersSUPERSAAS_LIST_USERSAcciónTool to list all users in the SuperSaaS account. Use when you need to retrieve users with optional pagination using limit and offset parameters.
SUPERSAAS_LIST_USERSAcciónTool to list all users in the SuperSaaS account. Use when you need to retrieve users with optional pagination using limit and offset parameters.
Parámetros de entrada
formbooleanInclude attached form data with each user. Set to true to retrieve additional form information.
limitintegerMaximum number of users to return. Default is 100, maximum is 1000.
offsetintegerOffset for pagination. Use to skip a specified number of users before starting to return results.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update UserSUPERSAAS_UPDATE_USERAcciónTool to update an existing SuperSaaS user by ID. Use when you need to modify user details like name, email, phone, or role.
SUPERSAAS_UPDATE_USERAcciónTool to update an existing SuperSaaS user by ID. Use when you need to modify user details like name, email, phone, or role.
Parámetros de entrada
idstringObligatorioUser ID to update
namestringUsername (max 50 characters)
rolestringenumRole levels for users in SuperSaaS
regularsuperuserblockedemailstringEmail address
phonestringPhone number
creditintegerCredit level balance
mobilestringMobile phone number
addressstringMailing address
full_namestringFull name
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not