Is this article helpful?

Workflow Automation: Errors and Troubleshooting Tips

When your flows aren’t working as expected, the best first step is to check the Flow Logs.

Most errors will appear in the Errors Only view. For more complex issues or to trace the sequence of actions, review the Actions Only or Everything views for detailed insights.

To stop a flow from running, simply deactivate it.

Tip:

The Developer Page for the Podio app is useful not only for troubleshooting hook events but also for diagnosing field-specific errors by referencing the Field ID.

Below you will find multiple Error messages along with their Symptoms, Causes and solutions.

ERROR

SymptomCauseSolution
Could not authenticate to Podio with sharing userSharing action uses a member who is not an Admin of the workspaceAdjust the “Shared By” user to an Admin

FatalPHPError

SymptomCauseSolution
Memory Exhausted!Collecting too many items overwhelms memoryReduce the number of items being collected. Check here for more PHP errors

PHPError

SymptomCauseSolution
PHP Error in eval: ""=="" (calculation invalid)Calculation error in a Flow actionUse Simulate Vars on a Podio item to check calculations

PodioBadRequestError

SymptomCauseSolution
Missing mandatory field nameRequired field token is blank or missing dataCheck data in field tokens; if a field is required, ensure it has a value before triggering the flow
The referenced item is not validReferenced item is deleted or invalidRemove the referenced item and replace with a valid item
Multiple is not allowed for field '##'Attempting to set multiple values on a field that doesn't allow multiple selectionsIn the destination Podio app, allow multiple choice for Category/Relationship/Contact fields or correct the field id via the app developer page
Invalid value '##' (string): must be integer or objectContact field token returns a string where an integer/object is requiredWrap the token in intval() to force an integer
A value is required for either 'start', 'start_date', or 'start_utc'Action updates End Date only (missing Start Date)Add a step to update the date field using the item's current value (start date)
Invalid value '31 Mar 2017' (string): Must be date in YYYY-MM-DDDate token is not in Podio's required formatCreate a custom variable to format the date as YYYY-MM-DD
field.app.deletedField was deleted or changed in PodioRefresh from Podio in Workflow Automation to update app data
Last view can only be used by usersGet View action cannot collect the specified viewRefresh from Podio and confirm the action collects the correct view; resave the flow

PodioForbiddenError

SymptomCauseSolution
Must be at least light on user to perfom this operationContact in the specified field is not (or no longer) a workspace memberRemove the contact member before triggering the flow
The app with id ## does not have the right view on profile with id ##Contact reference is not a valid member in the destination workspaceAdd the user in the contact field to the destination workspace, or remove from the item
The app with id ## does not have the right comment on item with id ##App settings do not allow commentsUpdate app settings; refresh from Podio in Workflow Automation
The app with id ## does not have the right update on item with id ##App does not permit edits by usersEnable edits in app settings or change Action Authentication to an Admin member
The app with id ## does not have the right add_file on item with id ##App does not allow files to be added to itemsEnable files in app settings (Modify Template > wrench)
The user with id ## does not have the right view on widget with id ##Main account user is not an Admin of the workspace (insufficient widget privileges)Promote main account user to Admin in the app/workspace
The user with id ## does not have the right grant_view on item with id ##Sharing user is on a Basic/Free planUpgrade to Podio Plus or Premium

PodioGoneError

SymptomCauseSolution
GoneApp changes not synchronized into Workflow AutomationRefresh from Podio to update workspaces
Item has been deletedFlow triggered on an item that was deleted (often on date-trigger midnight runs)Resave date-triggered flows and/or add a Wait/Delay before any delete step
File has been deletedWorkflow Automation tried to download/access a file or image that no longer existsEnsure the image/file is from a public source and avoid race conditions (other flows deleting the image)

PodioInvalidGrantError

SymptomCauseSolution
Sorry, your OAuth grant has expiredPodio auth token is invalid (API key revoked, password changed, long inactivity)Main account/sharing user must sign in to Workflow Automation to re-authorize

PodioNotFoundError

SymptomCauseSolution
No matching operation could be found. Missing parameters:sourceAttempt to attach a file to Podio but the file is missingEnsure the file exists before attach; commonly occurs with images

PodioUnavailableError

SymptomCauseSolution
Single API call generated a 504API call temporarily unavailable; flow continues but results may be unpredictableCheck all involved items for consistent data; use log to get relevant item IDs

RightSignatureError

SymptomCauseSolution
Number of names does not match number of email addresses (omitting names)Email/name counts do not match RightSignature template rolesEnsure number of emails equals number of names and matches roles in the RS template
There was an error with your RightSignature integration. Please reconnectOne of more fields in the RS action block are empty/invalidFill all fields in the RightSignature Template Action; reconnect RS account if needed
Exit with code 1 due to network error: ProtocolUnknownErrorWorkflow Automation cannot access/read a resource used by the PDF (script/style unavailable)Ensure all PDF resources are hosted and accessible

SMSError

SymptomCauseSolution
Failed sending SMS to +119999999999 - Invalid recipientPhone number format invalidAdjust phone number to correct format
Failed sending SMS to +119999999999 - ThrottledService blocks multiple messages to the same number within short intervalWait at least 60 seconds between SMS messages

SMTPError

SymptomCauseSolution
Failed sending email: "SMTP Error: Data not accepted" (PHPMailer)Microsoft Office requires email to be sent by the authenticated user; From address mismatchUpdate the From Address to match SMTP login credentials
Failed sending through smpt.gmail.com: "SMTP Connect() failed" (PHPMailer)Assigned SMTP server failed to connect/credentials incorrectDisconnect SMTP, re-enter credentials, send a test message

Warning

SymptomCauseSolution
Flow had to fetch more than 1000 items from PodioCollecting too many items on a date-triggered flow (e.g, using < or > filters)Filter only on date field EQUAL to current date; see Throttling Webhooks guidance

Find Error

SymptomCauseSolution
Find Error: too many results for SOMETHING (truncating at 99)Search returns too many itemsRevise search criteria to reduce results; if using multiple collectors, use Clear Collected to reduce load