Fillout Forms
fillout_formsFillout is a platform that allows users to create and manage forms, offering a REST API for programmatic access to form data.
Acciones disponibles (3)
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.
Authorize OAuthFILLOUT_FORMS_AUTHORIZE_O_AUTHAcciónTool to initiate the oauth authorization process for third-party applications. use when you need to generate the url to redirect your users to the fillout consent page.
FILLOUT_FORMS_AUTHORIZE_O_AUTHAcciónTool to initiate the oauth authorization process for third-party applications. use when you need to generate the url to redirect your users to the fillout consent page.
Parámetros de entrada
statestringAn arbitrary string to maintain state between the request and callback. It will be returned to your redirect URI.
client_idstringObligatorioThe client ID of your OAuth application in Fillout, found in Developer settings.
redirect_urianyObligatoriouriThe URL to which users will be redirected after granting or denying authorization.
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 formsFILLOUT_FORMS_GET_FORMSAcciónTool to retrieve a list of all forms in your account. use when you need to list your forms after authenticating with fillout.
FILLOUT_FORMS_GET_FORMSAcciónTool to retrieve a list of all forms in your account. use when you need to list your forms after authenticating with fillout.
Parámetros de entrada
Sin parámetros.
Parámetros de salida
dataobject[]ObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Invalidate Access TokenFILLOUT_FORMS_INVALIDATE_ACCESS_TOKENAcciónTool to revoke an existing oauth access token. use when the user logs out or you need to programmatically invalidate a token after deauthorization. example: "invalidate token abcdefg123456". this endpoint does not return a json body. successful calls return http 200 or 204.
FILLOUT_FORMS_INVALIDATE_ACCESS_TOKENAcciónTool to revoke an existing oauth access token. use when the user logs out or you need to programmatically invalidate a token after deauthorization. example: "invalidate token abcdefg123456". this endpoint does not return a json body. successful calls return http 200 or 204.
Parámetros de entrada
tokenstringObligatorioOAuth access token to invalidate (do not include the 'Bearer' prefix).
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