Short answer: You can call cloud function in GCP Cloud Functions by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the GCP Cloud Functions Call Cloud Function action to a workflow, map its 3 inputs from any upstream app, and it runs automatically every time the trigger fires. No code, and a free tier to start.
Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.
| Field | Type | Required | Description |
|---|---|---|---|
Function URL trigger_url | string | Required | HTTPS trigger URL for the function. Find in GCP Console → Cloud Functions → function → Trigger tab. |
Method method | options | Optional | – |
Request Body payload | object | Optional | JSON body. Ignored for GET. |
{"trigger_url": "https://my-function-abc-uc.a.run.app","method": "{{trigger.method}}","payload": "{{trigger.payload}}"}
{"ok": true,"result": "..."}
Use these fields in downstream nodes for routing, logging, or error handling.
Any of these apps can fire this action as part of a workflow.