-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Description
hubstaff
URLs
Polling Sources
new-client
Prompt
Emit new event when a new client is created in Hubstaff. No required props.
URLs
new-schedule
Prompt
Emit new event when a schedule is created in Hubstaff. Required props include 'organization id'. 'Organization Id' has async options.
URLs
- https://developer.hubstaff.com/docs/hubstaff_v2#!/organizations/getV2Organizations
- https://developer.hubstaff.com/docs/hubstaff_v2#!/attendance_schedules/getV2OrganizationsOrganizationIdAttendanceSchedules
Actions
create-task
Prompt
This action creates a new task on your Hubstaff organization. Required props include 'organization_id' and 'project_id' to link the task with a specific project. Additional optional props could include 'due_date' and 'assignees' to add a deadline and assign specific people respectively. 'organization_id' and 'project_id' have async options.
URLs
- https://developer.hubstaff.com/docs/hubstaff_v2#!/organizations/getV2Organizations
- https://developer.hubstaff.com/docs/hubstaff_v2#!/projects/getV2OrganizationsOrganizationIdProjects
- https://developer.hubstaff.com/docs/hubstaff_v2#!/tasks/postV2ProjectsProjectIdTasks
update-task
Prompt
This action allows you to update a specific task within your Hubstaff organization. Required props are 'task_id' of the task you wish to update and 'organization_id' and 'project_id'. Optional props could include 'name' if you want to rename the task, 'status' to update the task's current status, or 'assignees' to reassign the task. 'task_id', 'organization_id' and 'project_id' have async options.
URLs
- https://developer.hubstaff.com/docs/hubstaff_v2#!/tasks/getV2ProjectsProjectIdTasks
- https://developer.hubstaff.com/docs/hubstaff_v2#!/organizations/getV2Organizations
- https://developer.hubstaff.com/docs/hubstaff_v2#!/projects/getV2OrganizationsOrganizationIdProjects
- https://developer.hubstaff.com/docs/hubstaff_v2#!/tasks/postV2ProjectsProjectIdTasks
list-tasks
Prompt
This action retrieves a list of all tasks from your Hubstaff organization. Required props are 'organization_id'. However, you can use optional props like 'project_id' to list tasks of a specific project, 'status' to filter tasks based on their status, or 'user_ids' to filter tasks assigned to a specific person. 'organization_id', 'project_id' and 'user_ids' has async options. 'status' prop has 'active', 'completed', 'deleted', 'archived', 'archived_native_active', 'archived_native_completed' and 'archived_native_deleted' as options
URLs
- https://developer.hubstaff.com/docs/hubstaff_v2#!/organizations/getV2OrganizationsOrganizationIdMembers
- https://developer.hubstaff.com/docs/hubstaff_v2#!/organizations/getV2Organizations
- https://developer.hubstaff.com/docs/hubstaff_v2#!/projects/getV2OrganizationsOrganizationIdProjects
- https://developer.hubstaff.com/docs/hubstaff_v2#!/tasks/getV2OrganizationsOrganizationIdTasks
- https://developer.hubstaff.com/docs/hubstaff_v2#!/tasks/getV2ProjectsProjectIdTasks