Actions16
- Agent Actions
- Hiring Actions
- Execution Actions
- Deployment Actions
Overview
This node interacts with the AgentHub API to manage deployments related to AI agents. Specifically, the 'Get Deployment Status' operation retrieves the current status of a deployment by its ID. This is useful for monitoring the progress or state of a deployment in real-time, such as checking if a deployment is running, stopped, failed, or in another state.
Use Case Examples
- A user wants to check the status of a specific deployment to see if it has completed successfully or if it encountered errors.
- A workflow needs to conditionally proceed based on whether a deployment is still running or has stopped.
Properties
| Name | Meaning |
|---|---|
| Deployment ID | The unique identifier of the deployment whose status is to be retrieved. This is a required input for the operation. |
Output
JSON
status- The current status of the deployment, such as running, stopped, failed, etc.deploymentId- The ID of the deployment queried.details- Additional details about the deployment status returned by the API.
Dependencies
- Requires an API key credential for AgentHub API access, provided via node credentials.
Troubleshooting
- Common issues include providing an invalid or missing Deployment ID, which will cause the API request to fail.
- API authentication errors if the API key credential is incorrect or missing.
- Network or connectivity issues when calling the AgentHub API endpoint.
- Error messages from the API typically indicate invalid parameters or unauthorized access; ensure the deployment ID is correct and the API key is valid.
Links
- AgentHub API - Get Deployment Status - Official API documentation for retrieving deployment status.