Actions16
- Agent Actions
- Hiring Actions
- Execution Actions
- Deployment Actions
Overview
This node interacts with the AgentHub API to manage hiring-related operations. Specifically, for the 'Get Hiring Details' operation, it retrieves detailed information about a specific hiring by its ID. This is useful for users who want to track or review the status and details of their hired agents within the AgentHub platform.
Use Case Examples
- A user wants to check the status and details of a particular hiring by providing its Hiring ID.
- A workflow needs to fetch hiring details to make decisions based on the agent's current state or attributes.
Properties
| Name | Meaning |
|---|---|
| Hiring ID | The unique identifier of the hiring to retrieve details for. This is a required numeric input used to specify which hiring record to fetch. |
Output
JSON
id- The unique identifier of the hiring.agent_id- The ID of the agent associated with the hiring.user_id- The ID of the user who made the hiring.status- The current status of the hiring (e.g., active, suspended).requirements- The JSON configuration or requirements specified for the hired agent.billing_cycle- The billing cycle type for the hiring (e.g., per use, monthly).created_at- Timestamp when the hiring was created.updated_at- Timestamp when the hiring was last updated.
Dependencies
- AgentHub API with API key authentication
Troubleshooting
- Ensure the Hiring ID provided is valid and exists; otherwise, the API will return an error indicating the hiring was not found.
- Check that the API key credential is correctly configured and has the necessary permissions to access hiring details.
- If the node throws network or timeout errors, verify the base URL and network connectivity to the AgentHub API endpoint.
Links
- AgentHub API - Get Hiring Details - Official API documentation for retrieving hiring details from AgentHub.