Procfu
procfuProcFu enhances Podio's capabilities by providing a suite of automation tools and functions, enabling users to create scripts, mini apps, and integrate with various services to streamline workflows.
Acciones disponibles (11)
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.
Array Difference DeletionsPROCFU_ARRAY_DIFF_DELAcciónTool to return items removed when comparing two JSON arrays. Use when you have two arrays and need to know which elements were deleted.
PROCFU_ARRAY_DIFF_DELAcciónTool to return items removed when comparing two JSON arrays. Use when you have two arrays and need to know which elements were deleted.
Parámetros de entrada
json_array_aarrayObligatorioFirst JSON array to compare against the second array
json_array_barrayObligatorioSecond JSON array to compare against the first array
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
Array Diff NewPROCFU_ARRAY_DIFF_NEWAcciónTool to return items added in the second JSON array. Use when you need to identify new elements between two list versions. Example: Compare [1,3,4] vs [1,3,6] to get [6].
PROCFU_ARRAY_DIFF_NEWAcciónTool to return items added in the second JSON array. Use when you need to identify new elements between two list versions. Example: Compare [1,3,4] vs [1,3,6] to get [6].
Parámetros de entrada
json_array_aarrayObligatorioFirst JSON array to compare against the second.
json_array_barrayObligatorioSecond JSON array. Items present here but not in the first will be returned.
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
Array Diff SamePROCFU_ARRAY_DIFF_SAMEAcciónTool to get items present in both JSON arrays. Computes the intersection locally to avoid external API dependency. Rules: - Two items are considered equal if their JSON representations match (with sorted keys for objects). - The result contains unique items present in both arrays, preserving the order they appear in json_array_b.
PROCFU_ARRAY_DIFF_SAMEAcciónTool to get items present in both JSON arrays. Computes the intersection locally to avoid external API dependency. Rules: - Two items are considered equal if their JSON representations match (with sorted keys for objects). - The result contains unique items present in both arrays, preserving the order they appear in json_array_b.
Parámetros de entrada
json_array_aarrayObligatorioFirst JSON array
json_array_barrayObligatorioSecond JSON array
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
Array SortPROCFU_ARRAY_SORTAcciónTool to sort a JSON array of values. Use when you need to order elements ascending or descending.
PROCFU_ARRAY_SORTAcciónTool to sort a JSON array of values. Use when you need to order elements ascending or descending.
Parámetros de entrada
reversebooleanTrue for descending order; defaults to ascending order.
json_arrayarrayObligatorioJSON array to sort (e.g., [3, 1, 2]).
Parámetros de salida
dataarrayObligatorioData 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 Google DrivePROCFU_DELETE_GOOGLE_DRIVEAcciónTool to delete a Google Drive file or folder. Use after obtaining a valid Google Drive ID.
PROCFU_DELETE_GOOGLE_DRIVEAcciónTool to delete a Google Drive file or folder. Use after obtaining a valid Google Drive ID.
Parámetros de entrada
google_idstringObligatorioID of the Google Drive file or folder 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
Generate dummy dataPROCFU_DUMMY_DATAAcciónTool to generate dummy data. Use when you need random emails, text, numbers, dates, people, addresses, or images for testing or placeholder data.
PROCFU_DUMMY_DATAAcciónTool to generate dummy data. Use when you need random emails, text, numbers, dates, people, addresses, or images for testing or placeholder data.
Parámetros de entrada
typestringObligatorioenumType of dummy data to generate. Choose one of the supported types for numbers, text, people, addresses, etc.
intpricedecimal2datedateTimewordtitlesentenceparagraphtextloremTexthtml+35
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
Google Drive DeletePROCFU_GOOGLE_DRIVE_DELETEAcciónTool to delete a Google Drive file or folder. Use after obtaining a valid Google Drive ID.
PROCFU_GOOGLE_DRIVE_DELETEAcciónTool to delete a Google Drive file or folder. Use after obtaining a valid Google Drive ID.
Parámetros de entrada
google_idstringObligatorioID of the Google Drive file or folder 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
Ask question to OpenAI GPTPROCFU_OPEN_AI_GPTAcciónTool to ask a question to OpenAI GPT. Use when you need a conversational answer from GPT.
PROCFU_OPEN_AI_GPTAcciónTool to ask a question to OpenAI GPT. Use when you need a conversational answer from GPT.
Parámetros de entrada
modelstringModel to use; default is 'gpt-4o-mini'.
promptstringObligatorioPrompt for GPT.
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
Generate Image with OpenAIPROCFU_OPEN_AI_IMAGEAcciónTool to generate an image via OpenAI API. Use when you need programmatic image creation from a text prompt.
PROCFU_OPEN_AI_IMAGEAcciónTool to generate an image via OpenAI API. Use when you need programmatic image creation from a text prompt.
Parámetros de entrada
promptstringObligatorioText prompt describing the desired image to generate.
orientationstringObligatorioenumOrientation of the generated image.
squareportraitlandscape
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 Google Sheet contents as arrayPROCFU_SHEETS_GETAcciónTool to get sheet contents as array. Use when you need to retrieve Google Sheet data as an associative array.
PROCFU_SHEETS_GETAcciónTool to get sheet contents as array. Use when you need to retrieve Google Sheet data as an associative array.
Parámetros de entrada
rangestringObligatorioName of the sheet/tab within the spreadsheet to retrieve.
sheet_idstringObligatorioGoogle Sheet ID to fetch data from.
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 Google Sheets MetadataPROCFU_SHEETS_GET_METADATAAcciónTool to retrieve metadata of a Google Sheets spreadsheet, including sheet names, IDs, and properties. Use when you need sheet-level details for a given spreadsheet ID.
PROCFU_SHEETS_GET_METADATAAcciónTool to retrieve metadata of a Google Sheets spreadsheet, including sheet names, IDs, and properties. Use when you need sheet-level details for a given spreadsheet ID.
Parámetros de entrada
spreadsheet_idstringObligatorioID of the Google Sheets spreadsheet to retrieve metadata for.
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