Actions16
- Agent Actions
- Hiring Actions
- Execution Actions
- Deployment Actions
Overview
This node interacts with the AgentHub API to manage deployments of AI agents. Specifically, the 'List Deployments' operation retrieves a list of deployments filtered by their status, such as running, building, deploying, pending, stopped, failed, crashed, or all. This is useful for monitoring and managing the state of various AI agent deployments in an automated workflow.
Use Case Examples
- A user wants to monitor all currently running deployments to ensure their AI agents are active and functioning.
- A user needs to retrieve a list of failed deployments to troubleshoot issues.
- A user wants to get an overview of all deployments regardless of status for reporting purposes.
Properties
| Name | Meaning |
|---|---|
| Status Filter | Filter deployments by their current status to narrow down the list of deployments returned. |
Output
JSON
- ``
id- The unique identifier of each deployment.status- The current status of each deployment.hiring_id- The ID of the hiring associated with the deployment.created_at- Timestamp when the deployment was created.updated_at- Timestamp when the deployment was last updated.
Dependencies
- Requires an API key credential for AgentHub API access.
Troubleshooting
- Common issues include invalid or missing API key credentials, resulting in authentication errors.
- Incorrect status filter values may return empty results; ensure the status filter matches one of the supported options.
- Network or API endpoint issues may cause request failures; verify network connectivity and API base URL configuration.
Links
- AgentHub API - Deployments - Official documentation for managing deployments via the AgentHub API.