diff --git a/docs/resources/task_management_worktype.md b/docs/resources/task_management_worktype.md index f9e73eafc..12b026ac7 100644 --- a/docs/resources/task_management_worktype.md +++ b/docs/resources/task_management_worktype.md @@ -39,8 +39,6 @@ resource "genesyscloud_task_management_worktype" "worktype_1" { default_skills_ids = [genesyscloud_routing_skill.skill_1.id, genesyscloud_routing_skill.skill_2.id] assignment_enabled = true - - defaultStatusName = "Open Status" } ``` @@ -63,7 +61,6 @@ resource "genesyscloud_task_management_worktype" "worktype_1" { - `default_priority` (Number) The default priority for Workitems created from the Worktype. The valid range is between -25,000,000 and 25,000,000. - `default_queue_id` (String) The default queue for Workitems created from the Worktype. - `default_skills_ids` (List of String) The default skills for Workitems created from the Worktype. -- `default_status_name` (String) The name of the default status for Workitems created from the Worktype. This status should be defined in 'statuses'. - `default_ttl_seconds` (Number) The default time to time to live in seconds for Workitems created from the Worktype. - `description` (String) The description of the Worktype. - `division_id` (String) The division to which this entity belongs. diff --git a/docs/resources/task_management_worktype_status.md b/docs/resources/task_management_worktype_status.md index 6fce727d9..978becb98 100644 --- a/docs/resources/task_management_worktype_status.md +++ b/docs/resources/task_management_worktype_status.md @@ -45,6 +45,7 @@ resource "genesyscloud_task_management_worktype_status" "worktype_status" { ### Optional +- `default` (Boolean) This status is the default status for Workitems created from this Worktype. Only one status can be set as the default status at a time. - `default_destination_status_id` (String) Default destination status to which this Status will transition to if auto status transition enabled. - `description` (String) The description of the Status. - `destination_status_ids` (List of String) A list of destination Statuses where a Workitem with this Status can transition to. If the list is empty Workitems with this Status can transition to all other Statuses defined on the Worktype. A Status can have a maximum of 24 destinations. diff --git a/examples/resources/genesyscloud_task_management_worktype/resource.tf b/examples/resources/genesyscloud_task_management_worktype/resource.tf index 7262a1c2d..63ea39da6 100644 --- a/examples/resources/genesyscloud_task_management_worktype/resource.tf +++ b/examples/resources/genesyscloud_task_management_worktype/resource.tf @@ -17,6 +17,4 @@ resource "genesyscloud_task_management_worktype" "worktype_1" { default_skills_ids = [genesyscloud_routing_skill.skill_1.id, genesyscloud_routing_skill.skill_2.id] assignment_enabled = true - - defaultStatusName = "Open Status" }