Overview
Connect Jungle Grid with Flows360
Submit async compute jobs, monitor status and logs, and retrieve artifacts from Jungle Grid.
Use the Jungle Grid connector to include its declared actions and events in Flows360 workflows without duplicating the integration logic inside each consuming system. This pinned connector version currently exposes 10 actions and no declared triggers.
Available actions
- Estimate Job
- Submit Job
- List Jobs
- Get Job Status
- Get Job Runtime
- Get Job Logs
- List Job Artifacts
- Get Artifact Download URL
- Plus 2 additional declared actions.
Available triggers
- No triggers are declared in this pinned package.
The capability list above is generated from the exact reviewed connector package so the public description stays aligned with the version Flows360 operates.
Technical guide
Technical reference
Package identity
- Connector: Jungle Grid
- Package:
@activepieces/piece-jungle-grid@0.2.0 - Exact artifact digest:
sha256:78676b5f0e82d79a17c7937539438b0d7e9f7368218efe1c89ba7d05bb5955ad - Runtime: Activepieces-compatible deterministic worker
- Source: the exact reviewed Activepieces source
Authentication
CUSTOM AUTH. Connection values are tenant-specific and remain in the consuming Studio instance; CDK stores definitions and field metadata, not customer credential values.
Action contracts
- Estimate Job (
estimate_job), Estimate the cost, duration, and resources for a Jungle Grid job. Classification: read. - Submit Job (
submit_job), Submit a Jungle Grid job and return immediately with job metadata. This action does not wait for completion. Classification: read. - List Jobs (
list_jobs), List Jungle Grid jobs for the authenticated workspace, optionally filtered by status. Classification: read. - Get Job Status (
get_job_status), Get the current status and metadata for a submitted Jungle Grid job. Classification: read. - Get Job Runtime (
get_job_runtime), Get runtime tails, exit code, and runtime availability details for a Jungle Grid job. Classification: read. - Get Job Logs (
get_job_logs), Get recent stdout, stderr, or combined logs for a submitted Jungle Grid job. Classification: read. - List Job Artifacts (
list_artifacts), List files produced by a Jungle Grid job when managed artifact storage is available. Classification: read. - Get Artifact Download URL (
get_artifact_download_url), Create a temporary signed download URL for a Jungle Grid artifact. Treat the returned URL as a secret. Classification: read. - Cancel Job (
cancel_job), Cancel a non-terminal Jungle Grid job. This may stop active execution. Classification: read. - Custom API Call (
custom_api_call), Make a custom API call to a specific endpoint Classification: read.
Trigger contracts
- No trigger delivery contracts are declared.
Verification
Deterministic execution evidence is recorded for the pinned artifact, including 1 exercised action entrypoint and 0 exercised trigger entrypoints.
Capability summary
Authentication
Authentication method: custom
Authentication profiles
connection · custom
- API Base URL Required
- API Key Required · protected credential
Supported objects
| Object | Read | Write | Notes |
|---|---|---|---|
| Estimate Job | Yes | No | Estimate the cost, duration, and resources for a Jungle Grid job. |
| Submit Job | Yes | No | Submit a Jungle Grid job and return immediately with job metadata. This action does not wait for completion. |
| List Jobs | Yes | No | List Jungle Grid jobs for the authenticated workspace, optionally filtered by status. |
| Get Job Status | Yes | No | Get the current status and metadata for a submitted Jungle Grid job. |
| Get Job Runtime | Yes | No | Get runtime tails, exit code, and runtime availability details for a Jungle Grid job. |
| Get Job Logs | Yes | No | Get recent stdout, stderr, or combined logs for a submitted Jungle Grid job. |
| List Job Artifacts | Yes | No | List files produced by a Jungle Grid job when managed artifact storage is available. |
| Get Artifact Download URL | Yes | No | Create a temporary signed download URL for a Jungle Grid artifact. Treat the returned URL as a secret. |
| Cancel Job | Yes | No | Cancel a non-terminal Jungle Grid job. This may stop active execution. |
| Custom API Call | Yes | No | Make a custom API call to a specific endpoint |
Supported actions
Estimate Job · Read
Estimate the cost, duration, and resources for a Jungle Grid job.
estimate_job · Risk: low · Retry: safe
Inputs
instructions· string · Optional, ### Async workflownn1. Run **Estimate Job** to preview route, queue, and cost signals.n2. Run **Submit Job** to queue work. This returns immediately with the Jungle Grid job status.n3. Add a Delay, branch, or loop, then call **Get Job Status**, **Get Job Runtime**, or **Get Job Logs**.n4. After completion, call **List Job Artifacts** and **Get Artifact Download URL** if the job produced files.name· string · Optional, Optional human-readable label for this Jungle Grid job.workload_type· string · Required, The workload class Jungle Grid should route.image· string · Required, Public container image reference, for example `python:3.11` or `pytorch/pytorch:2.4.0-cuda12.1-cudnn9-runtime`.model_size_gb· number · Optional, Approximate model size in GB. Jungle Grid uses this for routing and cost estimation.command· string · Optional, Container command to run. Leave blank to use the image default entrypoint or command.args· array · Optional, Optional command arguments, one item per argument.optimize_for· string · Optional, Placement preference for cost, speed, or balanced routing.max_price_per_hour· number · Optional, Optional maximum hourly price in USD.preferred_gpu_family· string · Optional, Optional GPU family preference, for example `l4`.avoid_gpu_families· array · Optional, Optional GPU families to avoid, one item per family, for example `a100`.region_preference· string · Optional, Optional region preference, for example `us-east`.latency_priority· string · Optional, Optional latency priority for routing.cost_priority· string · Optional, Optional cost priority for routing.
Submit Job · Read
Submit a Jungle Grid job and return immediately with job metadata. This action does not wait for completion.
submit_job · Risk: low · Retry: safe
Inputs
instructions· string · Optional, ### Async workflownn1. Run **Estimate Job** to preview route, queue, and cost signals.n2. Run **Submit Job** to queue work. This returns immediately with the Jungle Grid job status.n3. Add a Delay, branch, or loop, then call **Get Job Status**, **Get Job Runtime**, or **Get Job Logs**.n4. After completion, call **List Job Artifacts** and **Get Artifact Download URL** if the job produced files.name· string · Optional, Optional human-readable label for this Jungle Grid job.workload_type· string · Required, The workload class Jungle Grid should route.image· string · Required, Public container image reference, for example `python:3.11` or `pytorch/pytorch:2.4.0-cuda12.1-cudnn9-runtime`.model_size_gb· number · Optional, Approximate model size in GB. Jungle Grid uses this for routing and cost estimation.command· string · Optional, Container command to run. Leave blank to use the image default entrypoint or command.args· array · Optional, Optional command arguments, one item per argument.optimize_for· string · Optional, Placement preference for cost, speed, or balanced routing.max_price_per_hour· number · Optional, Optional maximum hourly price in USD.preferred_gpu_family· string · Optional, Optional GPU family preference, for example `l4`.avoid_gpu_families· array · Optional, Optional GPU families to avoid, one item per family, for example `a100`.region_preference· string · Optional, Optional region preference, for example `us-east`.latency_priority· string · Optional, Optional latency priority for routing.cost_priority· string · Optional, Optional cost priority for routing.callback_url· string · Optional, Optional HTTPS callback URL for terminal job lifecycle events.callback_metadata· object · Optional, Optional key-value metadata Jungle Grid should include with callback events.
List Jobs · Read
List Jungle Grid jobs for the authenticated workspace, optionally filtered by status.
list_jobs · Risk: low · Retry: safe
Inputs
limit· number · Optional, Maximum number of jobs to return. Jungle Grid accepts 1 to 100.cursor· string · Optional, Optional cursor from a previous List Jobs response.status· string · Optional, Optional job status filter.
Get Job Status · Read
Get the current status and metadata for a submitted Jungle Grid job.
get_job_status · Risk: low · Retry: safe
Inputs
job_id· string · Required, The `job_id` returned by Submit Job or List Jobs.
Get Job Runtime · Read
Get runtime tails, exit code, and runtime availability details for a Jungle Grid job.
get_job_runtime · Risk: low · Retry: safe
Inputs
job_id· string · Required, The `job_id` returned by Submit Job or List Jobs.
Get Job Logs · Read
Get recent stdout, stderr, or combined logs for a submitted Jungle Grid job.
get_job_logs · Risk: low · Retry: safe
Inputs
job_id· string · Required, The `job_id` returned by Submit Job or List Jobs.tail_lines· number · Optional, Number of recent log lines to fetch. Jungle Grid accepts 1 to 500.cursor· string · Optional, Optional `next_cursor` from a previous logs response.stream· string · Optional, Choose which log stream to fetch.
List Job Artifacts · Read
List files produced by a Jungle Grid job when managed artifact storage is available.
list_artifacts · Risk: low · Retry: safe
Inputs
job_id· string · Required, The `job_id` returned by Submit Job or List Jobs.
Get Artifact Download URL · Read
Create a temporary signed download URL for a Jungle Grid artifact. Treat the returned URL as a secret.
get_artifact_download_url · Risk: low · Retry: safe
Inputs
job_id· string · Required, The `job_id` returned by Submit Job or List Jobs.artifact_id· string · Required, The artifact ID returned by List Job Artifacts.
Cancel Job · Read
Cancel a non-terminal Jungle Grid job. This may stop active execution.
cancel_job · Risk: low · Retry: safe
Inputs
job_id· string · Required, The `job_id` returned by Submit Job or List Jobs.reason· string · Optional, Optional cancellation reason stored with the Jungle Grid job status.
Custom API Call · Read
Make a custom API call to a specific endpoint
custom_api_call · Risk: low · Retry: safe
Inputs
url· object · Requiredmethod· string · Requiredheaders· object · Optional, Authorization headers are injected automatically from your connection.queryParams· object · Optional, Appended to the URL as ?key=value.body_type· string · Optionalbody· object · Optionalresponse_is_binary· boolean · Optional, Enable for files like PDFs, images, etc.failsafe· boolean · Optional, On a failed request, output the error instead of failing the step.timeout· number · Optional, Seconds to wait for a response. Empty: up to the flow limit (10 min).followRedirects· boolean · Optional, Follow 3xx redirects instead of returning them as the response.
Setup
Setup
- Add the Jungle Grid connector to the workflow in the target Flows360 Studio instance.
- Create or select the tenant-specific connection required by the connector. Connection secrets remain in the Studio connection boundary and are not copied into CDK documentation.
- Provide the connection fields declared by the pinned package:
- API Base URL (
api_base_url), required. - API Key (
api_key), required; stored as a sensitive connection value.
- Select the required action or trigger and complete its declared input fields. Required and optional inputs are defined by the exact package schema.
- Test the workflow in the appropriate environment before enabling production scheduling or event delivery.
Limitations
Limitations and operational notes
- This content describes
@activepieces/piece-jungle-grid@0.2.0; provider behaviour can change independently and should be revalidated when the provider or connector version changes. - Only the 10 actions and 0 triggers declared by this pinned package are represented here.
- Tenant credentials and connection values are not stored in the public connector record.
- Provider-side permissions, account entitlements, quotas and rate limits remain subject to the connected provider account and are not inferred when the package does not declare them.
- Deterministic execution evidence is recorded for the pinned artifact, including 1 exercised action entrypoint and 0 exercised trigger entrypoints.
Troubleshooting
Why canu2019t the connector authenticate?
Check the tenant connection in Studio and confirm every required Jungle Grid connection field is present. Re-authorise OAuth-based connections if the provider token or consent has expired. Do not place credential values in CDK content or logs.
Why is an action or trigger unavailable?
Confirm that the workflow is using @activepieces/piece-jungle-grid@0.2.0 and compare the requested capability with the declared action and trigger list for this version. A capability that is not declared by the pinned package should not be presented as supported.
What should I check after a provider-side change?
Revalidate authentication, required fields, action/trigger behaviour and provider documentation before publishing refreshed connector content or moving a new package version into production.