I’m building an integration using Google Cloud Application Integration to fetch the content of a Google Drive file using its fileId.
I have an API Trigger with input variable fileid.
A Connectors task uses the Google Drive connector with the action: GET_files/%7BfileId%7D → expecting the value in Path parameters.fileId.
Problem: Even when providing fileid via the API Trigger, the integration fails with the error:
Required parameter Connector input payload is not present.
What I need help with: How can I correctly map the fileid input from the API Trigger to the Connector task input (Path parameters.fileId) so the request succeeds?
Is there something specific required to pass the input to connectorInputPayload?