python-workfront Documentation

603
python-workfront Documentation Release 0.7.0 Jump Systems LLC February 18, 2016

Transcript of python-workfront Documentation

Page 1: python-workfront Documentation

python-workfront DocumentationRelease 0.7.0

Jump Systems LLC

February 18, 2016

Page 2: python-workfront Documentation
Page 3: python-workfront Documentation

Contents

1 Quickstart 3

2 Detailed Documentation 52.1 Usage . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5

2.1.1 Creating a Session . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 52.1.2 Low-level requests . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 52.1.3 Finding objects . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 52.1.4 Working with objects . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5

2.2 API Reference . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 62.2.1 API versions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9

2.3 Development . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4302.3.1 Setting up a virtualenv . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4302.3.2 Running the tests . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4302.3.3 Building the documentation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4312.3.4 Making a release . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4312.3.5 Adding a new version of the Workfront API . . . . . . . . . . . . . . . . . . . . . . . . . . 431

2.4 Changes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4312.4.1 0.8.0 (xx February 2016) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4312.4.2 0.7.0 (17 February 2016) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4312.4.3 0.6.1 (12 February 2016) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4322.4.4 0.6.0 (11 February 2016) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4322.4.5 0.3.2 (10 February 2016) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4322.4.6 0.3.0 (10 February 2016) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4322.4.7 0.0dev0 (21 August 2015) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 432

2.5 License . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 432

3 Indices and tables 433

Python Module Index 435

i

Page 4: python-workfront Documentation

ii

Page 5: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

This is a Python client library for accessing the Workfront REST api.

Contents 1

Page 6: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

2 Contents

Page 7: python-workfront Documentation

CHAPTER 1

Quickstart

Install the package:

$ pip install python-workfront

Generate an API key:

$ python -m workfront.get_api_key --domain ${your_domain}username: your_userPassword:Your API key is: '...'

Note: If you have SAML authentication enabled, you may well need to disable it for for the specified user in order toobtain an API key. Once you have an API key, you can re-enable SAML authentication.

Make a session:

from workfront import Sessionsession = Session('your domain', api_key='...')api = session.api

Search for a project:

project = session.search(api.Project,name='my project name',name_Mod='cicontains')[0]

Create an issue in that project:

issue = api.Issue(session,name='a test issue',description='some text here',project_id=project.id)

issue.save()

Add a comment to the issue just created:

issue.add_comment('a comment')

3

Page 8: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

4 Chapter 1. Quickstart

Page 9: python-workfront Documentation

CHAPTER 2

Detailed Documentation

2.1 Usage

2.1.1 Creating a Session

• api login

• non api log-in (login/logout)

• url options (especially templates)

2.1.2 Low-level requests

• Session.request, params

• get/post/put/delete

2.1.3 Finding objects

• search

• load

2.1.4 Working with objects

• FieldNotLoaded

• references / collections

• load (to get more fields)

• save (only saves changed)

• delete

5

Page 10: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

2.2 API Reference

class workfront.Session(domain, api_key=None, ssl_context=None, protocol=’https’,api_version=’unsupported’, url_template=’{protocol}://{domain}.attask-ondemand.com/attask/api/{api_version}’)

A session for communicating with the Workfront REST API.

Parameters

• domain – Your Workfront domain name.

• api_key – An optional API key to pass with requests made using this session.

• ssl_context – An optional SSLContext to use when communicating with Workfrontvia SSL.

• protocol – The protocol to use, defaults to https.

• api_version – The version of the Workfront API to use, defaults to unsupported,which is the newest available.

• url_template – The template for Workfront URLs into which domain, protocol,and api_version will be interpolated.

Warning: ssl_context will result in exceptions being raised when used under Python 3.4, supportexists in Python 2.7 and Python 3.5 onwards.

api_version = NoneThe APIVersion for the api_version specified.

request(method, path, params=None)The lowest level method for making a request to the Workfront REST API. You should only need to usethis if you need a method that isn’t supported below.

Parameters

• method – The HTTP method to use, eg: GET, POST, PUT.

• path – The path element of the URL for the request, eg: /user.

• params – A dict of parameters to include in the request.

Returns The JSON-decoded data element of the response from Workfront.

get(path, params=None)Perform a method=GET request to the Workfront REST API.

Parameters

• path – The path element of the URL for the request, eg: /user.

• params – A dict of parameters to include in the request.

Returns The JSON-decoded data element of the response from Workfront.

post(path, params=None)Perform a method=POST request to the Workfront REST API.

Parameters

• path – The path element of the URL for the request, eg: /user.

• params – A dict of parameters to include in the request.

Returns The JSON-decoded data element of the response from Workfront.

6 Chapter 2. Detailed Documentation

Page 11: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

put(path, params=None)Perform a method=PUT request to the Workfront REST API.

Parameters

• path – The path element of the URL for the request, eg: /user.

• params – A dict of parameters to include in the request.

Returns The JSON-decoded data element of the response from Workfront.

delete(path, params=None)Perform a method=DELETE request to the Workfront REST API.

Parameters

• path – The path element of the URL for the request, eg: /user.

• params – A dict of parameters to include in the request.

Returns The JSON-decoded data element of the response from Workfront.

login(username, password)Start an ID-based session using the supplied username and password. The resulting sessionID will bepassed for all subsequence requests using this Session.

The session user’s UUID will be stored in Session.user_id.

logout()End the current ID-based session.

get_api_key(username, password)Return the API key for the user with the username and password supplied.

Warning: If the Session is created with an api_key, then that key may always be returned, nomatter what username or password are provided.

search(object_type, fields=None, **parameters)Search for Object instances of the specified type.

Parameters

• object_type – The type of object to search for. Should be obtained from theworkfront.Session.api.

• fields – Additional fields to load() on the returned objects. Nested Object fieldspecifications are supported.

• parameters – The search parameters. See the Workfront documentation for full details.

Returns A list of objects of the object_type specified.

load(object_type, id_or_ids, fields=None)Load one or more Object instances by their UUID.

Parameters

• object_type – The type of object to search for. Should be obtained from theworkfront.Session.api.

• id_or_ids – A string, when a single object is to be loaded, or a sequence of stringswhen multiple objects are to be loaded.

• fields – The fields to load() on each object returned. If not specified, the defaultfields for that object type will be loaded.

2.2. API Reference 7

Page 12: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

Returns If a single id is specified, the loaded object will be returned. If id_or_ids is asequence, a list of objects will be returned.

workfront.session.ONDEMAND_TEMPLATE = ‘{protocol}://{domain}.attask-ondemand.com/attask/api/{api_version}’The default URL template used when creating a Session.

workfront.session.SANDBOX_TEMPLATE = ‘{protocol}://{domain}.attasksandbox.com/attask/api/{api_version}’An alternate URL template that can be used when creating a Session to the Workfront Sandbox.

exception workfront.session.WorkfrontAPIError(data, code)An exception indicating that an error has been returned by Workfront, either in the form of the error key beingprovided in the JSON response, or a non-200 HTTP status code being sent.

code = NoneThe HTTP response code returned by Workfront.

data = NoneThe error returned in the response from Workfront, decoded from JSON if possible, a string otherwise.

class workfront.meta.APIVersion(version)Receptacle for classes for a specific API version. The classes can be obtained from the APIVersion instanceby attribute, eg:

session = Session(...)api = session.apiissue = api.Issue(session, ...)

To find the name of a class your require, consult the modindex or use the search in conjunction with the APIExplorer.

exception workfront.meta.FieldNotLoadedException raised when a field is accessed but has not been loaded.

class workfront.meta.Field(workfront_name)The descriptor used for mapping Workfront fields to attributes of an Object.

When a Field is obtained from an Object, it’s value will be returned, or a FieldNotLoaded exceptionwill be raised if it has not yet been loaded.

When set, a Field will store its value in the Object, to save values back to Workfront, useObject.save().

class workfront.meta.Reference(workfront_name)The descriptor used for mapping Workfront references to attributes of an Object.

When a Reference is obtained from an Object, a referenced object or None, if there is no referenced objectin this field, will be returned. If the referenced object has not yet been loaded, it will be loaded before beingreturned.

A Reference cannot be set, you should instead set the matching _id Field to the id of the object youwish to reference.

class workfront.meta.Collection(workfront_name)The descriptor used for mapping Workfront collections to attributes of an Object.

When a Collection is obtained from an Object, a tuple of objects, which may be empty, is returned. Ifthe collection has not yet been loaded, it will be loaded before being returned.

A Collection cannot be set or modified.

class workfront.meta.Object(session=None, **fields)The base class for objects reflected from the Workfront REST API.

8 Chapter 2. Detailed Documentation

Page 13: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

Objects can be instantiated and then saved in order to create new objects, or retrieved from Workfront usingworkfront.Session.search() or workfront.Session.load().

Wherever fields are mentioned, they may be specified as either Workfront-style camel case names, or thePython-style attribute names they are mapped to.

idThe UUID of this object in Workfront. It will be None if this object has not yet been saved to Workfront.

api_url()The URI of this object in Workfront, suitable for passing to any of the Session methods that generaterequests.

This method cannot be used until the object has been saved to Workfront.

load(*field_names)Load additional fields for this object from Workfront.

Parameters field_names – Either Workfront-style camel case names or the Python-styleattribute names they are mapped to for the fields to be loaded.

save()If this object has not yet been saved to Workfront, create it using all the current fields that have been set.

In other cases, save only the fields that have changed on this object to Workfront.

delete()Delete this object from Workfront.

2.2.1 API versions

The versions listed have been reflected from the relevant Workfront API metadata. The documentation below primarilygives the mapping betwen the API name and the pythonic name. The API Explorer may be an easier way to find thethings.

v4.0 API Reference

class workfront.versions.v40.AccessRule(session=None, **fields)Object for ACSRUL

accessor_idField for accessorID

accessor_obj_codeField for accessorObjCode

ancestor_idField for ancestorID

ancestor_obj_codeField for ancestorObjCode

core_actionField for coreAction

customerReference for customer

customer_idField for customerID

2.2. API Reference 9

Page 14: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

forbidden_actionsField for forbiddenActions

is_inheritedField for isInherited

secondary_actionsField for secondaryActions

security_obj_codeField for securityObjCode

security_obj_idField for securityObjID

class workfront.versions.v40.Approval(session=None, **fields)Object for APPROVAL

access_rulesCollection for accessRules

actual_benefitField for actualBenefit

actual_completion_dateField for actualCompletionDate

actual_costField for actualCost

actual_durationField for actualDuration

actual_duration_expressionField for actualDurationExpression

actual_duration_minutesField for actualDurationMinutes

actual_expense_costField for actualExpenseCost

actual_hours_last_monthField for actualHoursLastMonth

actual_hours_last_three_monthsField for actualHoursLastThreeMonths

actual_hours_this_monthField for actualHoursThisMonth

actual_hours_two_months_agoField for actualHoursTwoMonthsAgo

actual_labor_costField for actualLaborCost

actual_revenueField for actualRevenue

actual_risk_costField for actualRiskCost

10 Chapter 2. Detailed Documentation

Page 15: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

actual_start_dateField for actualStartDate

actual_valueField for actualValue

actual_workField for actualWork

actual_work_requiredField for actualWorkRequired

actual_work_required_expressionField for actualWorkRequiredExpression

age_range_as_stringField for ageRangeAsString

alignmentField for alignment

alignment_score_cardReference for alignmentScoreCard

alignment_score_card_idField for alignmentScoreCardID

alignment_valuesCollection for alignmentValues

all_approved_hoursField for allApprovedHours

all_hoursCollection for allHours

all_prioritiesCollection for allPriorities

all_severitiesCollection for allSeverities

all_statusesCollection for allStatuses

all_unapproved_hoursField for allUnapprovedHours

approval_est_start_dateField for approvalEstStartDate

approval_planned_start_dateField for approvalPlannedStartDate

approval_planned_start_dayField for approvalPlannedStartDay

approval_processReference for approvalProcess

approval_process_idField for approvalProcessID

2.2. API Reference 11

Page 16: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

approval_projected_start_dateField for approvalProjectedStartDate

approver_statusesCollection for approverStatuses

approvers_stringField for approversString

assigned_toReference for assignedTo

assigned_to_idField for assignedToID

assignmentsCollection for assignments

assignments_list_stringField for assignmentsListString

audit_noteField for auditNote

audit_typesField for auditTypes

audit_user_idsField for auditUserIDs

auto_baseline_recur_onField for autoBaselineRecurOn

auto_baseline_recurrence_typeField for autoBaselineRecurrenceType

auto_closure_dateField for autoClosureDate

backlog_orderField for backlogOrder

baselinesCollection for baselines

bccompletion_stateField for BCCompletionState

billed_revenueField for billedRevenue

billing_amountField for billingAmount

billing_recordReference for billingRecord

billing_record_idField for billingRecordID

billing_recordsCollection for billingRecords

12 Chapter 2. Detailed Documentation

Page 17: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

budgetField for budget

budget_statusField for budgetStatus

budgeted_completion_dateField for budgetedCompletionDate

budgeted_costField for budgetedCost

budgeted_hoursField for budgetedHours

budgeted_labor_costField for budgetedLaborCost

budgeted_start_dateField for budgetedStartDate

business_case_status_labelField for businessCaseStatusLabel

can_startField for canStart

categoryReference for category

category_idField for categoryID

childrenCollection for children

colorField for color

commit_dateField for commitDate

commit_date_rangeField for commitDateRange

companyReference for company

company_idField for companyID

completion_pending_dateField for completionPendingDate

completion_typeField for completionType

conditionField for condition

condition_typeField for conditionType

2.2. API Reference 13

Page 18: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

constraint_dateField for constraintDate

converted_op_task_entry_dateField for convertedOpTaskEntryDate

converted_op_task_nameField for convertedOpTaskName

converted_op_task_originatorReference for convertedOpTaskOriginator

converted_op_task_originator_idField for convertedOpTaskOriginatorID

cost_amountField for costAmount

cost_typeField for costType

cpiField for cpi

csiField for csi

currencyField for currency

current_approval_stepReference for currentApprovalStep

current_approval_step_idField for currentApprovalStepID

current_status_durationField for currentStatusDuration

customerReference for customer

customer_idField for customerID

days_lateField for daysLate

default_baselineReference for defaultBaseline

default_baseline_taskReference for defaultBaselineTask

deliverable_score_cardReference for deliverableScoreCard

deliverable_score_card_idField for deliverableScoreCardID

deliverable_success_scoreField for deliverableSuccessScore

14 Chapter 2. Detailed Documentation

Page 19: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

deliverable_success_score_ratioField for deliverableSuccessScoreRatio

deliverable_valuesCollection for deliverableValues

descriptionField for description

display_orderField for displayOrder

documentsCollection for documents

done_statusesCollection for doneStatuses

due_dateField for dueDate

durationField for duration

duration_expressionField for durationExpression

duration_minutesField for durationMinutes

duration_typeField for durationType

duration_unitField for durationUnit

eacField for eac

enable_auto_baselinesField for enableAutoBaselines

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

est_completion_dateField for estCompletionDate

est_start_dateField for estStartDate

estimateField for estimate

exchange_rateReference for exchangeRate

2.2. API Reference 15

Page 20: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

exchange_ratesCollection for exchangeRates

expensesCollection for expenses

ext_ref_idField for extRefID

filter_hour_typesField for filterHourTypes

finance_last_update_dateField for financeLastUpdateDate

first_responseField for firstResponse

fixed_costField for fixedCost

fixed_end_dateField for fixedEndDate

fixed_revenueField for fixedRevenue

fixed_start_dateField for fixedStartDate

groupReference for group

group_idField for groupID

handoff_dateField for handoffDate

has_budget_conflictField for hasBudgetConflict

has_calc_errorField for hasCalcError

has_completion_constraintField for hasCompletionConstraint

has_documentsField for hasDocuments

has_expensesField for hasExpenses

has_messagesField for hasMessages

has_notesField for hasNotes

has_rate_overrideField for hasRateOverride

16 Chapter 2. Detailed Documentation

Page 21: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

has_resolvablesField for hasResolvables

has_start_constraintField for hasStartConstraint

has_timed_notificationsField for hasTimedNotifications

hour_typesCollection for hourTypes

hoursCollection for hours

hours_per_pointField for hoursPerPoint

how_oldField for howOld

indentField for indent

is_agileField for isAgile

is_completeField for isComplete

is_criticalField for isCritical

is_duration_lockedField for isDurationLocked

is_help_deskField for isHelpDesk

is_leveling_excludedField for isLevelingExcluded

is_readyField for isReady

is_work_required_lockedField for isWorkRequiredLocked

iterationReference for iteration

iteration_idField for iterationID

last_calc_dateField for lastCalcDate

last_condition_noteReference for lastConditionNote

last_condition_note_idField for lastConditionNoteID

2.2. API Reference 17

Page 22: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

last_noteReference for lastNote

last_note_idField for lastNoteID

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

leveling_modeField for levelingMode

leveling_start_delayField for levelingStartDelay

leveling_start_delay_expressionField for levelingStartDelayExpression

leveling_start_delay_minutesField for levelingStartDelayMinutes

master_task_idField for masterTaskID

milestoneReference for milestone

milestone_idField for milestoneID

milestone_pathReference for milestonePath

milestone_path_idField for milestonePathID

nameField for name

next_auto_baseline_dateField for nextAutoBaselineDate

number_of_childrenField for numberOfChildren

number_open_op_tasksField for numberOpenOpTasks

olvField for olv

op_task_typeField for opTaskType

op_task_type_labelField for opTaskTypeLabel

18 Chapter 2. Detailed Documentation

Page 23: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

op_tasksCollection for opTasks

open_op_tasksCollection for openOpTasks

optimization_scoreField for optimizationScore

original_durationField for originalDuration

original_work_requiredField for originalWorkRequired

ownerReference for owner

owner_idField for ownerID

owner_privilegesField for ownerPrivileges

parentReference for parent

parent_idField for parentID

parent_lagField for parentLag

parent_lag_typeField for parentLagType

percent_completeField for percentComplete

performance_index_methodField for performanceIndexMethod

personalField for personal

planned_benefitField for plannedBenefit

planned_completion_dateField for plannedCompletionDate

planned_costField for plannedCost

planned_date_alignmentField for plannedDateAlignment

planned_durationField for plannedDuration

planned_duration_minutesField for plannedDurationMinutes

2.2. API Reference 19

Page 24: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

planned_expense_costField for plannedExpenseCost

planned_hours_alignmentField for plannedHoursAlignment

planned_labor_costField for plannedLaborCost

planned_revenueField for plannedRevenue

planned_risk_costField for plannedRiskCost

planned_start_dateField for plannedStartDate

planned_valueField for plannedValue

pop_account_idField for popAccountID

portfolioReference for portfolio

portfolio_idField for portfolioID

portfolio_priorityField for portfolioPriority

predecessor_expressionField for predecessorExpression

predecessorsCollection for predecessors

previous_statusField for previousStatus

primary_assignmentReference for primaryAssignment

priorityField for priority

programReference for program

program_idField for programID

progress_statusField for progressStatus

projectReference for project

project_idField for projectID

20 Chapter 2. Detailed Documentation

Page 25: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

project_user_rolesCollection for projectUserRoles

project_usersCollection for projectUsers

projected_completion_dateField for projectedCompletionDate

projected_duration_minutesField for projectedDurationMinutes

projected_start_dateField for projectedStartDate

queue_defReference for queueDef

queue_def_idField for queueDefID

queue_topicReference for queueTopic

queue_topic_idField for queueTopicID

ratesCollection for rates

recurrence_numberField for recurrenceNumber

recurrence_rule_idField for recurrenceRuleID

reference_numberField for referenceNumber

reference_obj_codeField for referenceObjCode

reference_obj_idField for referenceObjID

rejection_issueReference for rejectionIssue

rejection_issue_idField for rejectionIssueID

remaining_costField for remainingCost

remaining_duration_minutesField for remainingDurationMinutes

remaining_revenueField for remainingRevenue

remaining_risk_costField for remainingRiskCost

2.2. API Reference 21

Page 26: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

reserved_timeReference for reservedTime

reserved_time_idField for reservedTimeID

resolution_timeField for resolutionTime

resolvablesCollection for resolvables

resolve_op_taskReference for resolveOpTask

resolve_op_task_idField for resolveOpTaskID

resolve_projectReference for resolveProject

resolve_project_idField for resolveProjectID

resolve_taskReference for resolveTask

resolve_task_idField for resolveTaskID

resolving_obj_codeField for resolvingObjCode

resolving_obj_idField for resolvingObjID

resource_allocationsCollection for resourceAllocations

resource_poolReference for resourcePool

resource_pool_idField for resourcePoolID

resource_scopeField for resourceScope

revenue_typeField for revenueType

riskField for risk

risk_performance_indexField for riskPerformanceIndex

risksCollection for risks

roiField for roi

22 Chapter 2. Detailed Documentation

Page 27: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

roleReference for role

role_idField for roleID

rolesCollection for roles

routing_rulesCollection for routingRules

scheduleReference for schedule

schedule_idField for scheduleID

schedule_modeField for scheduleMode

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

selected_on_portfolio_optimizerField for selectedOnPortfolioOptimizer

severityField for severity

slack_dateField for slackDate

source_obj_codeField for sourceObjCode

source_obj_idField for sourceObjID

source_taskReference for sourceTask

source_task_idField for sourceTaskID

spiField for spi

sponsorReference for sponsor

sponsor_idField for sponsorID

statusField for status

status_equates_withField for statusEquatesWith

2.2. API Reference 23

Page 28: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

status_updateField for statusUpdate

submitted_byReference for submittedBy

submitted_by_idField for submittedByID

successorsCollection for successors

summary_completion_typeField for summaryCompletionType

task_constraintField for taskConstraint

task_numberField for taskNumber

task_number_predecessor_stringField for taskNumberPredecessorString

tasksCollection for tasks

teamReference for team

team_assignmentReference for teamAssignment

team_idField for teamID

templateReference for template

template_idField for templateID

template_taskReference for templateTask

template_task_idField for templateTaskID

total_hoursField for totalHours

total_op_task_countField for totalOpTaskCount

total_task_countField for totalTaskCount

tracking_modeField for trackingMode

update_typeField for updateType

24 Chapter 2. Detailed Documentation

Page 29: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

updatesCollection for updates

urlField for URL

url_Field for url

versionField for version

wbsField for wbs

workField for work

work_itemReference for workItem

work_requiredField for workRequired

work_required_expressionField for workRequiredExpression

work_unitField for workUnit

class workfront.versions.v40.ApprovalPath(session=None, **fields)Object for ARVPTH

approval_processReference for approvalProcess

approval_process_idField for approvalProcessID

approval_stepsCollection for approvalSteps

customerReference for customer

customer_idField for customerID

duration_minutesField for durationMinutes

duration_unitField for durationUnit

rejected_statusField for rejectedStatus

rejected_status_labelField for rejectedStatusLabel

should_create_issueField for shouldCreateIssue

2.2. API Reference 25

Page 30: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

target_statusField for targetStatus

target_status_labelField for targetStatusLabel

class workfront.versions.v40.ApprovalProcess(session=None, **fields)Object for ARVPRC

approval_obj_codeField for approvalObjCode

approval_pathsCollection for approvalPaths

approval_statusesField for approvalStatuses

customerReference for customer

customer_idField for customerID

descriptionField for description

duration_minutesField for durationMinutes

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

ext_ref_idField for extRefID

is_privateField for isPrivate

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

nameField for name

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

26 Chapter 2. Detailed Documentation

Page 31: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

class workfront.versions.v40.ApprovalStep(session=None, **fields)Object for ARVSTP

approval_pathReference for approvalPath

approval_path_idField for approvalPathID

approval_typeField for approvalType

customerReference for customer

customer_idField for customerID

nameField for name

sequence_numberField for sequenceNumber

step_approversCollection for stepApprovers

class workfront.versions.v40.ApproverStatus(session=None, **fields)Object for ARVSTS

approvable_obj_codeField for approvableObjCode

approvable_obj_idField for approvableObjID

approval_stepReference for approvalStep

approval_step_idField for approvalStepID

approved_byReference for approvedBy

approved_by_idField for approvedByID

customerReference for customer

customer_idField for customerID

is_overriddenField for isOverridden

op_taskReference for opTask

op_task_idField for opTaskID

2.2. API Reference 27

Page 32: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

overridden_userReference for overriddenUser

overridden_user_idField for overriddenUserID

projectReference for project

project_idField for projectID

statusField for status

step_approverReference for stepApprover

step_approver_idField for stepApproverID

taskReference for task

task_idField for taskID

wildcard_userReference for wildcardUser

wildcard_user_idField for wildcardUserID

class workfront.versions.v40.Assignment(session=None, **fields)Object for ASSGN

assigned_byReference for assignedBy

assigned_by_idField for assignedByID

assigned_toReference for assignedTo

assigned_to_idField for assignedToID

assignment_percentField for assignmentPercent

avg_work_per_dayField for avgWorkPerDay

customerReference for customer

customer_idField for customerID

feedback_statusField for feedbackStatus

28 Chapter 2. Detailed Documentation

Page 33: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

is_primaryField for isPrimary

is_team_assignmentField for isTeamAssignment

op_taskReference for opTask

op_task_idField for opTaskID

projectReference for project

project_idField for projectID

roleReference for role

role_idField for roleID

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

statusField for status

taskReference for task

task_idField for taskID

teamReference for team

team_idField for teamID

workField for work

work_itemReference for workItem

work_requiredField for workRequired

work_unitField for workUnit

class workfront.versions.v40.Avatar(session=None, **fields)Object for AVATAR

allowed_actionsField for allowedActions

2.2. API Reference 29

Page 34: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

avatar_dateField for avatarDate

avatar_download_urlField for avatarDownloadURL

avatar_sizeField for avatarSize

avatar_xField for avatarX

avatar_yField for avatarY

handleField for handle

class workfront.versions.v40.BackgroundJob(session=None, **fields)Object for BKGJOB

access_countField for accessCount

changed_objectsField for changedObjects

customerReference for customer

customer_idField for customerID

end_dateField for endDate

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

error_messageField for errorMessage

expiration_dateField for expirationDate

handler_class_nameField for handlerClassName

start_dateField for startDate

statusField for status

class workfront.versions.v40.Baseline(session=None, **fields)Object for BLIN

30 Chapter 2. Detailed Documentation

Page 35: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

actual_completion_dateField for actualCompletionDate

actual_costField for actualCost

actual_duration_minutesField for actualDurationMinutes

actual_start_dateField for actualStartDate

actual_work_requiredField for actualWorkRequired

auto_generatedField for autoGenerated

baseline_tasksCollection for baselineTasks

budgetField for budget

conditionField for condition

cpiField for cpi

csiField for csi

customerReference for customer

customer_idField for customerID

duration_minutesField for durationMinutes

eacField for eac

entry_dateField for entryDate

est_completion_dateField for estCompletionDate

est_start_dateField for estStartDate

is_defaultField for isDefault

nameField for name

percent_completeField for percentComplete

2.2. API Reference 31

Page 36: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

planned_completion_dateField for plannedCompletionDate

planned_costField for plannedCost

planned_start_dateField for plannedStartDate

progress_statusField for progressStatus

projectReference for project

project_idField for projectID

projected_completion_dateField for projectedCompletionDate

projected_start_dateField for projectedStartDate

spiField for spi

work_requiredField for workRequired

class workfront.versions.v40.BaselineTask(session=None, **fields)Object for BSTSK

actual_completion_dateField for actualCompletionDate

actual_costField for actualCost

actual_duration_minutesField for actualDurationMinutes

actual_start_dateField for actualStartDate

actual_work_requiredField for actualWorkRequired

baselineReference for baseline

baseline_idField for baselineID

cpiField for cpi

csiField for csi

customerReference for customer

32 Chapter 2. Detailed Documentation

Page 37: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

customer_idField for customerID

duration_minutesField for durationMinutes

duration_unitField for durationUnit

eacField for eac

entry_dateField for entryDate

est_completion_dateField for estCompletionDate

est_start_dateField for estStartDate

is_defaultField for isDefault

nameField for name

percent_completeField for percentComplete

planned_completion_dateField for plannedCompletionDate

planned_costField for plannedCost

planned_start_dateField for plannedStartDate

progress_statusField for progressStatus

projected_completion_dateField for projectedCompletionDate

projected_start_dateField for projectedStartDate

spiField for spi

taskReference for task

task_idField for taskID

work_requiredField for workRequired

class workfront.versions.v40.BillingRecord(session=None, **fields)Object for BILL

2.2. API Reference 33

Page 38: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

amountField for amount

billable_tasksCollection for billableTasks

billing_dateField for billingDate

customerReference for customer

customer_idField for customerID

descriptionField for description

display_nameField for displayName

expensesCollection for expenses

ext_ref_idField for extRefID

hoursCollection for hours

invoice_idField for invoiceID

other_amountField for otherAmount

po_numberField for poNumber

projectReference for project

project_idField for projectID

statusField for status

class workfront.versions.v40.Category(session=None, **fields)Object for CTGY

cat_obj_codeField for catObjCode

category_parametersCollection for categoryParameters

customerReference for customer

customer_idField for customerID

34 Chapter 2. Detailed Documentation

Page 39: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

descriptionField for description

entered_byReference for enteredBy

entered_by_idField for enteredByID

ext_ref_idField for extRefID

groupReference for group

group_idField for groupID

has_calculated_fieldsField for hasCalculatedFields

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

nameField for name

other_groupsCollection for otherGroups

class workfront.versions.v40.CategoryParameter(session=None, **fields)Object for CTGYPA

categoryReference for category

category_idField for categoryID

category_parameter_expressionReference for categoryParameterExpression

custom_expressionField for customExpression

customerReference for customer

customer_idField for customerID

display_orderField for displayOrder

is_invalid_expressionField for isInvalidExpression

2.2. API Reference 35

Page 40: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

is_requiredField for isRequired

parameterReference for parameter

parameter_groupReference for parameterGroup

parameter_group_idField for parameterGroupID

parameter_idField for parameterID

row_sharedField for rowShared

security_levelField for securityLevel

view_security_levelField for viewSecurityLevel

class workfront.versions.v40.CategoryParameterExpression(session=None, **fields)Object for CTGPEX

category_parameterReference for categoryParameter

custom_expressionField for customExpression

customerReference for customer

customer_idField for customerID

has_finance_fieldsField for hasFinanceFields

class workfront.versions.v40.Company(session=None, **fields)Object for CMPY

calculate_data_extension()The calculateDataExtension action.

categoryReference for category

category_idField for categoryID

customerReference for customer

customer_idField for customerID

entered_byReference for enteredBy

36 Chapter 2. Detailed Documentation

Page 41: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

entered_by_idField for enteredByID

entry_dateField for entryDate

ext_ref_idField for extRefID

has_rate_overrideField for hasRateOverride

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

nameField for name

ratesCollection for rates

class workfront.versions.v40.CustomEnum(session=None, **fields)Object for CSTEM

colorField for color

customerReference for customer

customer_idField for customerID

descriptionField for description

enum_classField for enumClass

equates_withField for equatesWith

ext_ref_idField for extRefID

get_default_op_task_priority_enum()The getDefaultOpTaskPriorityEnum action.

Returns java.lang.Integer

get_default_project_status_enum()The getDefaultProjectStatusEnum action.

Returns string

get_default_severity_enum()The getDefaultSeverityEnum action.

Returns java.lang.Integer

2.2. API Reference 37

Page 42: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

get_default_task_priority_enum()The getDefaultTaskPriorityEnum action.

Returns java.lang.Integer

is_primaryField for isPrimary

labelField for label

valueField for value

value_as_intField for valueAsInt

value_as_stringField for valueAsString

class workfront.versions.v40.Customer(session=None, **fields)Object for CUST

account_rep_idField for accountRepID

addressField for address

address2Field for address2

admin_acct_nameField for adminAcctName

admin_acct_passwordField for adminAcctPassword

api_concurrency_limitField for apiConcurrencyLimit

approval_processesCollection for approvalProcesses

biz_rule_exclusionsField for bizRuleExclusions

categoriesCollection for categories

cityField for city

cloneableField for cloneable

countryField for country

currencyField for currency

custom_enum_typesField for customEnumTypes

38 Chapter 2. Detailed Documentation

Page 43: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

custom_enumsCollection for customEnums

customer_config_map_idField for customerConfigMapID

customer_urlconfig_map_idField for customerURLConfigMapID

dd_svnversionField for ddSVNVersion

demo_baseline_dateField for demoBaselineDate

descriptionField for description

disabled_dateField for disabledDate

document_sizeField for documentSize

documentsCollection for documents

domainField for domain

email_addrField for emailAddr

entry_dateField for entryDate

eval_exp_dateField for evalExpDate

exp_dateField for expDate

expense_typesCollection for expenseTypes

ext_ref_idField for extRefID

external_document_storageField for externalDocumentStorage

external_users_enabledField for externalUsersEnabled

extra_document_storageField for extraDocumentStorage

firstnameField for firstname

full_usersField for fullUsers

2.2. API Reference 39

Page 44: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

goldenField for golden

groupsCollection for groups

has_documentsField for hasDocuments

has_preview_accessField for hasPreviewAccess

has_timed_notificationsField for hasTimedNotifications

help_desk_config_map_idField for helpDeskConfigMapID

hour_typesCollection for hourTypes

inline_java_script_config_map_idField for inlineJavaScriptConfigMapID

is_apienabledField for isAPIEnabled

is_disabledField for isDisabled

is_enterpriseField for isEnterprise

is_marketing_solutions_enabledField for isMarketingSolutionsEnabled

is_migrated_to_anacondaField for isMigratedToAnaconda

is_portal_profile_migratedField for isPortalProfileMigrated

is_soapenabledField for isSOAPEnabled

is_warning_disabledField for isWarningDisabled

journal_field_limitField for journalFieldLimit

last_remind_dateField for lastRemindDate

last_usage_report_dateField for lastUsageReportDate

lastnameField for lastname

layout_templatesCollection for layoutTemplates

40 Chapter 2. Detailed Documentation

Page 45: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

limited_usersField for limitedUsers

localeField for locale

milestone_pathsCollection for milestonePaths

nameField for name

need_license_agreementField for needLicenseAgreement

next_usage_report_dateField for nextUsageReportDate

notification_config_map_idField for notificationConfigMapID

on_demand_optionsField for onDemandOptions

op_task_count_limitField for opTaskCountLimit

overdraft_exp_dateField for overdraftExpDate

parameter_groupsCollection for parameterGroups

parametersCollection for parameters

password_config_map_idField for passwordConfigMapID

phone_numberField for phoneNumber

portfolio_management_config_map_idField for portfolioManagementConfigMapID

postal_codeField for postalCode

project_management_config_map_idField for projectManagementConfigMapID

proof_account_idField for proofAccountID

record_limitField for recordLimit

requestor_usersField for requestorUsers

reseller_idField for resellerID

2.2. API Reference 41

Page 46: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

resource_poolsCollection for resourcePools

review_usersField for reviewUsers

risk_typesCollection for riskTypes

rolesCollection for roles

sandbox_countField for sandboxCount

sandbox_refreshingField for sandboxRefreshing

schedulesCollection for schedules

score_cardsCollection for scoreCards

security_model_typeField for securityModelType

sso_typeField for ssoType

stateField for state

statusField for status

style_sheetField for styleSheet

task_count_limitField for taskCountLimit

team_usersField for teamUsers

time_zoneField for timeZone

timesheet_config_map_idField for timesheetConfigMapID

trialField for trial

ui_config_map_idField for uiConfigMapID

ui_filtersCollection for uiFilters

ui_group_bysCollection for uiGroupBys

42 Chapter 2. Detailed Documentation

Page 47: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

ui_viewsCollection for uiViews

usage_report_attemptsField for usageReportAttempts

use_external_document_storageField for useExternalDocumentStorage

user_invite_config_map_idField for userInviteConfigMapID

welcome_email_addressesField for welcomeEmailAddresses

class workfront.versions.v40.CustomerPreferences(session=None, **fields)Object for CUSTPR

nameField for name

obj_codeField for objCode

possible_valuesField for possibleValues

valueField for value

class workfront.versions.v40.Document(session=None, **fields)Object for DOCU

access_rulesCollection for accessRules

approvalsCollection for approvals

calculate_data_extension()The calculateDataExtension action.

categoryReference for category

category_idField for categoryID

checked_out_byReference for checkedOutBy

checked_out_by_idField for checkedOutByID

current_versionReference for currentVersion

current_version_idField for currentVersionID

customerReference for customer

2.2. API Reference 43

Page 48: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

customer_idField for customerID

descriptionField for description

doc_obj_codeField for docObjCode

document_request_idField for documentRequestID

download_urlField for downloadURL

ext_ref_idField for extRefID

external_integration_typeField for externalIntegrationType

foldersCollection for folders

groupsCollection for groups

handleField for handle

has_notesField for hasNotes

is_dirField for isDir

is_privateField for isPrivate

is_publicField for isPublic

iterationReference for iteration

iteration_idField for iterationID

last_mod_dateField for lastModDate

last_noteReference for lastNote

last_note_idField for lastNoteID

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

44 Chapter 2. Detailed Documentation

Page 49: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

last_updated_by_idField for lastUpdatedByID

master_task_idField for masterTaskID

move(obj_id=None, doc_obj_code=None)The move action.

Parameters

• obj_id – objID (type: string)

• doc_obj_code – docObjCode (type: string)

nameField for name

obj_idField for objID

op_taskReference for opTask

op_task_idField for opTaskID

ownerReference for owner

owner_idField for ownerID

portfolioReference for portfolio

portfolio_idField for portfolioID

programReference for program

program_idField for programID

projectReference for project

project_idField for projectID

public_tokenField for publicToken

reference_obj_codeField for referenceObjCode

reference_obj_idField for referenceObjID

reference_object_nameField for referenceObjectName

release_versionReference for releaseVersion

2.2. API Reference 45

Page 50: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

release_version_idField for releaseVersionID

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

subscribersCollection for subscribers

taskReference for task

task_idField for taskID

templateReference for template

template_idField for templateID

template_taskReference for templateTask

template_task_idField for templateTaskID

top_doc_obj_codeField for topDocObjCode

top_obj_idField for topObjID

userReference for user

user_idField for userID

versionsCollection for versions

class workfront.versions.v40.DocumentApproval(session=None, **fields)Object for DOCAPL

approval_dateField for approvalDate

approverReference for approver

approver_idField for approverID

auto_document_share_idField for autoDocumentShareID

customerReference for customer

46 Chapter 2. Detailed Documentation

Page 51: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

customer_idField for customerID

documentReference for document

document_idField for documentID

noteReference for note

note_idField for noteID

request_dateField for requestDate

requestorReference for requestor

requestor_idField for requestorID

statusField for status

class workfront.versions.v40.DocumentFolder(session=None, **fields)Object for DOCFDR

childrenCollection for children

customerReference for customer

customer_idField for customerID

documentsCollection for documents

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

issueReference for issue

issue_idField for issueID

iterationReference for iteration

iteration_idField for iterationID

2.2. API Reference 47

Page 52: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

nameField for name

parentReference for parent

parent_idField for parentID

portfolioReference for portfolio

portfolio_idField for portfolioID

programReference for program

program_idField for programID

projectReference for project

project_idField for projectID

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

taskReference for task

task_idField for taskID

templateReference for template

template_idField for templateID

template_taskReference for templateTask

template_task_idField for templateTaskID

userReference for user

user_idField for userID

class workfront.versions.v40.DocumentVersion(session=None, **fields)Object for DOCV

customerReference for customer

48 Chapter 2. Detailed Documentation

Page 53: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

customer_idField for customerID

doc_sizeField for docSize

documentReference for document

document_idField for documentID

document_type_labelField for documentTypeLabel

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

extField for ext

external_download_urlField for externalDownloadURL

external_integration_typeField for externalIntegrationType

external_preview_urlField for externalPreviewURL

external_save_locationField for externalSaveLocation

external_storage_idField for externalStorageID

file_nameField for fileName

format_doc_sizeField for formatDocSize

format_entry_dateField for formatEntryDate

handleField for handle

is_proofableField for isProofable

proof_idField for proofID

proof_statusField for proofStatus

2.2. API Reference 49

Page 54: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

versionField for version

class workfront.versions.v40.ExchangeRate(session=None, **fields)Object for EXRATE

currencyField for currency

customerReference for customer

customer_idField for customerID

ext_ref_idField for extRefID

projectReference for project

project_idField for projectID

rateField for rate

templateReference for template

template_idField for templateID

class workfront.versions.v40.Expense(session=None, **fields)Object for EXPNS

actual_amountField for actualAmount

actual_unit_amountField for actualUnitAmount

billing_recordReference for billingRecord

billing_record_idField for billingRecordID

calculate_data_extension()The calculateDataExtension action.

categoryReference for category

category_idField for categoryID

customerReference for customer

customer_idField for customerID

50 Chapter 2. Detailed Documentation

Page 55: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

descriptionField for description

effective_dateField for effectiveDate

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

exp_obj_codeField for expObjCode

expense_typeReference for expenseType

expense_type_idField for expenseTypeID

ext_ref_idField for extRefID

is_billableField for isBillable

is_reimbursableField for isReimbursable

is_reimbursedField for isReimbursed

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

master_task_idField for masterTaskID

move(obj_id=None, exp_obj_code=None)The move action.

Parameters

• obj_id – objID (type: string)

• exp_obj_code – expObjCode (type: string)

obj_idField for objID

planned_amountField for plannedAmount

planned_dateField for plannedDate

2.2. API Reference 51

Page 56: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

planned_unit_amountField for plannedUnitAmount

projectReference for project

project_idField for projectID

reference_obj_codeField for referenceObjCode

reference_obj_idField for referenceObjID

reference_object_nameField for referenceObjectName

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

taskReference for task

task_idField for taskID

templateReference for template

template_idField for templateID

template_taskReference for templateTask

template_task_idField for templateTaskID

top_obj_codeField for topObjCode

top_obj_idField for topObjID

top_reference_obj_codeField for topReferenceObjCode

top_reference_obj_idField for topReferenceObjID

class workfront.versions.v40.ExpenseType(session=None, **fields)Object for EXPTYP

app_global_idField for appGlobalID

customerReference for customer

52 Chapter 2. Detailed Documentation

Page 57: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

customer_idField for customerID

descriptionField for description

description_keyField for descriptionKey

display_perField for displayPer

display_rate_unitField for displayRateUnit

ext_ref_idField for extRefID

nameField for name

name_keyField for nameKey

obj_idField for objID

obj_obj_codeField for objObjCode

rateField for rate

rate_unitField for rateUnit

class workfront.versions.v40.Favorite(session=None, **fields)Object for FVRITE

customerReference for customer

customer_idField for customerID

nameField for name

obj_idField for objID

obj_obj_codeField for objObjCode

userReference for user

user_idField for userID

class workfront.versions.v40.FinancialData(session=None, **fields)Object for FINDAT

2.2. API Reference 53

Page 58: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

actual_expense_costField for actualExpenseCost

actual_fixed_revenueField for actualFixedRevenue

actual_labor_costField for actualLaborCost

actual_labor_cost_hoursField for actualLaborCostHours

actual_labor_revenueField for actualLaborRevenue

allocationdateField for allocationdate

customerReference for customer

customer_idField for customerID

fixed_costField for fixedCost

is_splitField for isSplit

planned_expense_costField for plannedExpenseCost

planned_fixed_revenueField for plannedFixedRevenue

planned_labor_costField for plannedLaborCost

planned_labor_cost_hoursField for plannedLaborCostHours

planned_labor_revenueField for plannedLaborRevenue

projectReference for project

project_idField for projectID

total_actual_costField for totalActualCost

total_actual_revenueField for totalActualRevenue

total_planned_costField for totalPlannedCost

total_planned_revenueField for totalPlannedRevenue

54 Chapter 2. Detailed Documentation

Page 59: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

total_variance_costField for totalVarianceCost

total_variance_revenueField for totalVarianceRevenue

variance_expense_costField for varianceExpenseCost

variance_labor_costField for varianceLaborCost

variance_labor_cost_hoursField for varianceLaborCostHours

variance_labor_revenueField for varianceLaborRevenue

class workfront.versions.v40.Group(session=None, **fields)Object for GROUP

customerReference for customer

customer_idField for customerID

descriptionField for description

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

ext_ref_idField for extRefID

nameField for name

class workfront.versions.v40.Hour(session=None, **fields)Object for HOUR

actual_costField for actualCost

approved_byReference for approvedBy

approved_by_idField for approvedByID

approved_on_dateField for approvedOnDate

billing_recordReference for billingRecord

2.2. API Reference 55

Page 60: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

billing_record_idField for billingRecordID

customerReference for customer

customer_idField for customerID

descriptionField for description

dup_idField for dupID

entry_dateField for entryDate

ext_ref_idField for extRefID

has_rate_overrideField for hasRateOverride

hour_typeReference for hourType

hour_type_idField for hourTypeID

hoursField for hours

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

op_taskReference for opTask

op_task_idField for opTaskID

ownerReference for owner

owner_idField for ownerID

projectReference for project

project_idField for projectID

project_overheadReference for projectOverhead

56 Chapter 2. Detailed Documentation

Page 61: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

project_overhead_idField for projectOverheadID

reference_obj_codeField for referenceObjCode

reference_obj_idField for referenceObjID

resource_revenueField for resourceRevenue

roleReference for role

role_idField for roleID

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

statusField for status

taskReference for task

task_idField for taskID

timesheetReference for timesheet

timesheet_idField for timesheetID

class workfront.versions.v40.HourType(session=None, **fields)Object for HOURT

app_global_idField for appGlobalID

count_as_revenueField for countAsRevenue

customerReference for customer

customer_idField for customerID

descriptionField for description

description_keyField for descriptionKey

display_obj_obj_codeField for displayObjObjCode

2.2. API Reference 57

Page 62: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

ext_ref_idField for extRefID

is_activeField for isActive

nameField for name

name_keyField for nameKey

obj_idField for objID

obj_obj_codeField for objObjCode

overhead_typeField for overheadType

scopeField for scope

usersCollection for users

class workfront.versions.v40.Issue(session=None, **fields)Object for OPTASK

accept_work()The acceptWork action.

access_rulesCollection for accessRules

actual_completion_dateField for actualCompletionDate

actual_costField for actualCost

actual_start_dateField for actualStartDate

actual_work_requiredField for actualWorkRequired

actual_work_required_expressionField for actualWorkRequiredExpression

add_comment(text)Add a comment to the current object containing the supplied text.

The new Comment instance is returned, it does not need to be saved.

age_range_as_stringField for ageRangeAsString

all_prioritiesCollection for allPriorities

all_severitiesCollection for allSeverities

58 Chapter 2. Detailed Documentation

Page 63: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

all_statusesCollection for allStatuses

approval_est_start_dateField for approvalEstStartDate

approval_planned_start_dateField for approvalPlannedStartDate

approval_planned_start_dayField for approvalPlannedStartDay

approval_processReference for approvalProcess

approval_process_idField for approvalProcessID

approval_projected_start_dateField for approvalProjectedStartDate

approve_approval(user_id=None, username=None, password=None, audit_note=None, au-dit_user_ids=None, send_note_as_email=None)

The approveApproval action.

Parameters

• user_id – userID (type: string)

• username – username (type: string)

• password – password (type: string)

• audit_note – auditNote (type: string)

• audit_user_ids – auditUserIDs (type: string[])

• send_note_as_email – sendNoteAsEmail (type: boolean)

approver_statusesCollection for approverStatuses

approvers_stringField for approversString

assign(obj_id=None, obj_code=None)The assign action.

Parameters

• obj_id – objID (type: string)

• obj_code – objCode (type: string)

assigned_toReference for assignedTo

assigned_to_idField for assignedToID

assignmentsCollection for assignments

audit_typesField for auditTypes

2.2. API Reference 59

Page 64: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

auto_closure_dateField for autoClosureDate

calculate_data_extension()The calculateDataExtension action.

can_startField for canStart

categoryReference for category

category_idField for categoryID

commit_dateField for commitDate

commit_date_rangeField for commitDateRange

conditionField for condition

convert_to_task()Convert this issue to a task. The newly converted task will be returned, it does not need to be saved.

current_approval_stepReference for currentApprovalStep

current_approval_step_idField for currentApprovalStepID

current_status_durationField for currentStatusDuration

customerReference for customer

customer_idField for customerID

descriptionField for description

documentsCollection for documents

done_statusesCollection for doneStatuses

due_dateField for dueDate

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

60 Chapter 2. Detailed Documentation

Page 65: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

ext_ref_idField for extRefID

first_responseField for firstResponse

has_documentsField for hasDocuments

has_messagesField for hasMessages

has_notesField for hasNotes

has_resolvablesField for hasResolvables

has_timed_notificationsField for hasTimedNotifications

hoursCollection for hours

how_oldField for howOld

is_completeField for isComplete

is_help_deskField for isHelpDesk

last_condition_noteReference for lastConditionNote

last_condition_note_idField for lastConditionNoteID

last_noteReference for lastNote

last_note_idField for lastNoteID

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

mark_done(status=None)The markDone action.

Parameters status – status (type: string)

mark_not_done(assignment_id=None)The markNotDone action.

Parameters assignment_id – assignmentID (type: string)

2.2. API Reference 61

Page 66: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

move(project_id=None)The move action.

Parameters project_id – projectID (type: string)

move_to_task(project_id=None, parent_id=None)The moveToTask action.

Parameters

• project_id – projectID (type: string)

• parent_id – parentID (type: string)

nameField for name

number_of_childrenField for numberOfChildren

op_task_typeField for opTaskType

op_task_type_labelField for opTaskTypeLabel

ownerReference for owner

owner_idField for ownerID

parentReference for parent

planned_completion_dateField for plannedCompletionDate

planned_date_alignmentField for plannedDateAlignment

planned_hours_alignmentField for plannedHoursAlignment

planned_start_dateField for plannedStartDate

previous_statusField for previousStatus

primary_assignmentReference for primaryAssignment

priorityField for priority

projectReference for project

project_idField for projectID

projected_duration_minutesField for projectedDurationMinutes

62 Chapter 2. Detailed Documentation

Page 67: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

projected_start_dateField for projectedStartDate

queue_topicReference for queueTopic

queue_topic_idField for queueTopicID

recall_approval()The recallApproval action.

reference_numberField for referenceNumber

reference_obj_codeField for referenceObjCode

reference_obj_idField for referenceObjID

reject_approval(user_id=None, username=None, password=None, audit_note=None, au-dit_user_ids=None, send_note_as_email=None)

The rejectApproval action.

Parameters

• user_id – userID (type: string)

• username – username (type: string)

• password – password (type: string)

• audit_note – auditNote (type: string)

• audit_user_ids – auditUserIDs (type: string[])

• send_note_as_email – sendNoteAsEmail (type: boolean)

rejection_issueReference for rejectionIssue

rejection_issue_idField for rejectionIssueID

remaining_duration_minutesField for remainingDurationMinutes

reply_to_assignment(note_text=None, commit_date=None)The replyToAssignment action.

Parameters

• note_text – noteText (type: string)

• commit_date – commitDate (type: dateTime)

resolution_timeField for resolutionTime

resolvablesCollection for resolvables

resolve_op_taskReference for resolveOpTask

2.2. API Reference 63

Page 68: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

resolve_op_task_idField for resolveOpTaskID

resolve_projectReference for resolveProject

resolve_project_idField for resolveProjectID

resolve_taskReference for resolveTask

resolve_task_idField for resolveTaskID

resolving_obj_codeField for resolvingObjCode

resolving_obj_idField for resolvingObjID

roleReference for role

role_idField for roleID

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

severityField for severity

source_obj_codeField for sourceObjCode

source_obj_idField for sourceObjID

source_taskReference for sourceTask

source_task_idField for sourceTaskID

statusField for status

status_updateField for statusUpdate

submitted_byReference for submittedBy

submitted_by_idField for submittedByID

teamReference for team

64 Chapter 2. Detailed Documentation

Page 69: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

team_assignmentReference for teamAssignment

team_idField for teamID

unaccept_work()The unacceptWork action.

unassign(user_id=None)The unassign action.

Parameters user_id – userID (type: string)

updatesCollection for updates

urlField for url

work_itemReference for workItem

work_requiredField for workRequired

work_required_expressionField for workRequiredExpression

class workfront.versions.v40.Iteration(session=None, **fields)Object for ITRN

capacityField for capacity

categoryReference for category

category_idField for categoryID

customerReference for customer

customer_idField for customerID

documentsCollection for documents

end_dateField for endDate

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

estimate_completedField for estimateCompleted

2.2. API Reference 65

Page 70: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

focus_factorField for focusFactor

goalField for goal

has_documentsField for hasDocuments

has_notesField for hasNotes

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

nameField for name

ownerReference for owner

owner_idField for ownerID

percent_completeField for percentComplete

start_dateField for startDate

statusField for status

target_percent_completeField for targetPercentComplete

task_idsField for taskIDs

teamReference for team

team_idField for teamID

total_estimateField for totalEstimate

urlField for URL

class workfront.versions.v40.JournalEntry(session=None, **fields)Object for JRNLE

assignmentReference for assignment

66 Chapter 2. Detailed Documentation

Page 71: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

assignment_idField for assignmentID

aux1Field for aux1

aux2Field for aux2

aux3Field for aux3

billing_recordReference for billingRecord

billing_record_idField for billingRecordID

change_typeField for changeType

customerReference for customer

customer_idField for customerID

documentReference for document

document_approvalReference for documentApproval

document_approval_idField for documentApprovalID

document_idField for documentID

document_share_idField for documentShareID

duration_minutesField for durationMinutes

edited_byReference for editedBy

edited_by_idField for editedByID

entry_dateField for entryDate

expenseReference for expense

expense_idField for expenseID

ext_ref_idField for extRefID

2.2. API Reference 67

Page 72: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

field_nameField for fieldName

flagsField for flags

hourReference for hour

hour_idField for hourID

like()The like action.

new_date_valField for newDateVal

new_number_valField for newNumberVal

new_text_valField for newTextVal

num_likesField for numLikes

num_repliesField for numReplies

obj_idField for objID

obj_obj_codeField for objObjCode

old_date_valField for oldDateVal

old_number_valField for oldNumberVal

old_text_valField for oldTextVal

op_taskReference for opTask

op_task_idField for opTaskID

portfolioReference for portfolio

portfolio_idField for portfolioID

programReference for program

program_idField for programID

68 Chapter 2. Detailed Documentation

Page 73: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

projectReference for project

project_idField for projectID

repliesCollection for replies

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

sub_obj_codeField for subObjCode

sub_obj_idField for subObjID

taskReference for task

task_idField for taskID

templateReference for template

template_idField for templateID

timesheetReference for timesheet

timesheet_idField for timesheetID

top_obj_codeField for topObjCode

top_obj_idField for topObjID

unlike()The unlike action.

userReference for user

user_idField for userID

class workfront.versions.v40.LayoutTemplate(session=None, **fields)Object for LYTMPL

app_global_idField for appGlobalID

customerReference for customer

2.2. API Reference 69

Page 74: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

customer_idField for customerID

default_nav_itemField for defaultNavItem

descriptionField for description

description_keyField for descriptionKey

ext_ref_idField for extRefID

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

license_typeField for licenseType

linked_rolesCollection for linkedRoles

linked_teamsCollection for linkedTeams

linked_usersCollection for linkedUsers

nameField for name

name_keyField for nameKey

nav_barField for navBar

nav_itemsField for navItems

obj_idField for objID

obj_obj_codeField for objObjCode

ui_filtersCollection for uiFilters

ui_group_bysCollection for uiGroupBys

ui_viewsCollection for uiViews

70 Chapter 2. Detailed Documentation

Page 75: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

class workfront.versions.v40.MessageArg(session=None, **fields)Object for MSGARG

allowed_actionsField for allowedActions

colorField for color

hrefField for href

objcodeField for objcode

objidField for objid

textField for text

typeField for type

class workfront.versions.v40.Milestone(session=None, **fields)Object for MILE

colorField for color

customerReference for customer

customer_idField for customerID

descriptionField for description

ext_ref_idField for extRefID

milestone_pathReference for milestonePath

milestone_path_idField for milestonePathID

nameField for name

sequenceField for sequence

class workfront.versions.v40.MilestonePath(session=None, **fields)Object for MPATH

customerReference for customer

customer_idField for customerID

2.2. API Reference 71

Page 76: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

descriptionField for description

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

ext_ref_idField for extRefID

groupsCollection for groups

milestonesCollection for milestones

nameField for name

class workfront.versions.v40.NonWorkDay(session=None, **fields)Object for NONWKD

customerReference for customer

customer_idField for customerID

non_work_dateField for nonWorkDate

obj_idField for objID

obj_obj_codeField for objObjCode

scheduleReference for schedule

schedule_dayField for scheduleDay

schedule_idField for scheduleID

userReference for user

user_idField for userID

class workfront.versions.v40.Note(session=None, **fields)Object for NOTE

add_comment(text)Add a comment to this comment.

The new Comment instance is returned, it does not need to be saved.

72 Chapter 2. Detailed Documentation

Page 77: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

attach_documentReference for attachDocument

attach_document_idField for attachDocumentID

attach_obj_codeField for attachObjCode

attach_obj_idField for attachObjID

attach_op_taskReference for attachOpTask

attach_op_task_idField for attachOpTaskID

audit_textField for auditText

audit_typeField for auditType

customerReference for customer

customer_idField for customerID

documentReference for document

document_idField for documentID

email_usersField for emailUsers

entry_dateField for entryDate

ext_ref_idField for extRefID

format_entry_dateField for formatEntryDate

has_repliesField for hasReplies

indentField for indent

is_deletedField for isDeleted

is_messageField for isMessage

is_privateField for isPrivate

2.2. API Reference 73

Page 78: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

is_replyField for isReply

iterationReference for iteration

iteration_idField for iterationID

like()The like action.

note_obj_codeField for noteObjCode

note_textField for noteText

num_likesField for numLikes

num_repliesField for numReplies

obj_idField for objID

op_taskReference for opTask

op_task_idField for opTaskID

ownerReference for owner

owner_idField for ownerID

parent_endorsement_idField for parentEndorsementID

parent_journal_entryReference for parentJournalEntry

parent_journal_entry_idField for parentJournalEntryID

parent_noteReference for parentNote

parent_note_idField for parentNoteID

portfolioReference for portfolio

portfolio_idField for portfolioID

programReference for program

74 Chapter 2. Detailed Documentation

Page 79: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

program_idField for programID

projectReference for project

project_idField for projectID

reference_object_nameField for referenceObjectName

repliesCollection for replies

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

subjectField for subject

tagsCollection for tags

taskReference for task

task_idField for taskID

templateReference for template

template_idField for templateID

template_taskReference for templateTask

template_task_idField for templateTaskID

thread_dateField for threadDate

thread_idField for threadID

timesheetReference for timesheet

timesheet_idField for timesheetID

top_note_obj_codeField for topNoteObjCode

top_obj_idField for topObjID

2.2. API Reference 75

Page 80: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

top_reference_object_nameField for topReferenceObjectName

unlike()The unlike action.

userReference for user

user_idField for userID

class workfront.versions.v40.NoteTag(session=None, **fields)Object for NTAG

customerReference for customer

customer_idField for customerID

lengthField for length

noteReference for note

note_idField for noteID

obj_idField for objID

obj_obj_codeField for objObjCode

reference_object_nameField for referenceObjectName

start_idxField for startIdx

teamReference for team

team_idField for teamID

userReference for user

user_idField for userID

class workfront.versions.v40.Parameter(session=None, **fields)Object for PARAM

customerReference for customer

customer_idField for customerID

76 Chapter 2. Detailed Documentation

Page 81: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

data_typeField for dataType

descriptionField for description

display_sizeField for displaySize

display_typeField for displayType

ext_ref_idField for extRefID

format_constraintField for formatConstraint

is_requiredField for isRequired

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

nameField for name

parameter_optionsCollection for parameterOptions

class workfront.versions.v40.ParameterGroup(session=None, **fields)Object for PGRP

customerReference for customer

customer_idField for customerID

descriptionField for description

display_orderField for displayOrder

ext_ref_idField for extRefID

is_defaultField for isDefault

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

2.2. API Reference 77

Page 82: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

last_updated_by_idField for lastUpdatedByID

nameField for name

class workfront.versions.v40.ParameterOption(session=None, **fields)Object for POPT

customerReference for customer

customer_idField for customerID

display_orderField for displayOrder

ext_ref_idField for extRefID

is_defaultField for isDefault

is_hiddenField for isHidden

labelField for label

parameterReference for parameter

parameter_idField for parameterID

valueField for value

class workfront.versions.v40.Portfolio(session=None, **fields)Object for PORT

access_rulesCollection for accessRules

alignedField for aligned

alignment_score_cardReference for alignmentScoreCard

alignment_score_card_idField for alignmentScoreCardID

audit_typesField for auditTypes

budgetField for budget

calculate_data_extension()The calculateDataExtension action.

78 Chapter 2. Detailed Documentation

Page 83: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

categoryReference for category

category_idField for categoryID

currencyField for currency

customerReference for customer

customer_idField for customerID

descriptionField for description

documentsCollection for documents

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

ext_ref_idField for extRefID

groupsCollection for groups

has_documentsField for hasDocuments

has_messagesField for hasMessages

has_notesField for hasNotes

is_activeField for isActive

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

nameField for name

net_valueField for netValue

2.2. API Reference 79

Page 84: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

on_budgetField for onBudget

on_timeField for onTime

ownerReference for owner

owner_idField for ownerID

programsCollection for programs

projectsCollection for projects

roiField for roi

class workfront.versions.v40.Predecessor(session=None, **fields)Object for PRED

customerReference for customer

customer_idField for customerID

is_cpField for isCP

is_enforcedField for isEnforced

lag_daysField for lagDays

lag_typeField for lagType

predecessorReference for predecessor

predecessor_idField for predecessorID

predecessor_typeField for predecessorType

successorReference for successor

successor_idField for successorID

class workfront.versions.v40.Program(session=None, **fields)Object for PRGM

access_rulesCollection for accessRules

80 Chapter 2. Detailed Documentation

Page 85: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

audit_typesField for auditTypes

calculate_data_extension()The calculateDataExtension action.

categoryReference for category

category_idField for categoryID

customerReference for customer

customer_idField for customerID

descriptionField for description

documentsCollection for documents

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

ext_ref_idField for extRefID

has_documentsField for hasDocuments

has_messagesField for hasMessages

has_notesField for hasNotes

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

move(portfolio_id=None, options=None)The move action.

Parameters

• portfolio_id – portfolioID (type: string)

• options – options (type: string[])

nameField for name

2.2. API Reference 81

Page 86: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

ownerReference for owner

owner_idField for ownerID

portfolioReference for portfolio

portfolio_idField for portfolioID

projectsCollection for projects

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

class workfront.versions.v40.Project(session=None, **fields)Object for PROJ

access_rulesCollection for accessRules

actual_benefitField for actualBenefit

actual_completion_dateField for actualCompletionDate

actual_costField for actualCost

actual_duration_expressionField for actualDurationExpression

actual_duration_minutesField for actualDurationMinutes

actual_expense_costField for actualExpenseCost

actual_hours_last_monthField for actualHoursLastMonth

actual_hours_last_three_monthsField for actualHoursLastThreeMonths

actual_hours_this_monthField for actualHoursThisMonth

actual_hours_two_months_agoField for actualHoursTwoMonthsAgo

actual_labor_costField for actualLaborCost

actual_revenueField for actualRevenue

82 Chapter 2. Detailed Documentation

Page 87: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

actual_risk_costField for actualRiskCost

actual_start_dateField for actualStartDate

actual_valueField for actualValue

actual_work_requiredField for actualWorkRequired

actual_work_required_expressionField for actualWorkRequiredExpression

alignmentField for alignment

alignment_score_cardReference for alignmentScoreCard

alignment_score_card_idField for alignmentScoreCardID

alignment_valuesCollection for alignmentValues

all_approved_hoursField for allApprovedHours

all_hoursCollection for allHours

all_prioritiesCollection for allPriorities

all_statusesCollection for allStatuses

all_unapproved_hoursField for allUnapprovedHours

approval_est_start_dateField for approvalEstStartDate

approval_planned_start_dateField for approvalPlannedStartDate

approval_planned_start_dayField for approvalPlannedStartDay

approval_processReference for approvalProcess

approval_process_idField for approvalProcessID

approval_projected_start_dateField for approvalProjectedStartDate

approve_approval(user_id=None, approval_username=None, approval_password=None, au-dit_note=None, audit_user_ids=None, send_note_as_email=None)

The approveApproval action.

Parameters

2.2. API Reference 83

Page 88: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

• user_id – userID (type: string)

• approval_username – approvalUsername (type: string)

• approval_password – approvalPassword (type: string)

• audit_note – auditNote (type: string)

• audit_user_ids – auditUserIDs (type: string[])

• send_note_as_email – sendNoteAsEmail (type: boolean)

approver_statusesCollection for approverStatuses

approvers_stringField for approversString

attach_template(template_id=None, predecessor_task_id=None, parent_task_id=None, ex-clude_template_task_ids=None, options=None)

The attachTemplate action.

Parameters

• template_id – templateID (type: string)

• predecessor_task_id – predecessorTaskID (type: string)

• parent_task_id – parentTaskID (type: string)

• exclude_template_task_ids – excludeTemplateTaskIDs (type: string[])

• options – options (type: string[])

Returns string

audit_typesField for auditTypes

auto_baseline_recur_onField for autoBaselineRecurOn

auto_baseline_recurrence_typeField for autoBaselineRecurrenceType

baselinesCollection for baselines

bccompletion_stateField for BCCompletionState

billed_revenueField for billedRevenue

billing_recordsCollection for billingRecords

budgetField for budget

budget_statusField for budgetStatus

budgeted_completion_dateField for budgetedCompletionDate

84 Chapter 2. Detailed Documentation

Page 89: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

budgeted_costField for budgetedCost

budgeted_hoursField for budgetedHours

budgeted_labor_costField for budgetedLaborCost

budgeted_start_dateField for budgetedStartDate

business_case_status_labelField for businessCaseStatusLabel

calculate_data_extension()The calculateDataExtension action.

calculate_finance()The calculateFinance action.

calculate_timeline()The calculateTimeline action.

categoryReference for category

category_idField for categoryID

companyReference for company

company_idField for companyID

completion_typeField for completionType

conditionField for condition

condition_typeField for conditionType

converted_op_task_entry_dateField for convertedOpTaskEntryDate

converted_op_task_nameField for convertedOpTaskName

converted_op_task_originatorReference for convertedOpTaskOriginator

converted_op_task_originator_idField for convertedOpTaskOriginatorID

cpiField for cpi

csiField for csi

2.2. API Reference 85

Page 90: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

currencyField for currency

current_approval_stepReference for currentApprovalStep

current_approval_step_idField for currentApprovalStepID

customerReference for customer

customer_idField for customerID

default_baselineReference for defaultBaseline

deliverable_score_cardReference for deliverableScoreCard

deliverable_score_card_idField for deliverableScoreCardID

deliverable_success_scoreField for deliverableSuccessScore

deliverable_success_score_ratioField for deliverableSuccessScoreRatio

deliverable_valuesCollection for deliverableValues

descriptionField for description

display_orderField for displayOrder

documentsCollection for documents

duration_expressionField for durationExpression

duration_minutesField for durationMinutes

eacField for eac

enable_auto_baselinesField for enableAutoBaselines

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

86 Chapter 2. Detailed Documentation

Page 91: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

est_completion_dateField for estCompletionDate

est_start_dateField for estStartDate

exchange_rateReference for exchangeRate

exchange_ratesCollection for exchangeRates

expensesCollection for expenses

ext_ref_idField for extRefID

filter_hour_typesField for filterHourTypes

finance_last_update_dateField for financeLastUpdateDate

fixed_costField for fixedCost

fixed_end_dateField for fixedEndDate

fixed_revenueField for fixedRevenue

fixed_start_dateField for fixedStartDate

groupReference for group

group_idField for groupID

has_budget_conflictField for hasBudgetConflict

has_calc_errorField for hasCalcError

has_completion_constraintField for hasCompletionConstraint

has_documentsField for hasDocuments

has_expensesField for hasExpenses

has_messagesField for hasMessages

has_notesField for hasNotes

2.2. API Reference 87

Page 92: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

has_rate_overrideField for hasRateOverride

has_resolvablesField for hasResolvables

has_start_constraintField for hasStartConstraint

has_timed_notificationsField for hasTimedNotifications

hour_typesCollection for hourTypes

hoursCollection for hours

last_calc_dateField for lastCalcDate

last_condition_noteReference for lastConditionNote

last_condition_note_idField for lastConditionNoteID

last_noteReference for lastNote

last_note_idField for lastNoteID

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

leveling_modeField for levelingMode

milestone_pathReference for milestonePath

milestone_path_idField for milestonePathID

nameField for name

next_auto_baseline_dateField for nextAutoBaselineDate

number_open_op_tasksField for numberOpenOpTasks

olvField for olv

88 Chapter 2. Detailed Documentation

Page 93: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

open_op_tasksCollection for openOpTasks

optimization_scoreField for optimizationScore

ownerReference for owner

owner_idField for ownerID

owner_privilegesField for ownerPrivileges

percent_completeField for percentComplete

performance_index_methodField for performanceIndexMethod

personalField for personal

planned_benefitField for plannedBenefit

planned_completion_dateField for plannedCompletionDate

planned_costField for plannedCost

planned_date_alignmentField for plannedDateAlignment

planned_expense_costField for plannedExpenseCost

planned_hours_alignmentField for plannedHoursAlignment

planned_labor_costField for plannedLaborCost

planned_revenueField for plannedRevenue

planned_risk_costField for plannedRiskCost

planned_start_dateField for plannedStartDate

planned_valueField for plannedValue

pop_account_idField for popAccountID

portfolioReference for portfolio

2.2. API Reference 89

Page 94: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

portfolio_idField for portfolioID

portfolio_priorityField for portfolioPriority

previous_statusField for previousStatus

priorityField for priority

programReference for program

program_idField for programID

progress_statusField for progressStatus

projectReference for project

project_user_rolesCollection for projectUserRoles

project_usersCollection for projectUsers

projected_completion_dateField for projectedCompletionDate

projected_start_dateField for projectedStartDate

queue_defReference for queueDef

queue_def_idField for queueDefID

ratesCollection for rates

recall_approval()The recallApproval action.

reference_numberField for referenceNumber

reject_approval(user_id=None, approval_username=None, approval_password=None, au-dit_note=None, audit_user_ids=None, send_note_as_email=None)

The rejectApproval action.

Parameters

• user_id – userID (type: string)

• approval_username – approvalUsername (type: string)

• approval_password – approvalPassword (type: string)

• audit_note – auditNote (type: string)

• audit_user_ids – auditUserIDs (type: string[])

90 Chapter 2. Detailed Documentation

Page 95: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

• send_note_as_email – sendNoteAsEmail (type: boolean)

rejection_issueReference for rejectionIssue

rejection_issue_idField for rejectionIssueID

remaining_costField for remainingCost

remaining_revenueField for remainingRevenue

remaining_risk_costField for remainingRiskCost

resolvablesCollection for resolvables

resource_allocationsCollection for resourceAllocations

resource_poolReference for resourcePool

resource_pool_idField for resourcePoolID

riskField for risk

risk_performance_indexField for riskPerformanceIndex

risksCollection for risks

roiField for roi

rolesCollection for roles

routing_rulesCollection for routingRules

scheduleReference for schedule

schedule_idField for scheduleID

schedule_modeField for scheduleMode

selected_on_portfolio_optimizerField for selectedOnPortfolioOptimizer

set_budget_to_schedule()The setBudgetToSchedule action.

spiField for spi

2.2. API Reference 91

Page 96: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

sponsorReference for sponsor

sponsor_idField for sponsorID

statusField for status

status_updateField for statusUpdate

submitted_byReference for submittedBy

submitted_by_idField for submittedByID

summary_completion_typeField for summaryCompletionType

tasksCollection for tasks

templateReference for template

template_idField for templateID

total_hoursField for totalHours

total_op_task_countField for totalOpTaskCount

total_task_countField for totalTaskCount

update_typeField for updateType

updatesCollection for updates

urlField for URL

versionField for version

work_requiredField for workRequired

work_required_expressionField for workRequiredExpression

class workfront.versions.v40.ProjectUser(session=None, **fields)Object for PRTU

customerReference for customer

92 Chapter 2. Detailed Documentation

Page 97: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

customer_idField for customerID

projectReference for project

project_idField for projectID

userReference for user

user_idField for userID

class workfront.versions.v40.ProjectUserRole(session=None, **fields)Object for PTEAM

customerReference for customer

customer_idField for customerID

projectReference for project

project_idField for projectID

roleReference for role

role_idField for roleID

userReference for user

user_idField for userID

class workfront.versions.v40.QueueDef(session=None, **fields)Object for QUED

add_op_task_styleField for addOpTaskStyle

allowed_op_task_typesField for allowedOpTaskTypes

allowed_queue_topic_idsField for allowedQueueTopicIDs

customerReference for customer

customer_idField for customerID

default_approval_processReference for defaultApprovalProcess

2.2. API Reference 93

Page 98: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

default_approval_process_idField for defaultApprovalProcessID

default_categoryReference for defaultCategory

default_category_idField for defaultCategoryID

default_duration_expressionField for defaultDurationExpression

default_duration_minutesField for defaultDurationMinutes

default_duration_unitField for defaultDurationUnit

default_routeReference for defaultRoute

default_route_idField for defaultRouteID

ext_ref_idField for extRefID

has_queue_topicsField for hasQueueTopics

is_publicField for isPublic

projectReference for project

project_idField for projectID

queue_topicsCollection for queueTopics

requestor_core_actionField for requestorCoreAction

requestor_forbidden_actionsField for requestorForbiddenActions

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

templateReference for template

template_idField for templateID

visible_op_task_fieldsField for visibleOpTaskFields

94 Chapter 2. Detailed Documentation

Page 99: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

class workfront.versions.v40.QueueTopic(session=None, **fields)Object for QUET

allowed_op_task_typesField for allowedOpTaskTypes

customerReference for customer

customer_idField for customerID

default_approval_processReference for defaultApprovalProcess

default_approval_process_idField for defaultApprovalProcessID

default_categoryReference for defaultCategory

default_category_idField for defaultCategoryID

default_durationField for defaultDuration

default_duration_expressionField for defaultDurationExpression

default_duration_minutesField for defaultDurationMinutes

default_duration_unitField for defaultDurationUnit

default_routeReference for defaultRoute

default_route_idField for defaultRouteID

descriptionField for description

ext_ref_idField for extRefID

indented_nameField for indentedName

nameField for name

parent_topicReference for parentTopic

parent_topic_idField for parentTopicID

queue_defReference for queueDef

2.2. API Reference 95

Page 100: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

queue_def_idField for queueDefID

class workfront.versions.v40.Rate(session=None, **fields)Object for RATE

companyReference for company

company_idField for companyID

customerReference for customer

customer_idField for customerID

ext_ref_idField for extRefID

projectReference for project

project_idField for projectID

rate_valueField for rateValue

roleReference for role

role_idField for roleID

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

class workfront.versions.v40.ReservedTime(session=None, **fields)Object for RESVT

customerReference for customer

customer_idField for customerID

end_dateField for endDate

start_dateField for startDate

taskReference for task

task_idField for taskID

96 Chapter 2. Detailed Documentation

Page 101: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

userReference for user

user_idField for userID

class workfront.versions.v40.ResourceAllocation(session=None, **fields)Object for RSALLO

allocation_dateField for allocationDate

budgeted_hoursField for budgetedHours

customerReference for customer

customer_idField for customerID

is_splitField for isSplit

obj_idField for objID

obj_obj_codeField for objObjCode

projectReference for project

project_idField for projectID

resource_poolReference for resourcePool

resource_pool_idField for resourcePoolID

roleReference for role

role_idField for roleID

scheduled_hoursField for scheduledHours

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

class workfront.versions.v40.ResourcePool(session=None, **fields)Object for RSPOOL

customerReference for customer

2.2. API Reference 97

Page 102: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

customer_idField for customerID

descriptionField for description

display_orderField for displayOrder

ext_ref_idField for extRefID

nameField for name

resource_allocationsCollection for resourceAllocations

rolesCollection for roles

usersCollection for users

class workfront.versions.v40.Risk(session=None, **fields)Object for RISK

actual_costField for actualCost

customerReference for customer

customer_idField for customerID

descriptionField for description

estimated_effectField for estimatedEffect

ext_ref_idField for extRefID

mitigation_costField for mitigationCost

mitigation_descriptionField for mitigationDescription

probabilityField for probability

projectReference for project

project_idField for projectID

risk_typeReference for riskType

98 Chapter 2. Detailed Documentation

Page 103: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

risk_type_idField for riskTypeID

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

statusField for status

templateReference for template

template_idField for templateID

class workfront.versions.v40.RiskType(session=None, **fields)Object for RSKTYP

customerReference for customer

customer_idField for customerID

descriptionField for description

ext_ref_idField for extRefID

nameField for name

class workfront.versions.v40.Role(session=None, **fields)Object for ROLE

billing_per_hourField for billingPerHour

cost_per_hourField for costPerHour

customerReference for customer

customer_idField for customerID

descriptionField for description

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

2.2. API Reference 99

Page 104: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

ext_ref_idField for extRefID

layout_templateReference for layoutTemplate

layout_template_idField for layoutTemplateID

max_usersField for maxUsers

nameField for name

class workfront.versions.v40.RoutingRule(session=None, **fields)Object for RRUL

customerReference for customer

customer_idField for customerID

default_assigned_toReference for defaultAssignedTo

default_assigned_to_idField for defaultAssignedToID

default_projectReference for defaultProject

default_project_idField for defaultProjectID

default_roleReference for defaultRole

default_role_idField for defaultRoleID

default_teamReference for defaultTeam

default_team_idField for defaultTeamID

descriptionField for description

nameField for name

projectReference for project

project_idField for projectID

security_root_idField for securityRootID

100 Chapter 2. Detailed Documentation

Page 105: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

security_root_obj_codeField for securityRootObjCode

templateReference for template

template_idField for templateID

class workfront.versions.v40.Schedule(session=None, **fields)Object for SCHED

customerReference for customer

customer_idField for customerID

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

ext_ref_idField for extRefID

fridayField for friday

get_earliest_work_time_of_day(date=None)The getEarliestWorkTimeOfDay action.

Parameters date – date (type: dateTime)

Returns dateTime

get_latest_work_time_of_day(date=None)The getLatestWorkTimeOfDay action.

Parameters date – date (type: dateTime)

Returns dateTime

get_next_completion_date(date=None, cost_in_minutes=None)The getNextCompletionDate action.

Parameters

• date – date (type: dateTime)

• cost_in_minutes – costInMinutes (type: int)

Returns dateTime

get_next_start_date(date=None)The getNextStartDate action.

Parameters date – date (type: dateTime)

Returns dateTime

2.2. API Reference 101

Page 106: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

groupReference for group

group_idField for groupID

has_non_work_daysField for hasNonWorkDays

is_defaultField for isDefault

mondayField for monday

nameField for name

non_work_daysCollection for nonWorkDays

other_groupsCollection for otherGroups

saturdayField for saturday

sundayField for sunday

thursdayField for thursday

time_zoneField for timeZone

tuesdayField for tuesday

wednesdayField for wednesday

class workfront.versions.v40.ScoreCard(session=None, **fields)Object for SCORE

customerReference for customer

customer_idField for customerID

descriptionField for description

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

102 Chapter 2. Detailed Documentation

Page 107: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

ext_ref_idField for extRefID

is_publicField for isPublic

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

nameField for name

obj_idField for objID

obj_obj_codeField for objObjCode

projectReference for project

project_idField for projectID

score_card_questionsCollection for scoreCardQuestions

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

templateReference for template

template_idField for templateID

class workfront.versions.v40.ScoreCardAnswer(session=None, **fields)Object for SCANS

customerReference for customer

customer_idField for customerID

number_valField for numberVal

obj_idField for objID

obj_obj_codeField for objObjCode

2.2. API Reference 103

Page 108: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

projectReference for project

project_idField for projectID

score_cardReference for scoreCard

score_card_idField for scoreCardID

score_card_optionReference for scoreCardOption

score_card_option_idField for scoreCardOptionID

score_card_questionReference for scoreCardQuestion

score_card_question_idField for scoreCardQuestionID

templateReference for template

template_idField for templateID

typeField for type

class workfront.versions.v40.ScoreCardOption(session=None, **fields)Object for SCOPT

customerReference for customer

customer_idField for customerID

display_orderField for displayOrder

is_defaultField for isDefault

is_hiddenField for isHidden

labelField for label

score_card_questionReference for scoreCardQuestion

score_card_question_idField for scoreCardQuestionID

valueField for value

104 Chapter 2. Detailed Documentation

Page 109: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

class workfront.versions.v40.ScoreCardQuestion(session=None, **fields)Object for SCOREQ

customerReference for customer

customer_idField for customerID

descriptionField for description

display_orderField for displayOrder

display_typeField for displayType

nameField for name

score_cardReference for scoreCard

score_card_idField for scoreCardID

score_card_optionsCollection for scoreCardOptions

weightField for weight

class workfront.versions.v40.StepApprover(session=None, **fields)Object for SPAPVR

approval_stepReference for approvalStep

approval_step_idField for approvalStepID

customerReference for customer

customer_idField for customerID

roleReference for role

role_idField for roleID

teamReference for team

team_idField for teamID

userReference for user

2.2. API Reference 105

Page 110: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

user_idField for userID

wild_cardField for wildCard

class workfront.versions.v40.Task(session=None, **fields)Object for TASK

accept_work()The acceptWork action.

access_rulesCollection for accessRules

actual_completion_dateField for actualCompletionDate

actual_costField for actualCost

actual_durationField for actualDuration

actual_duration_minutesField for actualDurationMinutes

actual_expense_costField for actualExpenseCost

actual_labor_costField for actualLaborCost

actual_revenueField for actualRevenue

actual_start_dateField for actualStartDate

actual_workField for actualWork

actual_work_requiredField for actualWorkRequired

add_comment(text)Add a comment to the current object containing the supplied text.

The new Comment instance is returned, it does not need to be saved.

all_prioritiesCollection for allPriorities

all_statusesCollection for allStatuses

approval_est_start_dateField for approvalEstStartDate

approval_planned_start_dateField for approvalPlannedStartDate

approval_planned_start_dayField for approvalPlannedStartDay

106 Chapter 2. Detailed Documentation

Page 111: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

approval_processReference for approvalProcess

approval_process_idField for approvalProcessID

approval_projected_start_dateField for approvalProjectedStartDate

approve_approval(user_id=None, username=None, password=None, audit_note=None, au-dit_user_ids=None, send_note_as_email=None)

The approveApproval action.

Parameters

• user_id – userID (type: string)

• username – username (type: string)

• password – password (type: string)

• audit_note – auditNote (type: string)

• audit_user_ids – auditUserIDs (type: string[])

• send_note_as_email – sendNoteAsEmail (type: boolean)

approver_statusesCollection for approverStatuses

approvers_stringField for approversString

assign(obj_id=None, obj_code=None)The assign action.

Parameters

• obj_id – objID (type: string)

• obj_code – objCode (type: string)

assigned_toReference for assignedTo

assigned_to_idField for assignedToID

assignmentsCollection for assignments

assignments_list_stringField for assignmentsListString

audit_noteField for auditNote

audit_typesField for auditTypes

audit_user_idsField for auditUserIDs

backlog_orderField for backlogOrder

2.2. API Reference 107

Page 112: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

billing_amountField for billingAmount

billing_recordReference for billingRecord

billing_record_idField for billingRecordID

bulk_copy(task_ids=None, project_id=None, parent_id=None, options=None)The bulkCopy action.

Parameters

• task_ids – taskIDs (type: string[])

• project_id – projectID (type: string)

• parent_id – parentID (type: string)

• options – options (type: string[])

Returns string[]

bulk_move(task_ids=None, project_id=None, parent_id=None, options=None)The bulkMove action.

Parameters

• task_ids – taskIDs (type: string[])

• project_id – projectID (type: string)

• parent_id – parentID (type: string)

• options – options (type: string[])

calculate_data_extension()The calculateDataExtension action.

can_startField for canStart

categoryReference for category

category_idField for categoryID

childrenCollection for children

colorField for color

commit_dateField for commitDate

commit_date_rangeField for commitDateRange

completion_pending_dateField for completionPendingDate

conditionField for condition

108 Chapter 2. Detailed Documentation

Page 113: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

constraint_dateField for constraintDate

converted_op_task_entry_dateField for convertedOpTaskEntryDate

converted_op_task_nameField for convertedOpTaskName

converted_op_task_originatorReference for convertedOpTaskOriginator

converted_op_task_originator_idField for convertedOpTaskOriginatorID

cost_amountField for costAmount

cost_typeField for costType

cpiField for cpi

csiField for csi

current_approval_stepReference for currentApprovalStep

current_approval_step_idField for currentApprovalStepID

customerReference for customer

customer_idField for customerID

days_lateField for daysLate

default_baseline_taskReference for defaultBaselineTask

descriptionField for description

documentsCollection for documents

done_statusesCollection for doneStatuses

due_dateField for dueDate

durationField for duration

duration_expressionField for durationExpression

2.2. API Reference 109

Page 114: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

duration_minutesField for durationMinutes

duration_typeField for durationType

duration_unitField for durationUnit

eacField for eac

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

est_completion_dateField for estCompletionDate

est_start_dateField for estStartDate

estimateField for estimate

expensesCollection for expenses

ext_ref_idField for extRefID

groupReference for group

group_idField for groupID

handoff_dateField for handoffDate

has_completion_constraintField for hasCompletionConstraint

has_documentsField for hasDocuments

has_expensesField for hasExpenses

has_messagesField for hasMessages

has_notesField for hasNotes

has_resolvablesField for hasResolvables

110 Chapter 2. Detailed Documentation

Page 115: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

has_start_constraintField for hasStartConstraint

has_timed_notificationsField for hasTimedNotifications

hoursCollection for hours

hours_per_pointField for hoursPerPoint

indentField for indent

is_agileField for isAgile

is_criticalField for isCritical

is_duration_lockedField for isDurationLocked

is_leveling_excludedField for isLevelingExcluded

is_readyField for isReady

is_work_required_lockedField for isWorkRequiredLocked

iterationReference for iteration

iteration_idField for iterationID

last_condition_noteReference for lastConditionNote

last_condition_note_idField for lastConditionNoteID

last_noteReference for lastNote

last_note_idField for lastNoteID

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

leveling_start_delayField for levelingStartDelay

2.2. API Reference 111

Page 116: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

leveling_start_delay_expressionField for levelingStartDelayExpression

leveling_start_delay_minutesField for levelingStartDelayMinutes

mark_done(status=None)The markDone action.

Parameters status – status (type: string)

mark_not_done(assignment_id=None)The markNotDone action.

Parameters assignment_id – assignmentID (type: string)

master_task_idField for masterTaskID

milestoneReference for milestone

milestone_idField for milestoneID

move(project_id=None, parent_id=None, options=None)The move action.

Parameters

• project_id – projectID (type: string)

• parent_id – parentID (type: string)

• options – options (type: string[])

nameField for name

number_of_childrenField for numberOfChildren

number_open_op_tasksField for numberOpenOpTasks

op_tasksCollection for opTasks

open_op_tasksCollection for openOpTasks

original_durationField for originalDuration

original_work_requiredField for originalWorkRequired

parentReference for parent

parent_idField for parentID

parent_lagField for parentLag

112 Chapter 2. Detailed Documentation

Page 117: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

parent_lag_typeField for parentLagType

percent_completeField for percentComplete

personalField for personal

planned_completion_dateField for plannedCompletionDate

planned_costField for plannedCost

planned_date_alignmentField for plannedDateAlignment

planned_durationField for plannedDuration

planned_duration_minutesField for plannedDurationMinutes

planned_expense_costField for plannedExpenseCost

planned_hours_alignmentField for plannedHoursAlignment

planned_labor_costField for plannedLaborCost

planned_revenueField for plannedRevenue

planned_start_dateField for plannedStartDate

predecessor_expressionField for predecessorExpression

predecessorsCollection for predecessors

previous_statusField for previousStatus

primary_assignmentReference for primaryAssignment

priorityField for priority

progress_statusField for progressStatus

projectReference for project

project_idField for projectID

2.2. API Reference 113

Page 118: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

projected_completion_dateField for projectedCompletionDate

projected_duration_minutesField for projectedDurationMinutes

projected_start_dateField for projectedStartDate

recall_approval()The recallApproval action.

recurrence_numberField for recurrenceNumber

recurrence_rule_idField for recurrenceRuleID

reference_numberField for referenceNumber

reject_approval(user_id=None, username=None, password=None, audit_note=None, au-dit_user_ids=None, send_note_as_email=None)

The rejectApproval action.

Parameters

• user_id – userID (type: string)

• username – username (type: string)

• password – password (type: string)

• audit_note – auditNote (type: string)

• audit_user_ids – auditUserIDs (type: string[])

• send_note_as_email – sendNoteAsEmail (type: boolean)

rejection_issueReference for rejectionIssue

rejection_issue_idField for rejectionIssueID

remaining_duration_minutesField for remainingDurationMinutes

reply_to_assignment(note_text=None, commit_date=None)The replyToAssignment action.

Parameters

• note_text – noteText (type: string)

• commit_date – commitDate (type: dateTime)

reserved_timeReference for reservedTime

reserved_time_idField for reservedTimeID

resolvablesCollection for resolvables

114 Chapter 2. Detailed Documentation

Page 119: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

resource_scopeField for resourceScope

revenue_typeField for revenueType

roleReference for role

role_idField for roleID

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

slack_dateField for slackDate

spiField for spi

statusField for status

status_equates_withField for statusEquatesWith

status_updateField for statusUpdate

submitted_byReference for submittedBy

submitted_by_idField for submittedByID

successorsCollection for successors

task_constraintField for taskConstraint

task_numberField for taskNumber

task_number_predecessor_stringField for taskNumberPredecessorString

teamReference for team

team_assignmentReference for teamAssignment

team_idField for teamID

template_taskReference for templateTask

2.2. API Reference 115

Page 120: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

template_task_idField for templateTaskID

tracking_modeField for trackingMode

unaccept_work()The unacceptWork action.

unassign(user_id=None)The unassign action.

Parameters user_id – userID (type: string)

unassign_occurrences(user_id=None)The unassignOccurrences action.

Parameters user_id – userID (type: string)

Returns string[]

updatesCollection for updates

urlField for URL

wbsField for wbs

workField for work

work_itemReference for workItem

work_requiredField for workRequired

work_required_expressionField for workRequiredExpression

work_unitField for workUnit

class workfront.versions.v40.Team(session=None, **fields)Object for TEAMOB

backlog_tasksCollection for backlogTasks

customerReference for customer

customer_idField for customerID

descriptionField for description

estimate_by_hoursField for estimateByHours

hours_per_pointField for hoursPerPoint

116 Chapter 2. Detailed Documentation

Page 121: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

is_agileField for isAgile

is_standard_issue_listField for isStandardIssueList

layout_templateReference for layoutTemplate

layout_template_idField for layoutTemplateID

my_work_viewReference for myWorkView

my_work_view_idField for myWorkViewID

nameField for name

op_task_bug_report_statusesField for opTaskBugReportStatuses

op_task_change_order_statusesField for opTaskChangeOrderStatuses

op_task_issue_statusesField for opTaskIssueStatuses

op_task_request_statusesField for opTaskRequestStatuses

ownerReference for owner

owner_idField for ownerID

requests_viewReference for requestsView

requests_view_idField for requestsViewID

task_statusesField for taskStatuses

team_membersCollection for teamMembers

team_story_board_statusesField for teamStoryBoardStatuses

updatesCollection for updates

usersCollection for users

class workfront.versions.v40.TeamMember(session=None, **fields)Object for TEAMMB

2.2. API Reference 117

Page 122: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

customerReference for customer

customer_idField for customerID

has_assign_permissionsField for hasAssignPermissions

teamReference for team

team_idField for teamID

userReference for user

user_idField for userID

class workfront.versions.v40.Template(session=None, **fields)Object for TMPL

access_rulesCollection for accessRules

approval_processReference for approvalProcess

approval_process_idField for approvalProcessID

auto_baseline_recur_onField for autoBaselineRecurOn

auto_baseline_recurrence_typeField for autoBaselineRecurrenceType

calculate_data_extension()The calculateDataExtension action.

categoryReference for category

category_idField for categoryID

completion_dayField for completionDay

completion_typeField for completionType

currencyField for currency

customerReference for customer

customer_idField for customerID

118 Chapter 2. Detailed Documentation

Page 123: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

deliverable_score_cardReference for deliverableScoreCard

deliverable_score_card_idField for deliverableScoreCardID

deliverable_success_scoreField for deliverableSuccessScore

deliverable_valuesCollection for deliverableValues

descriptionField for description

documentsCollection for documents

duration_minutesField for durationMinutes

enable_auto_baselinesField for enableAutoBaselines

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

exchange_rateReference for exchangeRate

expensesCollection for expenses

ext_ref_idField for extRefID

filter_hour_typesField for filterHourTypes

fixed_costField for fixedCost

fixed_revenueField for fixedRevenue

groupsCollection for groups

has_documentsField for hasDocuments

has_expensesField for hasExpenses

has_notesField for hasNotes

2.2. API Reference 119

Page 124: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

has_timed_notificationsField for hasTimedNotifications

hour_typesCollection for hourTypes

last_noteReference for lastNote

last_note_idField for lastNoteID

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

milestone_pathReference for milestonePath

milestone_path_idField for milestonePathID

nameField for name

olvField for olv

owner_privilegesField for ownerPrivileges

performance_index_methodField for performanceIndexMethod

planned_costField for plannedCost

planned_expense_costField for plannedExpenseCost

planned_labor_costField for plannedLaborCost

planned_revenueField for plannedRevenue

planned_risk_costField for plannedRiskCost

queue_defReference for queueDef

queue_def_idField for queueDefID

reference_numberField for referenceNumber

120 Chapter 2. Detailed Documentation

Page 125: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

risksCollection for risks

rolesCollection for roles

routing_rulesCollection for routingRules

schedule_modeField for scheduleMode

start_dayField for startDay

summary_completion_typeField for summaryCompletionType

template_tasksCollection for templateTasks

template_user_rolesCollection for templateUserRoles

template_usersCollection for templateUsers

versionField for version

work_requiredField for workRequired

class workfront.versions.v40.TemplateAssignment(session=None, **fields)Object for TASSGN

assigned_toReference for assignedTo

assigned_to_idField for assignedToID

assignment_percentField for assignmentPercent

customerReference for customer

customer_idField for customerID

is_primaryField for isPrimary

is_team_assignmentField for isTeamAssignment

master_task_idField for masterTaskID

obj_idField for objID

2.2. API Reference 121

Page 126: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

obj_obj_codeField for objObjCode

roleReference for role

role_idField for roleID

teamReference for team

team_idField for teamID

templateReference for template

template_idField for templateID

template_taskReference for templateTask

template_task_idField for templateTaskID

work_requiredField for workRequired

work_unitField for workUnit

class workfront.versions.v40.TemplatePredecessor(session=None, **fields)Object for TPRED

customerReference for customer

customer_idField for customerID

is_enforcedField for isEnforced

lag_daysField for lagDays

lag_typeField for lagType

predecessorReference for predecessor

predecessor_idField for predecessorID

predecessor_typeField for predecessorType

successorReference for successor

122 Chapter 2. Detailed Documentation

Page 127: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

successor_idField for successorID

class workfront.versions.v40.TemplateTask(session=None, **fields)Object for TTSK

approval_processReference for approvalProcess

approval_process_idField for approvalProcessID

assigned_toReference for assignedTo

assigned_to_idField for assignedToID

assignmentsCollection for assignments

audit_typesField for auditTypes

billing_amountField for billingAmount

calculate_data_extension()The calculateDataExtension action.

categoryReference for category

category_idField for categoryID

childrenCollection for children

completion_dayField for completionDay

constraint_dayField for constraintDay

cost_amountField for costAmount

cost_typeField for costType

customerReference for customer

customer_idField for customerID

descriptionField for description

documentsCollection for documents

2.2. API Reference 123

Page 128: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

durationField for duration

duration_minutesField for durationMinutes

duration_typeField for durationType

duration_unitField for durationUnit

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

expensesCollection for expenses

ext_ref_idField for extRefID

has_documentsField for hasDocuments

has_expensesField for hasExpenses

has_notesField for hasNotes

has_timed_notificationsField for hasTimedNotifications

indentField for indent

is_criticalField for isCritical

is_duration_lockedField for isDurationLocked

is_leveling_excludedField for isLevelingExcluded

is_work_required_lockedField for isWorkRequiredLocked

last_noteReference for lastNote

last_note_idField for lastNoteID

last_update_dateField for lastUpdateDate

124 Chapter 2. Detailed Documentation

Page 129: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

leveling_start_delayField for levelingStartDelay

leveling_start_delay_minutesField for levelingStartDelayMinutes

master_task_idField for masterTaskID

milestoneReference for milestone

milestone_idField for milestoneID

move(template_id=None, parent_id=None, options=None)The move action.

Parameters

• template_id – templateID (type: string)

• parent_id – parentID (type: string)

• options – options (type: string[])

nameField for name

number_of_childrenField for numberOfChildren

original_durationField for originalDuration

original_work_requiredField for originalWorkRequired

parentReference for parent

parent_idField for parentID

parent_lagField for parentLag

parent_lag_typeField for parentLagType

planned_costField for plannedCost

planned_durationField for plannedDuration

planned_duration_minutesField for plannedDurationMinutes

2.2. API Reference 125

Page 130: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

planned_expense_costField for plannedExpenseCost

planned_labor_costField for plannedLaborCost

planned_revenueField for plannedRevenue

predecessorsCollection for predecessors

priorityField for priority

recurrence_numberField for recurrenceNumber

recurrence_rule_idField for recurrenceRuleID

reference_numberField for referenceNumber

revenue_typeField for revenueType

roleReference for role

role_idField for roleID

start_dayField for startDay

successorsCollection for successors

task_constraintField for taskConstraint

task_numberField for taskNumber

teamReference for team

team_assignmentReference for teamAssignment

team_idField for teamID

templateReference for template

template_idField for templateID

tracking_modeField for trackingMode

126 Chapter 2. Detailed Documentation

Page 131: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

urlField for URL

workField for work

work_requiredField for workRequired

work_unitField for workUnit

class workfront.versions.v40.TemplateUser(session=None, **fields)Object for TMTU

customerReference for customer

customer_idField for customerID

templateReference for template

template_idField for templateID

tmp_user_idField for tmpUserID

userReference for user

user_idField for userID

class workfront.versions.v40.TemplateUserRole(session=None, **fields)Object for TTEAM

customerReference for customer

customer_idField for customerID

roleReference for role

role_idField for roleID

templateReference for template

template_idField for templateID

userReference for user

user_idField for userID

2.2. API Reference 127

Page 132: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

class workfront.versions.v40.Timesheet(session=None, **fields)Object for TSHET

approverReference for approver

approver_idField for approverID

available_actionsField for availableActions

customerReference for customer

customer_idField for customerID

display_nameField for displayName

end_dateField for endDate

ext_ref_idField for extRefID

has_notesField for hasNotes

hoursCollection for hours

hours_durationField for hoursDuration

is_editableField for isEditable

last_noteReference for lastNote

last_note_idField for lastNoteID

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

overtime_hoursField for overtimeHours

regular_hoursField for regularHours

start_dateField for startDate

128 Chapter 2. Detailed Documentation

Page 133: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

statusField for status

timesheet_profile_idField for timesheetProfileID

total_hoursField for totalHours

userReference for user

user_idField for userID

class workfront.versions.v40.UIFilter(session=None, **fields)Object for UIFT

access_rulesCollection for accessRules

app_global_idField for appGlobalID

customerReference for customer

customer_idField for customerID

definitionField for definition

display_nameField for displayName

entered_byReference for enteredBy

entered_by_idField for enteredByID

filter_typeField for filterType

global_uikeyField for globalUIKey

is_app_global_editableField for isAppGlobalEditable

is_publicField for isPublic

is_reportField for isReport

is_saved_searchField for isSavedSearch

is_textField for isText

2.2. API Reference 129

Page 134: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

linked_rolesCollection for linkedRoles

linked_teamsCollection for linkedTeams

linked_usersCollection for linkedUsers

mod_dateField for modDate

msg_keyField for msgKey

nameField for name

obj_idField for objID

obj_obj_codeField for objObjCode

preference_idField for preferenceID

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

ui_obj_codeField for uiObjCode

usersCollection for users

class workfront.versions.v40.UIGroupBy(session=None, **fields)Object for UIGB

access_rulesCollection for accessRules

app_global_idField for appGlobalID

customerReference for customer

customer_idField for customerID

130 Chapter 2. Detailed Documentation

Page 135: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

definitionField for definition

display_nameField for displayName

entered_byReference for enteredBy

entered_by_idField for enteredByID

global_uikeyField for globalUIKey

is_app_global_editableField for isAppGlobalEditable

is_publicField for isPublic

is_reportField for isReport

is_textField for isText

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

linked_rolesCollection for linkedRoles

linked_teamsCollection for linkedTeams

linked_usersCollection for linkedUsers

mod_dateField for modDate

msg_keyField for msgKey

nameField for name

obj_idField for objID

obj_obj_codeField for objObjCode

preference_idField for preferenceID

2.2. API Reference 131

Page 136: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

ui_obj_codeField for uiObjCode

class workfront.versions.v40.UIView(session=None, **fields)Object for UIVW

access_rulesCollection for accessRules

app_global_idField for appGlobalID

customerReference for customer

customer_idField for customerID

definitionField for definition

display_nameField for displayName

entered_byReference for enteredBy

entered_by_idField for enteredByID

global_uikeyField for globalUIKey

is_app_global_editableField for isAppGlobalEditable

is_defaultField for isDefault

is_new_formatField for isNewFormat

is_publicField for isPublic

is_reportField for isReport

is_textField for isText

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

132 Chapter 2. Detailed Documentation

Page 137: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

last_updated_by_idField for lastUpdatedByID

layout_typeField for layoutType

linked_rolesCollection for linkedRoles

linked_teamsCollection for linkedTeams

linked_usersCollection for linkedUsers

mod_dateField for modDate

msg_keyField for msgKey

nameField for name

obj_idField for objID

obj_obj_codeField for objObjCode

preference_idField for preferenceID

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

ui_obj_codeField for uiObjCode

uiview_typeField for uiviewType

class workfront.versions.v40.Update(session=None, **fields)Object for UPDATE

allowed_actionsField for allowedActions

combined_updatesCollection for combinedUpdates

entered_by_idField for enteredByID

entered_by_nameField for enteredByName

entry_dateField for entryDate

2.2. API Reference 133

Page 138: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

icon_nameField for iconName

icon_pathField for iconPath

messageField for message

message_argsCollection for messageArgs

nested_updatesCollection for nestedUpdates

ref_nameField for refName

ref_obj_codeField for refObjCode

ref_obj_idField for refObjID

repliesCollection for replies

styled_messageField for styledMessage

sub_messageField for subMessage

sub_message_argsCollection for subMessageArgs

sub_obj_codeField for subObjCode

sub_obj_idField for subObjID

thread_idField for threadID

top_nameField for topName

top_obj_codeField for topObjCode

top_obj_idField for topObjID

update_actionsField for updateActions

update_journal_entryReference for updateJournalEntry

update_noteReference for updateNote

134 Chapter 2. Detailed Documentation

Page 139: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

update_objThe object referenced by this update.

update_obj_codeField for updateObjCode

update_obj_idField for updateObjID

update_typeField for updateType

class workfront.versions.v40.User(session=None, **fields)Object for USER

access_level_idField for accessLevelID

addressField for address

address2Field for address2

assign_user_token()The assignUserToken action.

Returns string

avatar_dateField for avatarDate

avatar_download_urlField for avatarDownloadURL

avatar_sizeField for avatarSize

avatar_xField for avatarX

avatar_yField for avatarY

billing_per_hourField for billingPerHour

calculate_data_extension()The calculateDataExtension action.

categoryReference for category

category_idField for categoryID

cityField for city

companyReference for company

company_idField for companyID

2.2. API Reference 135

Page 140: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

complete_user_registration(first_name=None, last_name=None, token=None, title=None,new_password=None)

The completeUserRegistration action.

Parameters

• first_name – firstName (type: string)

• last_name – lastName (type: string)

• token – token (type: string)

• title – title (type: string)

• new_password – newPassword (type: string)

cost_per_hourField for costPerHour

countryField for country

customerReference for customer

customer_idField for customerID

default_hour_typeReference for defaultHourType

default_hour_type_idField for defaultHourTypeID

default_interfaceField for defaultInterface

direct_reportsCollection for directReports

documentsCollection for documents

email_addrField for emailAddr

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

ext_ref_idField for extRefID

favoritesCollection for favorites

first_nameField for firstName

fteField for fte

136 Chapter 2. Detailed Documentation

Page 141: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

has_apiaccessField for hasAPIAccess

has_documentsField for hasDocuments

has_messagesField for hasMessages

has_notesField for hasNotes

has_passwordField for hasPassword

has_proof_licenseField for hasProofLicense

has_reserved_timesField for hasReservedTimes

high_priority_work_itemReference for highPriorityWorkItem

home_groupReference for homeGroup

home_group_idField for homeGroupID

home_teamReference for homeTeam

home_team_idField for homeTeamID

hour_typesCollection for hourTypes

is_activeField for isActive

is_adminField for isAdmin

is_box_authenticatedField for isBoxAuthenticated

is_drop_box_authenticatedField for isDropBoxAuthenticated

is_google_authenticatedField for isGoogleAuthenticated

is_share_point_authenticatedField for isSharePointAuthenticated

is_web_damauthenticatedField for isWebDAMAuthenticated

last_announcementField for lastAnnouncement

2.2. API Reference 137

Page 142: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

last_entered_noteReference for lastEnteredNote

last_entered_note_idField for lastEnteredNoteID

last_login_dateField for lastLoginDate

last_nameField for lastName

last_noteReference for lastNote

last_note_idField for lastNoteID

last_status_noteReference for lastStatusNote

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

last_whats_newField for lastWhatsNew

latest_update_noteReference for latestUpdateNote

latest_update_note_idField for latestUpdateNoteID

layout_templateReference for layoutTemplate

layout_template_idField for layoutTemplateID

license_typeField for licenseType

localeField for locale

login_countField for loginCount

managerReference for manager

manager_idField for managerID

messagesCollection for messages

138 Chapter 2. Detailed Documentation

Page 143: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

mobile_phone_numberField for mobilePhoneNumber

my_infoField for myInfo

nameField for name

other_groupsCollection for otherGroups

passwordField for password

password_dateField for passwordDate

personaField for persona

phone_extensionField for phoneExtension

phone_numberField for phoneNumber

portal_profile_idField for portalProfileID

postal_codeField for postalCode

proof_account_passwordField for proofAccountPassword

registration_expire_dateField for registrationExpireDate

reserved_timesCollection for reservedTimes

reset_password_expire_dateField for resetPasswordExpireDate

resource_poolReference for resourcePool

resource_pool_idField for resourcePoolID

roleReference for role

role_idField for roleID

rolesCollection for roles

scheduleReference for schedule

2.2. API Reference 139

Page 144: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

schedule_idField for scheduleID

send_invitation_email()The sendInvitationEmail action.

sso_access_onlyField for ssoAccessOnly

sso_usernameField for ssoUsername

stateField for state

status_updateField for statusUpdate

teamsCollection for teams

time_zoneField for timeZone

timesheet_profile_idField for timesheetProfileID

titleField for title

ui_filtersCollection for uiFilters

ui_group_bysCollection for uiGroupBys

ui_viewsCollection for uiViews

updatesCollection for updates

user_activitiesCollection for userActivities

user_notesCollection for userNotes

user_pref_valuesCollection for userPrefValues

usernameField for username

web_davprofileField for webDAVProfile

work_itemsCollection for workItems

class workfront.versions.v40.UserActivity(session=None, **fields)Object for USERAC

140 Chapter 2. Detailed Documentation

Page 145: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

customerReference for customer

customer_idField for customerID

entry_dateField for entryDate

last_update_dateField for lastUpdateDate

nameField for name

userReference for user

user_idField for userID

valueField for value

class workfront.versions.v40.UserNote(session=None, **fields)Object for USRNOT

customerReference for customer

customer_idField for customerID

document_approvalReference for documentApproval

document_approval_idField for documentApprovalID

document_request_idField for documentRequestID

document_share_idField for documentShareID

endorsement_idField for endorsementID

entry_dateField for entryDate

event_typeField for eventType

journal_entryReference for journalEntry

journal_entry_idField for journalEntryID

like_idField for likeID

2.2. API Reference 141

Page 146: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

noteReference for note

note_idField for noteID

userReference for user

user_idField for userID

class workfront.versions.v40.UserPrefValue(session=None, **fields)Object for USERPF

customerReference for customer

customer_idField for customerID

nameField for name

userReference for user

user_idField for userID

valueField for value

class workfront.versions.v40.Work(session=None, **fields)Object for WORK

access_rulesCollection for accessRules

actual_completion_dateField for actualCompletionDate

actual_costField for actualCost

actual_durationField for actualDuration

actual_duration_minutesField for actualDurationMinutes

actual_expense_costField for actualExpenseCost

actual_labor_costField for actualLaborCost

actual_revenueField for actualRevenue

actual_start_dateField for actualStartDate

142 Chapter 2. Detailed Documentation

Page 147: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

actual_workField for actualWork

actual_work_requiredField for actualWorkRequired

actual_work_required_expressionField for actualWorkRequiredExpression

age_range_as_stringField for ageRangeAsString

all_prioritiesCollection for allPriorities

all_severitiesCollection for allSeverities

all_statusesCollection for allStatuses

approval_est_start_dateField for approvalEstStartDate

approval_planned_start_dateField for approvalPlannedStartDate

approval_planned_start_dayField for approvalPlannedStartDay

approval_processReference for approvalProcess

approval_process_idField for approvalProcessID

approval_projected_start_dateField for approvalProjectedStartDate

approver_statusesCollection for approverStatuses

approvers_stringField for approversString

assigned_toReference for assignedTo

assigned_to_idField for assignedToID

assignmentsCollection for assignments

assignments_list_stringField for assignmentsListString

audit_noteField for auditNote

audit_typesField for auditTypes

2.2. API Reference 143

Page 148: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

audit_user_idsField for auditUserIDs

auto_closure_dateField for autoClosureDate

backlog_orderField for backlogOrder

billing_amountField for billingAmount

billing_recordReference for billingRecord

billing_record_idField for billingRecordID

can_startField for canStart

categoryReference for category

category_idField for categoryID

childrenCollection for children

colorField for color

commit_dateField for commitDate

commit_date_rangeField for commitDateRange

completion_pending_dateField for completionPendingDate

conditionField for condition

constraint_dateField for constraintDate

converted_op_task_entry_dateField for convertedOpTaskEntryDate

converted_op_task_nameField for convertedOpTaskName

converted_op_task_originatorReference for convertedOpTaskOriginator

converted_op_task_originator_idField for convertedOpTaskOriginatorID

cost_amountField for costAmount

144 Chapter 2. Detailed Documentation

Page 149: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

cost_typeField for costType

cpiField for cpi

csiField for csi

current_approval_stepReference for currentApprovalStep

current_approval_step_idField for currentApprovalStepID

current_status_durationField for currentStatusDuration

customerReference for customer

customer_idField for customerID

days_lateField for daysLate

default_baseline_taskReference for defaultBaselineTask

descriptionField for description

documentsCollection for documents

done_statusesCollection for doneStatuses

due_dateField for dueDate

durationField for duration

duration_expressionField for durationExpression

duration_minutesField for durationMinutes

duration_typeField for durationType

duration_unitField for durationUnit

eacField for eac

entered_byReference for enteredBy

2.2. API Reference 145

Page 150: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

entered_by_idField for enteredByID

entry_dateField for entryDate

est_completion_dateField for estCompletionDate

est_start_dateField for estStartDate

estimateField for estimate

expensesCollection for expenses

ext_ref_idField for extRefID

first_responseField for firstResponse

groupReference for group

group_idField for groupID

handoff_dateField for handoffDate

has_completion_constraintField for hasCompletionConstraint

has_documentsField for hasDocuments

has_expensesField for hasExpenses

has_messagesField for hasMessages

has_notesField for hasNotes

has_resolvablesField for hasResolvables

has_start_constraintField for hasStartConstraint

has_timed_notificationsField for hasTimedNotifications

hoursCollection for hours

hours_per_pointField for hoursPerPoint

146 Chapter 2. Detailed Documentation

Page 151: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

how_oldField for howOld

indentField for indent

is_agileField for isAgile

is_completeField for isComplete

is_criticalField for isCritical

is_duration_lockedField for isDurationLocked

is_help_deskField for isHelpDesk

is_leveling_excludedField for isLevelingExcluded

is_readyField for isReady

is_work_required_lockedField for isWorkRequiredLocked

iterationReference for iteration

iteration_idField for iterationID

last_condition_noteReference for lastConditionNote

last_condition_note_idField for lastConditionNoteID

last_noteReference for lastNote

last_note_idField for lastNoteID

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

leveling_start_delayField for levelingStartDelay

leveling_start_delay_expressionField for levelingStartDelayExpression

2.2. API Reference 147

Page 152: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

leveling_start_delay_minutesField for levelingStartDelayMinutes

master_task_idField for masterTaskID

milestoneReference for milestone

milestone_idField for milestoneID

nameField for name

number_of_childrenField for numberOfChildren

number_open_op_tasksField for numberOpenOpTasks

op_task_typeField for opTaskType

op_task_type_labelField for opTaskTypeLabel

op_tasksCollection for opTasks

open_op_tasksCollection for openOpTasks

original_durationField for originalDuration

original_work_requiredField for originalWorkRequired

ownerReference for owner

owner_idField for ownerID

parentReference for parent

parent_idField for parentID

parent_lagField for parentLag

parent_lag_typeField for parentLagType

percent_completeField for percentComplete

personalField for personal

148 Chapter 2. Detailed Documentation

Page 153: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

planned_completion_dateField for plannedCompletionDate

planned_costField for plannedCost

planned_date_alignmentField for plannedDateAlignment

planned_durationField for plannedDuration

planned_duration_minutesField for plannedDurationMinutes

planned_expense_costField for plannedExpenseCost

planned_hours_alignmentField for plannedHoursAlignment

planned_labor_costField for plannedLaborCost

planned_revenueField for plannedRevenue

planned_start_dateField for plannedStartDate

predecessor_expressionField for predecessorExpression

predecessorsCollection for predecessors

previous_statusField for previousStatus

primary_assignmentReference for primaryAssignment

priorityField for priority

progress_statusField for progressStatus

projectReference for project

project_idField for projectID

projected_completion_dateField for projectedCompletionDate

projected_duration_minutesField for projectedDurationMinutes

projected_start_dateField for projectedStartDate

2.2. API Reference 149

Page 154: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

queue_topicReference for queueTopic

queue_topic_idField for queueTopicID

recurrence_numberField for recurrenceNumber

recurrence_rule_idField for recurrenceRuleID

reference_numberField for referenceNumber

reference_obj_codeField for referenceObjCode

reference_obj_idField for referenceObjID

rejection_issueReference for rejectionIssue

rejection_issue_idField for rejectionIssueID

remaining_duration_minutesField for remainingDurationMinutes

reserved_timeReference for reservedTime

reserved_time_idField for reservedTimeID

resolution_timeField for resolutionTime

resolvablesCollection for resolvables

resolve_op_taskReference for resolveOpTask

resolve_op_task_idField for resolveOpTaskID

resolve_projectReference for resolveProject

resolve_project_idField for resolveProjectID

resolve_taskReference for resolveTask

resolve_task_idField for resolveTaskID

resolving_obj_codeField for resolvingObjCode

150 Chapter 2. Detailed Documentation

Page 155: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

resolving_obj_idField for resolvingObjID

resource_scopeField for resourceScope

revenue_typeField for revenueType

roleReference for role

role_idField for roleID

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

severityField for severity

slack_dateField for slackDate

source_obj_codeField for sourceObjCode

source_obj_idField for sourceObjID

source_taskReference for sourceTask

source_task_idField for sourceTaskID

spiField for spi

statusField for status

status_equates_withField for statusEquatesWith

status_updateField for statusUpdate

submitted_byReference for submittedBy

submitted_by_idField for submittedByID

successorsCollection for successors

task_constraintField for taskConstraint

2.2. API Reference 151

Page 156: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

task_numberField for taskNumber

task_number_predecessor_stringField for taskNumberPredecessorString

teamReference for team

team_assignmentReference for teamAssignment

team_idField for teamID

team_requests_count()The teamRequestsCount action.

Returns map

template_taskReference for templateTask

template_task_idField for templateTaskID

tracking_modeField for trackingMode

updatesCollection for updates

urlField for URL

url_Field for url

wbsField for wbs

workField for work

work_itemReference for workItem

work_requiredField for workRequired

work_required_expressionField for workRequiredExpression

work_unitField for workUnit

class workfront.versions.v40.WorkItem(session=None, **fields)Object for WRKITM

assignmentReference for assignment

assignment_idField for assignmentID

152 Chapter 2. Detailed Documentation

Page 157: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

customerReference for customer

customer_idField for customerID

done_dateField for doneDate

ext_ref_idField for extRefID

is_deadField for isDead

is_doneField for isDone

last_viewed_dateField for lastViewedDate

mark_viewed()The markViewed action.

obj_idField for objID

obj_obj_codeField for objObjCode

op_taskReference for opTask

op_task_idField for opTaskID

priorityField for priority

projectReference for project

project_idField for projectID

reference_object_commit_dateField for referenceObjectCommitDate

reference_object_nameField for referenceObjectName

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

snooze_dateField for snoozeDate

taskReference for task

2.2. API Reference 153

Page 158: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

task_idField for taskID

userReference for user

user_idField for userID

“unsupported” API Reference

class workfront.versions.unsupported.AccessLevel(session=None, **fields)Object for ACSLVL

access_level_permissionsCollection for accessLevelPermissions

access_restrictionsField for accessRestrictions

access_rule_preferencesCollection for accessRulePreferences

access_scope_actionsCollection for accessScopeActions

app_globalReference for appGlobal

app_global_idField for appGlobalID

calculate_sharing(obj_code=None, obj_id=None)The calculateSharing action.

Parameters

• obj_code – objCode (type: string)

• obj_id – objID (type: string)

clear_access_rule_preferences(obj_code=None)The clearAccessRulePreferences action.

Parameters obj_code – objCode (type: string)

create_unsupported_worker_access_level_for_testing()The createUnsupportedWorkerAccessLevelForTesting action.

customerReference for customer

customer_idField for customerID

descriptionField for description

description_keyField for descriptionKey

display_access_typeField for displayAccessType

154 Chapter 2. Detailed Documentation

Page 159: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

ext_ref_idField for extRefID

field_access_privilegesField for fieldAccessPrivileges

filter_actions_for_external(obj_code=None, action_types=None)The filterActionsForExternal action.

Parameters

• obj_code – objCode (type: string)

• action_types – actionTypes (type: string[])

Returns string[]

filter_available_actions(user_id=None, obj_code=None, action_types=None)The filterAvailableActions action.

Parameters

• user_id – userID (type: string)

• obj_code – objCode (type: string)

• action_types – actionTypes (type: string[])

Returns string[]

get_access_level_permissions_for_obj_code(obj_code=None, access_level_ids=None)The getAccessLevelPermissionsForObjCode action.

Parameters

• obj_code – objCode (type: string)

• access_level_ids – accessLevelIDs (type: string[])

Returns map

get_default_access_permissions(license_type=None)The getDefaultAccessPermissions action.

Parameters license_type – licenseType (type: com.attask.common.constants.LicenseTypeEnum)

Returns map

get_default_access_rule_preferences()The getDefaultAccessRulePreferences action.

Returns map

get_default_forbidden_actions(obj_code=None, obj_id=None)The getDefaultForbiddenActions action.

Parameters

• obj_code – objCode (type: string)

• obj_id – objID (type: string)

Returns map

get_maximum_access_permissions(license_type=None)The getMaximumAccessPermissions action.

Parameters license_type – licenseType (type: com.attask.common.constants.LicenseTypeEnum)

2.2. API Reference 155

Page 160: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

Returns map

get_security_parent_ids(obj_code=None, obj_id=None)The getSecurityParentIDs action.

Parameters

• obj_code – objCode (type: string)

• obj_id – objID (type: string)

Returns map

get_security_parent_obj_code(obj_code=None, obj_id=None)The getSecurityParentObjCode action.

Parameters

• obj_code – objCode (type: string)

• obj_id – objID (type: string)

Returns string

get_user_accessor_ids(user_id=None)The getUserAccessorIDs action.

Parameters user_id – userID (type: string)

Returns string[]

get_viewable_object_obj_codes()The getViewableObjectObjCodes action.

Returns string[]

has_any_access(obj_code=None, action_type=None)The hasAnyAccess action.

Parameters

• obj_code – objCode (type: string)

• action_type – actionType (type: com.attask.common.constants.ActionTypeEnum)

Returns java.lang.Boolean

has_reference(ids=None)The hasReference action.

Parameters ids – ids (type: string[])

Returns java.lang.Boolean

is_adminField for isAdmin

is_unsupported_worker_licenseField for isUnsupportedWorkerLicense

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

last_updated_dateField for lastUpdatedDate

156 Chapter 2. Detailed Documentation

Page 161: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

legacy_access_level_idField for legacyAccessLevelID

legacy_diagnostics()The legacyDiagnostics action.

Returns map

license_typeField for licenseType

nameField for name

name_keyField for nameKey

obj_idField for objID

obj_obj_codeField for objObjCode

rankField for rank

security_model_typeField for securityModelType

set_access_rule_preferences(access_rule_preferences=None)The setAccessRulePreferences action.

Parameters access_rule_preferences – accessRulePreferences (type: string[])

class workfront.versions.unsupported.AccessLevelPermissions(session=None,**fields)

Object for ALVPER

access_levelReference for accessLevel

access_level_idField for accessLevelID

core_actionField for coreAction

customerReference for customer

customer_idField for customerID

forbidden_actionsField for forbiddenActions

is_adminField for isAdmin

obj_obj_codeField for objObjCode

secondary_actionsField for secondaryActions

2.2. API Reference 157

Page 162: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

class workfront.versions.unsupported.AccessRequest(session=None, **fields)Object for ACSREQ

actionField for action

auto_generatedField for autoGenerated

auto_share_actionField for autoShareAction

awaiting_approvalsCollection for awaitingApprovals

customerReference for customer

customer_idField for customerID

grant_access(access_request_id=None, action_type=None, forbidden_actions=None)The grantAccess action.

Parameters

• access_request_id – accessRequestID (type: string)

• action_type – actionType (type: string)

• forbidden_actions – forbiddenActions (type: string[])

grant_object_access(obj_code=None, id=None, accessor_id=None, action_type=None, forbid-den_actions=None)

The grantObjectAccess action.

Parameters

• obj_code – objCode (type: string)

• id – id (type: string)

• accessor_id – accessorID (type: string)

• action_type – actionType (type: string)

• forbidden_actions – forbiddenActions (type: string[])

granterReference for granter

granter_idField for granterID

ignore(access_request_id=None)The ignore action.

Parameters access_request_id – accessRequestID (type: string)

last_remind_dateField for lastRemindDate

last_update_dateField for lastUpdateDate

messageField for message

158 Chapter 2. Detailed Documentation

Page 163: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

recall(access_request_id=None)The recall action.

Parameters access_request_id – accessRequestID (type: string)

remind(access_request_id=None)The remind action.

Parameters access_request_id – accessRequestID (type: string)

request_access(obj_code=None, obj_id=None, requestee_id=None, core_action=None, mes-sage=None)

The requestAccess action.

Parameters

• obj_code – objCode (type: string)

• obj_id – objID (type: string)

• requestee_id – requesteeID (type: string)

• core_action – coreAction (type: com.attask.common.constants.ActionTypeEnum)

• message – message (type: string)

request_dateField for requestDate

requested_obj_codeField for requestedObjCode

requested_obj_idField for requestedObjID

requested_object_nameField for requestedObjectName

requestorReference for requestor

requestor_idField for requestorID

statusField for status

class workfront.versions.unsupported.AccessRule(session=None, **fields)Object for ACSRUL

accessor_idField for accessorID

accessor_obj_codeField for accessorObjCode

ancestor_idField for ancestorID

ancestor_obj_codeField for ancestorObjCode

core_actionField for coreAction

2.2. API Reference 159

Page 164: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

customerReference for customer

customer_idField for customerID

forbidden_actionsField for forbiddenActions

is_inheritedField for isInherited

secondary_actionsField for secondaryActions

security_obj_codeField for securityObjCode

security_obj_idField for securityObjID

class workfront.versions.unsupported.AccessRulePreference(session=None, **fields)Object for ARPREF

access_levelReference for accessLevel

access_level_idField for accessLevelID

accessor_idField for accessorID

accessor_obj_codeField for accessorObjCode

core_actionField for coreAction

customerReference for customer

customer_idField for customerID

forbidden_actionsField for forbiddenActions

secondary_actionsField for secondaryActions

security_obj_codeField for securityObjCode

templateReference for template

template_idField for templateID

userReference for user

160 Chapter 2. Detailed Documentation

Page 165: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

user_idField for userID

class workfront.versions.unsupported.AccessScope(session=None, **fields)Object for ACSCP

allow_non_view_externalField for allowNonViewExternal

allow_non_view_hdField for allowNonViewHD

allow_non_view_reviewField for allowNonViewReview

allow_non_view_teamField for allowNonViewTeam

allow_non_view_tsField for allowNonViewTS

app_globalReference for appGlobal

app_global_idField for appGlobalID

customerReference for customer

customer_idField for customerID

descriptionField for description

description_keyField for descriptionKey

display_orderField for displayOrder

nameField for name

name_keyField for nameKey

obj_idField for objID

obj_obj_codeField for objObjCode

scope_expressionField for scopeExpression

scope_obj_codeField for scopeObjCode

class workfront.versions.unsupported.AccessScopeAction(session=None, **fields)Object for ASCPAT

2.2. API Reference 161

Page 166: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

access_levelReference for accessLevel

access_level_idField for accessLevelID

access_scopeReference for accessScope

access_scope_idField for accessScopeID

actionsField for actions

customerReference for customer

customer_idField for customerID

scope_obj_codeField for scopeObjCode

class workfront.versions.unsupported.AccessToken(session=None, **fields)Object for ACSTOK

actionField for action

calendarReference for calendar

calendar_idField for calendarID

customerReference for customer

customer_idField for customerID

documentReference for document

document_idField for documentID

document_requestReference for documentRequest

document_request_idField for documentRequestID

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

162 Chapter 2. Detailed Documentation

Page 167: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

expire_dateField for expireDate

ref_obj_codeField for refObjCode

ref_obj_idField for refObjID

token_typeField for tokenType

userReference for user

user_idField for userID

valueField for value

class workfront.versions.unsupported.AccountRep(session=None, **fields)Object for ACNTRP

admin_levelField for adminLevel

descriptionField for description

email_addrField for emailAddr

ext_ref_idField for extRefID

first_nameField for firstName

is_activeField for isActive

last_nameField for lastName

passwordField for password

phone_numberField for phoneNumber

resellerReference for reseller

reseller_idField for resellerID

ui_codeField for uiCode

usernameField for username

2.2. API Reference 163

Page 168: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

class workfront.versions.unsupported.Acknowledgement(session=None, **fields)Object for ACK

acknowledge(obj_code=None, obj_id=None)The acknowledge action.

Parameters

• obj_code – objCode (type: string)

• obj_id – objID (type: string)

Returns string

acknowledge_many(obj_code_ids=None)The acknowledgeMany action.

Parameters obj_code_ids – objCodeIDs (type: map)

Returns string[]

acknowledgement_typeField for acknowledgementType

customerReference for customer

customer_idField for customerID

entry_dateField for entryDate

ownerReference for owner

owner_idField for ownerID

reference_object_nameField for referenceObjectName

targetReference for target

target_idField for targetID

unacknowledge(obj_code=None, obj_id=None)The unacknowledge action.

Parameters

• obj_code – objCode (type: string)

• obj_id – objID (type: string)

class workfront.versions.unsupported.Announcement(session=None, **fields)Object for ANCMNT

actual_subjectField for actualSubject

announcement_recipientsCollection for announcementRecipients

164 Chapter 2. Detailed Documentation

Page 169: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

announcement_typeField for announcementType

attachmentsCollection for attachments

contentField for content

customer_recipientsField for customerRecipients

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

file_handle(attachment_id=None)The fileHandle action.

Parameters attachment_id – attachmentID (type: string)

Returns string

formatted_recipientsField for formattedRecipients

has_attachmentsField for hasAttachments

is_draftField for isDraft

last_sent_dateField for lastSentDate

other_recipient_namesField for otherRecipientNames

preview_user_idField for previewUserID

recipient_typesField for recipientTypes

send_draftField for sendDraft

subjectField for subject

summaryField for summary

typeField for type

zip_announcement_attachments(announcement_id=None)The zipAnnouncementAttachments action.

Parameters announcement_id – announcementID (type: string)

2.2. API Reference 165

Page 170: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

Returns string

class workfront.versions.unsupported.AnnouncementAttachment(session=None,**fields)

Object for ANMATT

announcementReference for announcement

announcement_idField for announcementID

doc_sizeField for docSize

file_extensionField for fileExtension

format_doc_sizeField for formatDocSize

forward_attachments(announcement_id=None, old_attachment_ids=None,new_attachments=None)

The forwardAttachments action.

Parameters

• announcement_id – announcementID (type: string)

• old_attachment_ids – oldAttachmentIDs (type: string[])

• new_attachments – newAttachments (type: map)

nameField for name

upload_attachments(announcement_id=None, attachments=None)The uploadAttachments action.

Parameters

• announcement_id – announcementID (type: string)

• attachments – attachments (type: map)

class workfront.versions.unsupported.AnnouncementOptOut(session=None, **fields)Object for AMNTO

announcement_opt_out(announcement_opt_out_types=None)The announcementOptOut action.

Parameters announcement_opt_out_types – announcementOptOutTypes (type:string[])

announcement_typeField for announcementType

customerReference for customer

customer_idField for customerID

customer_nameField for customerName

166 Chapter 2. Detailed Documentation

Page 171: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

opt_out_dateField for optOutDate

typeField for type

userReference for user

user_first_nameField for userFirstName

user_idField for userID

user_last_nameField for userLastName

class workfront.versions.unsupported.AnnouncementRecipient(session=None, **fields)Object for ANCREC

announcementReference for announcement

announcement_idField for announcementID

companyReference for company

company_idField for companyID

customerReference for customer

customer_idField for customerID

groupReference for group

group_idField for groupID

recipient_idField for recipientID

recipient_obj_codeField for recipientObjCode

roleReference for role

role_idField for roleID

teamReference for team

team_idField for teamID

2.2. API Reference 167

Page 172: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

userReference for user

user_idField for userID

class workfront.versions.unsupported.AppBuild(session=None, **fields)Object for APPBLD

build_idField for buildID

build_numberField for buildNumber

entry_dateField for entryDate

class workfront.versions.unsupported.AppEvent(session=None, **fields)Object for APEVT

app_globalReference for appGlobal

app_global_idField for appGlobalID

customerReference for customer

customer_idField for customerID

descriptionField for description

description_keyField for descriptionKey

event_obj_codeField for eventObjCode

event_typeField for eventType

nameField for name

name_keyField for nameKey

obj_idField for objID

obj_obj_codeField for objObjCode

query_expressionField for queryExpression

script_expressionField for scriptExpression

168 Chapter 2. Detailed Documentation

Page 173: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

class workfront.versions.unsupported.AppGlobal(session=None, **fields)Object for APGLOB

access_levelsCollection for accessLevels

access_scopesCollection for accessScopes

app_eventsCollection for appEvents

expense_typesCollection for expenseTypes

external_sectionsCollection for externalSections

features_mappingCollection for featuresMapping

hour_typesCollection for hourTypes

layout_templatesCollection for layoutTemplates

meta_recordsCollection for metaRecords

portal_profilesCollection for portalProfiles

portal_sectionsCollection for portalSections

ui_filtersCollection for uiFilters

ui_group_bysCollection for uiGroupBys

ui_viewsCollection for uiViews

class workfront.versions.unsupported.AppInfo(session=None, **fields)Object for APPINF

attask_versionField for attaskVersion

build_numberField for buildNumber

has_upgrade_errorField for hasUpgradeError

last_updateField for lastUpdate

upgrade_buildField for upgradeBuild

2.2. API Reference 169

Page 174: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

upgrade_stepField for upgradeStep

class workfront.versions.unsupported.Approval(session=None, **fields)Object for APPROVAL

access_rulesCollection for accessRules

accessor_idsField for accessorIDs

actual_benefitField for actualBenefit

actual_completion_dateField for actualCompletionDate

actual_costField for actualCost

actual_durationField for actualDuration

actual_duration_expressionField for actualDurationExpression

actual_duration_minutesField for actualDurationMinutes

actual_expense_costField for actualExpenseCost

actual_hours_last_monthField for actualHoursLastMonth

actual_hours_last_three_monthsField for actualHoursLastThreeMonths

actual_hours_this_monthField for actualHoursThisMonth

actual_hours_two_months_agoField for actualHoursTwoMonthsAgo

actual_labor_costField for actualLaborCost

actual_revenueField for actualRevenue

actual_risk_costField for actualRiskCost

actual_start_dateField for actualStartDate

actual_valueField for actualValue

actual_workField for actualWork

170 Chapter 2. Detailed Documentation

Page 175: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

actual_work_requiredField for actualWorkRequired

actual_work_required_expressionField for actualWorkRequiredExpression

age_range_as_stringField for ageRangeAsString

alignmentField for alignment

alignment_score_cardReference for alignmentScoreCard

alignment_score_card_idField for alignmentScoreCardID

alignment_valuesCollection for alignmentValues

all_approved_hoursField for allApprovedHours

all_hoursCollection for allHours

all_prioritiesCollection for allPriorities

all_severitiesCollection for allSeverities

all_statusesCollection for allStatuses

all_unapproved_hoursField for allUnapprovedHours

approval_est_start_dateField for approvalEstStartDate

approval_planned_start_dateField for approvalPlannedStartDate

approval_planned_start_dayField for approvalPlannedStartDay

approval_processReference for approvalProcess

approval_process_idField for approvalProcessID

approval_projected_start_dateField for approvalProjectedStartDate

approver_statusesCollection for approverStatuses

approvers_stringField for approversString

2.2. API Reference 171

Page 176: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

assigned_toReference for assignedTo

assigned_to_idField for assignedToID

assignmentsCollection for assignments

assignments_list_stringField for assignmentsListString

audit_noteField for auditNote

audit_typesField for auditTypes

audit_user_idsField for auditUserIDs

auto_baseline_recur_onField for autoBaselineRecurOn

auto_baseline_recurrence_typeField for autoBaselineRecurrenceType

auto_closure_dateField for autoClosureDate

awaiting_approvalsCollection for awaitingApprovals

backlog_orderField for backlogOrder

baselinesCollection for baselines

bccompletion_stateField for BCCompletionState

billed_revenueField for billedRevenue

billing_amountField for billingAmount

billing_recordReference for billingRecord

billing_record_idField for billingRecordID

billing_recordsCollection for billingRecords

budgetField for budget

budget_statusField for budgetStatus

172 Chapter 2. Detailed Documentation

Page 177: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

budgeted_completion_dateField for budgetedCompletionDate

budgeted_costField for budgetedCost

budgeted_hoursField for budgetedHours

budgeted_labor_costField for budgetedLaborCost

budgeted_start_dateField for budgetedStartDate

business_case_status_labelField for businessCaseStatusLabel

can_startField for canStart

categoryReference for category

category_idField for categoryID

childrenCollection for children

colorField for color

commit_dateField for commitDate

commit_date_rangeField for commitDateRange

companyReference for company

company_idField for companyID

completion_pending_dateField for completionPendingDate

completion_typeField for completionType

conditionField for condition

condition_typeField for conditionType

constraint_dateField for constraintDate

converted_op_task_entry_dateField for convertedOpTaskEntryDate

2.2. API Reference 173

Page 178: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

converted_op_task_nameField for convertedOpTaskName

converted_op_task_originatorReference for convertedOpTaskOriginator

converted_op_task_originator_idField for convertedOpTaskOriginatorID

cost_amountField for costAmount

cost_typeField for costType

cpiField for cpi

csiField for csi

currencyField for currency

current_approval_stepReference for currentApprovalStep

current_approval_step_idField for currentApprovalStepID

current_status_durationField for currentStatusDuration

customerReference for customer

customer_idField for customerID

days_lateField for daysLate

default_baselineReference for defaultBaseline

default_baseline_taskReference for defaultBaselineTask

default_forbidden_contribute_actionsField for defaultForbiddenContributeActions

default_forbidden_manage_actionsField for defaultForbiddenManageActions

default_forbidden_view_actionsField for defaultForbiddenViewActions

deliverable_score_cardReference for deliverableScoreCard

deliverable_score_card_idField for deliverableScoreCardID

174 Chapter 2. Detailed Documentation

Page 179: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

deliverable_success_scoreField for deliverableSuccessScore

deliverable_success_score_ratioField for deliverableSuccessScoreRatio

deliverable_valuesCollection for deliverableValues

descriptionField for description

display_orderField for displayOrder

display_queue_breadcrumbField for displayQueueBreadcrumb

document_requestsCollection for documentRequests

documentsCollection for documents

done_statusesCollection for doneStatuses

due_dateField for dueDate

durationField for duration

duration_expressionField for durationExpression

duration_minutesField for durationMinutes

duration_typeField for durationType

duration_unitField for durationUnit

eacField for eac

eac_calculation_methodField for eacCalculationMethod

enable_auto_baselinesField for enableAutoBaselines

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

2.2. API Reference 175

Page 180: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

est_completion_dateField for estCompletionDate

est_start_dateField for estStartDate

estimateField for estimate

exchange_rateReference for exchangeRate

exchange_ratesCollection for exchangeRates

expensesCollection for expenses

ext_ref_idField for extRefID

filter_hour_typesField for filterHourTypes

finance_last_update_dateField for financeLastUpdateDate

first_responseField for firstResponse

fixed_costField for fixedCost

fixed_end_dateField for fixedEndDate

fixed_revenueField for fixedRevenue

fixed_start_dateField for fixedStartDate

groupReference for group

group_idField for groupID

handoff_dateField for handoffDate

has_budget_conflictField for hasBudgetConflict

has_calc_errorField for hasCalcError

has_completion_constraintField for hasCompletionConstraint

has_documentsField for hasDocuments

176 Chapter 2. Detailed Documentation

Page 181: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

has_expensesField for hasExpenses

has_messagesField for hasMessages

has_notesField for hasNotes

has_rate_overrideField for hasRateOverride

has_resolvablesField for hasResolvables

has_start_constraintField for hasStartConstraint

has_timed_notificationsField for hasTimedNotifications

has_timeline_exceptionField for hasTimelineException

hour_typesCollection for hourTypes

hoursCollection for hours

hours_per_pointField for hoursPerPoint

how_oldField for howOld

indentField for indent

is_agileField for isAgile

is_completeField for isComplete

is_criticalField for isCritical

is_duration_lockedField for isDurationLocked

is_help_deskField for isHelpDesk

is_in_my_approvals(object_type=None, object_id=None)The isInMyApprovals action.

Parameters

• object_type – objectType (type: string)

• object_id – objectID (type: string)

Returns java.lang.Boolean

2.2. API Reference 177

Page 182: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

is_in_my_submitted_approvals(object_type=None, object_id=None)The isInMySubmittedApprovals action.

Parameters

• object_type – objectType (type: string)

• object_id – objectID (type: string)

Returns java.lang.Boolean

is_leveling_excludedField for isLevelingExcluded

is_project_deadField for isProjectDead

is_readyField for isReady

is_status_completeField for isStatusComplete

is_work_required_lockedField for isWorkRequiredLocked

iterationReference for iteration

iteration_idField for iterationID

last_calc_dateField for lastCalcDate

last_condition_noteReference for lastConditionNote

last_condition_note_idField for lastConditionNoteID

last_noteReference for lastNote

last_note_idField for lastNoteID

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

leveling_modeField for levelingMode

leveling_start_delayField for levelingStartDelay

leveling_start_delay_expressionField for levelingStartDelayExpression

178 Chapter 2. Detailed Documentation

Page 183: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

leveling_start_delay_minutesField for levelingStartDelayMinutes

lucid_migration_dateField for lucidMigrationDate

master_taskReference for masterTask

master_task_idField for masterTaskID

milestoneReference for milestone

milestone_idField for milestoneID

milestone_pathReference for milestonePath

milestone_path_idField for milestonePathID

nameField for name

next_auto_baseline_dateField for nextAutoBaselineDate

notification_recordsCollection for notificationRecords

number_of_childrenField for numberOfChildren

number_open_op_tasksField for numberOpenOpTasks

object_categoriesCollection for objectCategories

olvField for olv

op_task_typeField for opTaskType

op_task_type_labelField for opTaskTypeLabel

op_tasksCollection for opTasks

open_op_tasksCollection for openOpTasks

optimization_scoreField for optimizationScore

original_durationField for originalDuration

2.2. API Reference 179

Page 184: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

original_work_requiredField for originalWorkRequired

ownerReference for owner

owner_idField for ownerID

owner_privilegesField for ownerPrivileges

parameter_valuesCollection for parameterValues

parentReference for parent

parent_idField for parentID

parent_lagField for parentLag

parent_lag_typeField for parentLagType

pending_calculationField for pendingCalculation

pending_predecessorsField for pendingPredecessors

pending_update_methodsField for pendingUpdateMethods

percent_completeField for percentComplete

performance_index_methodField for performanceIndexMethod

personalField for personal

planned_benefitField for plannedBenefit

planned_completion_dateField for plannedCompletionDate

planned_costField for plannedCost

planned_date_alignmentField for plannedDateAlignment

planned_durationField for plannedDuration

planned_duration_minutesField for plannedDurationMinutes

180 Chapter 2. Detailed Documentation

Page 185: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

planned_expense_costField for plannedExpenseCost

planned_hours_alignmentField for plannedHoursAlignment

planned_labor_costField for plannedLaborCost

planned_revenueField for plannedRevenue

planned_risk_costField for plannedRiskCost

planned_start_dateField for plannedStartDate

planned_valueField for plannedValue

pop_accountReference for popAccount

pop_account_idField for popAccountID

portfolioReference for portfolio

portfolio_idField for portfolioID

portfolio_priorityField for portfolioPriority

predecessor_expressionField for predecessorExpression

predecessorsCollection for predecessors

previous_statusField for previousStatus

primary_assignmentReference for primaryAssignment

priorityField for priority

programReference for program

program_idField for programID

progress_statusField for progressStatus

projectReference for project

2.2. API Reference 181

Page 186: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

project_idField for projectID

project_user_rolesCollection for projectUserRoles

project_usersCollection for projectUsers

projected_completion_dateField for projectedCompletionDate

projected_duration_minutesField for projectedDurationMinutes

projected_start_dateField for projectedStartDate

queue_defReference for queueDef

queue_def_idField for queueDefID

queue_topicReference for queueTopic

queue_topic_breadcrumbField for queueTopicBreadcrumb

queue_topic_idField for queueTopicID

ratesCollection for rates

recurrence_numberField for recurrenceNumber

recurrence_ruleReference for recurrenceRule

recurrence_rule_idField for recurrenceRuleID

reference_numberField for referenceNumber

reference_obj_codeField for referenceObjCode

reference_obj_idField for referenceObjID

rejection_issueReference for rejectionIssue

rejection_issue_idField for rejectionIssueID

remaining_costField for remainingCost

182 Chapter 2. Detailed Documentation

Page 187: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

remaining_duration_minutesField for remainingDurationMinutes

remaining_revenueField for remainingRevenue

remaining_risk_costField for remainingRiskCost

reserved_timeReference for reservedTime

reserved_time_idField for reservedTimeID

resolution_timeField for resolutionTime

resolvablesCollection for resolvables

resolve_op_taskReference for resolveOpTask

resolve_op_task_idField for resolveOpTaskID

resolve_projectReference for resolveProject

resolve_project_idField for resolveProjectID

resolve_taskReference for resolveTask

resolve_task_idField for resolveTaskID

resolving_obj_codeField for resolvingObjCode

resolving_obj_idField for resolvingObjID

resource_allocationsCollection for resourceAllocations

resource_poolReference for resourcePool

resource_pool_idField for resourcePoolID

resource_scopeField for resourceScope

revenue_typeField for revenueType

riskField for risk

2.2. API Reference 183

Page 188: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

risk_performance_indexField for riskPerformanceIndex

risksCollection for risks

roiField for roi

roleReference for role

role_idField for roleID

rolesCollection for roles

routing_rulesCollection for routingRules

scheduleReference for schedule

schedule_idField for scheduleID

schedule_modeField for scheduleMode

security_ancestorsCollection for securityAncestors

security_ancestors_disabledField for securityAncestorsDisabled

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

selected_on_portfolio_optimizerField for selectedOnPortfolioOptimizer

severityField for severity

sharing_settingsReference for sharingSettings

show_commit_dateField for showCommitDate

show_conditionField for showCondition

show_statusField for showStatus

slack_dateField for slackDate

184 Chapter 2. Detailed Documentation

Page 189: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

source_obj_codeField for sourceObjCode

source_obj_idField for sourceObjID

source_taskReference for sourceTask

source_task_idField for sourceTaskID

spiField for spi

sponsorReference for sponsor

sponsor_idField for sponsorID

statusField for status

status_equates_withField for statusEquatesWith

status_updateField for statusUpdate

submitted_byReference for submittedBy

submitted_by_idField for submittedByID

successorsCollection for successors

summary_completion_typeField for summaryCompletionType

task_constraintField for taskConstraint

task_numberField for taskNumber

task_number_predecessor_stringField for taskNumberPredecessorString

tasksCollection for tasks

teamReference for team

team_assignmentReference for teamAssignment

team_idField for teamID

2.2. API Reference 185

Page 190: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

templateReference for template

template_idField for templateID

template_taskReference for templateTask

template_task_idField for templateTaskID

timeline_exception_infoField for timelineExceptionInfo

total_hoursField for totalHours

total_op_task_countField for totalOpTaskCount

total_task_countField for totalTaskCount

tracking_modeField for trackingMode

update_typeField for updateType

updatesCollection for updates

urlField for URL

url_Field for url

versionField for version

wbsField for wbs

workField for work

work_itemReference for workItem

work_requiredField for workRequired

work_required_expressionField for workRequiredExpression

work_unitField for workUnit

class workfront.versions.unsupported.ApprovalPath(session=None, **fields)Object for ARVPTH

186 Chapter 2. Detailed Documentation

Page 191: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

approval_processReference for approvalProcess

approval_process_idField for approvalProcessID

approval_stepsCollection for approvalSteps

customerReference for customer

customer_idField for customerID

duration_minutesField for durationMinutes

duration_unitField for durationUnit

rejected_statusField for rejectedStatus

rejected_status_labelField for rejectedStatusLabel

should_create_issueField for shouldCreateIssue

target_statusField for targetStatus

target_status_labelField for targetStatusLabel

class workfront.versions.unsupported.ApprovalProcess(session=None, **fields)Object for ARVPRC

accessor_idsField for accessorIDs

approval_obj_codeField for approvalObjCode

approval_pathsCollection for approvalPaths

approval_statusesField for approvalStatuses

customerReference for customer

customer_idField for customerID

descriptionField for description

duration_minutesField for durationMinutes

2.2. API Reference 187

Page 192: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

ext_ref_idField for extRefID

is_privateField for isPrivate

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

nameField for name

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

class workfront.versions.unsupported.ApprovalProcessAttachable(session=None,**fields)

Object for APRPROCATCH

allowed_actionsField for allowedActions

approval_est_start_dateField for approvalEstStartDate

approval_planned_start_dateField for approvalPlannedStartDate

approval_planned_start_dayField for approvalPlannedStartDay

approval_processReference for approvalProcess

approval_process_idField for approvalProcessID

approval_projected_start_dateField for approvalProjectedStartDate

approver_statusesCollection for approverStatuses

categoryReference for category

188 Chapter 2. Detailed Documentation

Page 193: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

category_idField for categoryID

current_approval_stepReference for currentApprovalStep

current_approval_step_idField for currentApprovalStepID

force_editField for forceEdit

object_categoriesCollection for objectCategories

parameter_valuesCollection for parameterValues

previous_statusField for previousStatus

rejection_issueReference for rejectionIssue

rejection_issue_idField for rejectionIssueID

submitted_byReference for submittedBy

submitted_by_idField for submittedByID

class workfront.versions.unsupported.ApprovalStep(session=None, **fields)Object for ARVSTP

approval_pathReference for approvalPath

approval_path_idField for approvalPathID

approval_typeField for approvalType

customerReference for customer

customer_idField for customerID

nameField for name

sequence_numberField for sequenceNumber

step_approversCollection for stepApprovers

class workfront.versions.unsupported.ApproverStatus(session=None, **fields)Object for ARVSTS

2.2. API Reference 189

Page 194: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

approvable_obj_codeField for approvableObjCode

approvable_obj_idField for approvableObjID

approval_stepReference for approvalStep

approval_step_idField for approvalStepID

approved_byReference for approvedBy

approved_by_idField for approvedByID

customerReference for customer

customer_idField for customerID

delegate_userReference for delegateUser

delegate_user_idField for delegateUserID

is_overriddenField for isOverridden

op_taskReference for opTask

op_task_idField for opTaskID

overridden_userReference for overriddenUser

overridden_user_idField for overriddenUserID

projectReference for project

project_idField for projectID

statusField for status

step_approverReference for stepApprover

step_approver_idField for stepApproverID

taskReference for task

190 Chapter 2. Detailed Documentation

Page 195: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

task_idField for taskID

wildcard_userReference for wildcardUser

wildcard_user_idField for wildcardUserID

class workfront.versions.unsupported.Assignment(session=None, **fields)Object for ASSGN

accessor_idsField for accessorIDs

actual_work_completedField for actualWorkCompleted

actual_work_per_day_start_dateField for actualWorkPerDayStartDate

assigned_byReference for assignedBy

assigned_by_idField for assignedByID

assigned_toReference for assignedTo

assigned_to_idField for assignedToID

assignment_percentField for assignmentPercent

avg_work_per_dayField for avgWorkPerDay

customerReference for customer

customer_idField for customerID

feedback_statusField for feedbackStatus

is_primaryField for isPrimary

is_team_assignmentField for isTeamAssignment

olvField for olv

op_taskReference for opTask

op_task_idField for opTaskID

2.2. API Reference 191

Page 196: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

planned_user_allocation_percentageField for plannedUserAllocationPercentage

projectReference for project

project_idField for projectID

projected_avg_work_per_dayField for projectedAvgWorkPerDay

projected_user_allocation_percentageField for projectedUserAllocationPercentage

roleReference for role

role_idField for roleID

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

statusField for status

taskReference for task

task_idField for taskID

teamReference for team

team_idField for teamID

workField for work

work_itemReference for workItem

work_requiredField for workRequired

work_unitField for workUnit

class workfront.versions.unsupported.AuditLoginAsSession(session=None, **fields)Object for AUDS

action_countField for actionCount

all_accessed_users()The allAccessedUsers action.

Returns map

192 Chapter 2. Detailed Documentation

Page 197: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

all_admins()The allAdmins action.

Returns map

audit_session(user_id=None, target_user_id=None)The auditSession action.

Parameters

• user_id – userID (type: string)

• target_user_id – targetUserID (type: string)

Returns string

customerReference for customer

customer_idField for customerID

end_audit(session_id=None)The endAudit action.

Parameters session_id – sessionID (type: string)

end_dateField for endDate

get_accessed_users(user_id=None)The getAccessedUsers action.

Parameters user_id – userID (type: string)

Returns map

journal_entriesCollection for journalEntries

note_countField for noteCount

notesCollection for notes

session_idField for sessionID

start_dateField for startDate

target_userReference for targetUser

target_user_displayField for targetUserDisplay

target_user_idField for targetUserID

userReference for user

user_displayField for userDisplay

2.2. API Reference 193

Page 198: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

user_idField for userID

who_accessed_user(user_id=None)The whoAccessedUser action.

Parameters user_id – userID (type: string)

Returns map

class workfront.versions.unsupported.Authentication(session=None, **fields)Object for AUTH

create_public_session()The createPublicSession action.

Returns map

create_schema()The createSchema action.

create_session()The createSession action.

Returns map

get_days_to_expiration_for_user()The getDaysToExpirationForUser action.

Returns java.lang.Integer

get_password_complexity_by_token(token=None)The getPasswordComplexityByToken action.

Parameters token – token (type: string)

Returns string

get_password_complexity_by_username(username=None)The getPasswordComplexityByUsername action.

Parameters username – username (type: string)

Returns string

get_ssooption_by_domain(domain=None)The getSSOOptionByDomain action.

Parameters domain – domain (type: string)

Returns map

get_upgrades_info()The getUpgradesInfo action.

Returns map

login_with_user_name(session_id=None, username=None)The loginWithUserName action.

Parameters

• session_id – sessionID (type: string)

• username – username (type: string)

Returns map

194 Chapter 2. Detailed Documentation

Page 199: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

login_with_user_name_and_password(username=None, password=None)The loginWithUserNameAndPassword action.

Parameters

• username – username (type: string)

• password – password (type: string)

Returns map

logout(sso_user=None, is_mobile=None)The logout action.

Parameters

• sso_user – ssoUser (type: boolean)

• is_mobile – isMobile (type: boolean)

obj_codeField for objCode

perform_upgrade()The performUpgrade action.

reset_password(user_name=None, old_password=None, new_password=None)The resetPassword action.

Parameters

• user_name – userName (type: string)

• old_password – oldPassword (type: string)

• new_password – newPassword (type: string)

reset_password_by_token(token=None, new_password=None)The resetPasswordByToken action.

Parameters

• token – token (type: string)

• new_password – newPassword (type: string)

Returns string

upgrade_progress()The upgradeProgress action.

Returns map

class workfront.versions.unsupported.Avatar(session=None, **fields)Object for AVATAR

allowed_actionsField for allowedActions

avatar_dateField for avatarDate

avatar_download_urlField for avatarDownloadURL

avatar_sizeField for avatarSize

2.2. API Reference 195

Page 200: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

avatar_xField for avatarX

avatar_yField for avatarY

crop_unsaved_avatar_file(handle=None, width=None, height=None, avatar_x=None,avatar_y=None)

The cropUnsavedAvatarFile action.

Parameters

• handle – handle (type: string)

• width – width (type: int)

• height – height (type: int)

• avatar_x – avatarX (type: int)

• avatar_y – avatarY (type: int)

Returns string

get_avatar_data(obj_code=None, obj_id=None, size=None)The getAvatarData action.

Parameters

• obj_code – objCode (type: string)

• obj_id – objID (type: string)

• size – size (type: string)

Returns string

get_avatar_download_url(obj_code=None, obj_id=None, size=None, no_grayscale=None,public_token=None)

The getAvatarDownloadURL action.

Parameters

• obj_code – objCode (type: string)

• obj_id – objID (type: string)

• size – size (type: string)

• no_grayscale – noGrayscale (type: boolean)

• public_token – publicToken (type: string)

Returns string

get_avatar_file(obj_code=None, obj_id=None, size=None, no_grayscale=None)The getAvatarFile action.

Parameters

• obj_code – objCode (type: string)

• obj_id – objID (type: string)

• size – size (type: string)

• no_grayscale – noGrayscale (type: boolean)

Returns string

196 Chapter 2. Detailed Documentation

Page 201: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

handleField for handle

resize_unsaved_avatar_file(handle=None, width=None, height=None)The resizeUnsavedAvatarFile action.

Parameters

• handle – handle (type: string)

• width – width (type: int)

• height – height (type: int)

class workfront.versions.unsupported.AwaitingApproval(session=None, **fields)Object for AWAPVL

access_requestReference for accessRequest

access_request_idField for accessRequestID

approvable_idField for approvableID

approver_idField for approverID

customerReference for customer

customer_idField for customerID

documentReference for document

document_idField for documentID

entry_dateField for entryDate

get_my_awaiting_approvals_count()The getMyAwaitingApprovalsCount action.

Returns java.lang.Integer

get_my_awaiting_approvals_filtered_count(object_type=None)The getMyAwaitingApprovalsFilteredCount action.

Parameters object_type – objectType (type: string)

Returns java.lang.Integer

get_my_submitted_awaiting_approvals_count()The getMySubmittedAwaitingApprovalsCount action.

Returns java.lang.Integer

op_taskReference for opTask

op_task_idField for opTaskID

2.2. API Reference 197

Page 202: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

projectReference for project

project_idField for projectID

roleReference for role

role_idField for roleID

submitted_byReference for submittedBy

submitted_by_idField for submittedByID

taskReference for task

task_idField for taskID

teamReference for team

team_idField for teamID

timesheetReference for timesheet

timesheet_idField for timesheetID

userReference for user

user_idField for userID

class workfront.versions.unsupported.BackgroundJob(session=None, **fields)Object for BKGJOB

access_countField for accessCount

cache_keyField for cacheKey

can_enqueue_export()The canEnqueueExport action.

Returns java.lang.Boolean

changed_objectsField for changedObjects

customerReference for customer

customer_idField for customerID

198 Chapter 2. Detailed Documentation

Page 203: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

end_dateField for endDate

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

error_messageField for errorMessage

expiration_dateField for expirationDate

file_for_completed_job(increase_access_count=None)The fileForCompletedJob action.

Parameters increase_access_count – increaseAccessCount (type: boolean)

Returns string

handler_class_nameField for handlerClassName

max_progressField for maxProgress

migrate_journal_field_wild_card()The migrateJournalFieldWildCard action.

Returns string

migrate_ppmto_anaconda()The migratePPMToAnaconda action.

Returns string

percent_completeField for percentComplete

progressField for progress

progress_textField for progressText

running_jobs_count(handler_class_name=None)The runningJobsCount action.

Parameters handler_class_name – handlerClassName (type: string)

Returns java.lang.Integer

start_dateField for startDate

start_kick_start_download(export_object_map=None, objcodes=None, ex-clude_demo_data=None, new_ooxmlformat=None, popu-late_existing_data=None)

The startKickStartDownload action.

Parameters

2.2. API Reference 199

Page 204: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

• export_object_map – exportObjectMap (type: map)

• objcodes – objcodes (type: string[])

• exclude_demo_data – excludeDemoData (type: boolean)

• new_ooxmlformat – newOOXMLFormat (type: boolean)

• populate_existing_data – populateExistingData (type: boolean)

Returns string

statusField for status

class workfront.versions.unsupported.Baseline(session=None, **fields)Object for BLIN

actual_completion_dateField for actualCompletionDate

actual_costField for actualCost

actual_duration_minutesField for actualDurationMinutes

actual_start_dateField for actualStartDate

actual_work_requiredField for actualWorkRequired

auto_generatedField for autoGenerated

baseline_tasksCollection for baselineTasks

budgetField for budget

conditionField for condition

cpiField for cpi

csiField for csi

customerReference for customer

customer_idField for customerID

duration_minutesField for durationMinutes

eacField for eac

entry_dateField for entryDate

200 Chapter 2. Detailed Documentation

Page 205: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

est_completion_dateField for estCompletionDate

est_start_dateField for estStartDate

is_defaultField for isDefault

nameField for name

percent_completeField for percentComplete

planned_completion_dateField for plannedCompletionDate

planned_costField for plannedCost

planned_start_dateField for plannedStartDate

progress_statusField for progressStatus

projectReference for project

project_idField for projectID

projected_completion_dateField for projectedCompletionDate

projected_start_dateField for projectedStartDate

spiField for spi

work_requiredField for workRequired

class workfront.versions.unsupported.BaselineTask(session=None, **fields)Object for BSTSK

actual_completion_dateField for actualCompletionDate

actual_costField for actualCost

actual_duration_minutesField for actualDurationMinutes

actual_start_dateField for actualStartDate

actual_work_requiredField for actualWorkRequired

2.2. API Reference 201

Page 206: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

baselineReference for baseline

baseline_idField for baselineID

cpiField for cpi

csiField for csi

customerReference for customer

customer_idField for customerID

duration_minutesField for durationMinutes

duration_unitField for durationUnit

eacField for eac

entry_dateField for entryDate

est_completion_dateField for estCompletionDate

est_start_dateField for estStartDate

is_defaultField for isDefault

nameField for name

percent_completeField for percentComplete

planned_completion_dateField for plannedCompletionDate

planned_costField for plannedCost

planned_start_dateField for plannedStartDate

progress_statusField for progressStatus

projected_completion_dateField for projectedCompletionDate

projected_start_dateField for projectedStartDate

202 Chapter 2. Detailed Documentation

Page 207: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

spiField for spi

taskReference for task

task_idField for taskID

work_requiredField for workRequired

class workfront.versions.unsupported.BillingRecord(session=None, **fields)Object for BILL

accessor_idsField for accessorIDs

amountField for amount

billable_tasksCollection for billableTasks

billing_dateField for billingDate

customerReference for customer

customer_idField for customerID

descriptionField for description

display_nameField for displayName

expensesCollection for expenses

ext_ref_idField for extRefID

hoursCollection for hours

invoice_idField for invoiceID

other_amountField for otherAmount

po_numberField for poNumber

projectReference for project

project_idField for projectID

2.2. API Reference 203

Page 208: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

statusField for status

class workfront.versions.unsupported.Branding(session=None, **fields)Object for BRND

customerReference for customer

customer_idField for customerID

detailsField for details

last_update_dateField for lastUpdateDate

class workfront.versions.unsupported.BurndownEvent(session=None, **fields)Object for BDNEVT

apply_dateField for applyDate

burndown_obj_codeField for burndownObjCode

burndown_obj_idField for burndownObjID

customerReference for customer

customer_idField for customerID

delta_points_completeField for deltaPointsComplete

delta_total_itemsField for deltaTotalItems

delta_total_pointsField for deltaTotalPoints

entry_dateField for entryDate

event_obj_codeField for eventObjCode

event_obj_idField for eventObjID

is_completeField for isComplete

class workfront.versions.unsupported.CalendarEvent(session=None, **fields)Object for CALEVT

calendar_sectionReference for calendarSection

204 Chapter 2. Detailed Documentation

Page 209: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

calendar_section_idField for calendarSectionID

colorField for color

customerReference for customer

customer_idField for customerID

descriptionField for description

end_dateField for endDate

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

ext_ref_idField for extRefID

nameField for name

start_dateField for startDate

class workfront.versions.unsupported.CalendarFeedEntry(session=None, **fields)Object for CALITM

allowed_actionsField for allowedActions

assigned_to_idField for assignedToID

assigned_to_nameField for assignedToName

assigned_to_titleField for assignedToTitle

calendar_eventReference for calendarEvent

calendar_event_idField for calendarEventID

calendar_section_idsField for calendarSectionIDs

colorField for color

2.2. API Reference 205

Page 210: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

due_dateField for dueDate

end_dateField for endDate

obj_codeField for objCode

op_taskReference for opTask

op_task_idField for opTaskID

percent_completeField for percentComplete

projectReference for project

project_display_nameField for projectDisplayName

project_idField for projectID

ref_nameField for refName

ref_obj_codeField for refObjCode

ref_obj_idField for refObjID

start_dateField for startDate

statusField for status

taskReference for task

task_idField for taskID

class workfront.versions.unsupported.CalendarInfo(session=None, **fields)Object for CALEND

access_rulesCollection for accessRules

accessor_idsField for accessorIDs

calendar_sectionsCollection for calendarSections

create_first_calendar()The createFirstCalendar action.

Returns string

206 Chapter 2. Detailed Documentation

Page 211: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

create_project_section(project_id=None, color=None)The createProjectSection action.

Parameters

• project_id – projectID (type: string)

• color – color (type: string)

Returns string

customerReference for customer

customer_idField for customerID

is_publicField for isPublic

nameField for name

public_tokenField for publicToken

run_as_userReference for runAsUser

run_as_user_idField for runAsUserID

security_ancestorsCollection for securityAncestors

security_ancestors_disabledField for securityAncestorsDisabled

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

userReference for user

user_idField for userID

class workfront.versions.unsupported.CalendarPortalSection(session=None, **fields)Object for CALPTL

calendar_infoReference for calendarInfo

calendar_info_idField for calendarInfoID

customerReference for customer

customer_idField for customerID

2.2. API Reference 207

Page 212: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

nameField for name

obj_idField for objID

obj_obj_codeField for objObjCode

class workfront.versions.unsupported.CalendarSection(session=None, **fields)Object for CALSEC

cal_eventsField for calEvents

calendarReference for calendar

calendar_eventsCollection for calendarEvents

calendar_idField for calendarID

callable_expressionsCollection for callableExpressions

colorField for color

customerReference for customer

customer_idField for customerID

durationField for duration

filtersCollection for filters

get_concatenated_expression_form(expression=None)The getConcatenatedExpressionForm action.

Parameters expression – expression (type: string)

Returns string

get_pretty_expression_form(expression=None)The getPrettyExpressionForm action.

Parameters expression – expression (type: string)

Returns string

208 Chapter 2. Detailed Documentation

Page 213: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

milestoneField for milestone

nameField for name

planned_dateField for plannedDate

start_dateField for startDate

class workfront.versions.unsupported.CallableExpression(session=None, **fields)Object for CALEXP

customerReference for customer

customer_idField for customerID

expressionField for expression

ui_obj_codeField for uiObjCode

validate_callable_expression(custom_expression=None)The validateCallableExpression action.

Parameters custom_expression – customExpression (type: string)

class workfront.versions.unsupported.Category(session=None, **fields)Object for CTGY

access_rulesCollection for accessRules

accessor_idsField for accessorIDs

assign_categories(obj_id=None, obj_code=None, category_ids=None)The assignCategories action.

Parameters

• obj_id – objID (type: string)

• obj_code – objCode (type: string)

• category_ids – categoryIDs (type: string[])

assign_category(obj_id=None, obj_code=None, category_id=None)The assignCategory action.

Parameters

• obj_id – objID (type: string)

• obj_code – objCode (type: string)

• category_id – categoryID (type: string)

calculate_data_extension()The calculateDataExtension action.

2.2. API Reference 209

Page 214: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

cat_obj_codeField for catObjCode

category_access_rulesCollection for categoryAccessRules

category_cascade_rulesCollection for categoryCascadeRules

category_parametersCollection for categoryParameters

customerReference for customer

customer_idField for customerID

descriptionField for description

entered_byReference for enteredBy

entered_by_idField for enteredByID

ext_ref_idField for extRefID

get_expression_types()The getExpressionTypes action.

Returns map

get_filtered_categories(obj_code=None, object_id=None, object_map=None)The getFilteredCategories action.

Parameters

• obj_code – objCode (type: string)

• object_id – objectID (type: string)

• object_map – objectMap (type: map)

Returns string[]

get_formula_calculated_expression(custom_expression=None)The getFormulaCalculatedExpression action.

Parameters custom_expression – customExpression (type: string)

Returns string

get_friendly_calculated_expression(custom_expression=None)The getFriendlyCalculatedExpression action.

Parameters custom_expression – customExpression (type: string)

Returns string

groupReference for group

210 Chapter 2. Detailed Documentation

Page 215: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

group_idField for groupID

has_calculated_fieldsField for hasCalculatedFields

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

nameField for name

other_groupsCollection for otherGroups

reorder_categories(obj_id=None, obj_code=None, category_ids=None)The reorderCategories action.

Parameters

• obj_id – objID (type: string)

• obj_code – objCode (type: string)

• category_ids – categoryIDs (type: string[])

unassign_categories(obj_id=None, obj_code=None, category_ids=None)The unassignCategories action.

Parameters

• obj_id – objID (type: string)

• obj_code – objCode (type: string)

• category_ids – categoryIDs (type: string[])

unassign_category(obj_id=None, obj_code=None, category_id=None)The unassignCategory action.

Parameters

• obj_id – objID (type: string)

• obj_code – objCode (type: string)

• category_id – categoryID (type: string)

update_calculated_parameter_values(category_id=None, parameter_ids=None,should_auto_commit=None)

The updateCalculatedParameterValues action.

Parameters

• category_id – categoryID (type: string)

• parameter_ids – parameterIDs (type: string[])

• should_auto_commit – shouldAutoCommit (type: boolean)

validate_custom_expression(cat_obj_code=None, custom_expression=None)The validateCustomExpression action.

2.2. API Reference 211

Page 216: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

Parameters

• cat_obj_code – catObjCode (type: string)

• custom_expression – customExpression (type: string)

class workfront.versions.unsupported.CategoryAccessRule(session=None, **fields)Object for CATACR

accessor_idField for accessorID

accessor_obj_codeField for accessorObjCode

categoryReference for category

category_idField for categoryID

customerReference for customer

customer_idField for customerID

class workfront.versions.unsupported.CategoryCascadeRule(session=None, **fields)Object for CTCSRL

categoryReference for category

category_cascade_rule_matchesCollection for categoryCascadeRuleMatches

category_idField for categoryID

customerReference for customer

customer_idField for customerID

next_parameterReference for nextParameter

next_parameter_groupReference for nextParameterGroup

next_parameter_group_idField for nextParameterGroupID

next_parameter_idField for nextParameterID

otherwise_parameterReference for otherwiseParameter

otherwise_parameter_idField for otherwiseParameterID

rule_typeField for ruleType

212 Chapter 2. Detailed Documentation

Page 217: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

to_end_of_formField for toEndOfForm

class workfront.versions.unsupported.CategoryCascadeRuleMatch(session=None,**fields)

Object for CTCSRM

category_cascade_ruleReference for categoryCascadeRule

category_cascade_rule_idField for categoryCascadeRuleID

customerReference for customer

customer_idField for customerID

match_typeField for matchType

parameterReference for parameter

parameter_idField for parameterID

valueField for value

class workfront.versions.unsupported.CategoryParameter(session=None, **fields)Object for CTGYPA

categoryReference for category

category_idField for categoryID

category_parameter_expressionReference for categoryParameterExpression

custom_expressionField for customExpression

customerReference for customer

customer_idField for customerID

display_orderField for displayOrder

is_invalid_expressionField for isInvalidExpression

is_journaledField for isJournaled

is_requiredField for isRequired

2.2. API Reference 213

Page 218: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

parameterReference for parameter

parameter_groupReference for parameterGroup

parameter_group_idField for parameterGroupID

parameter_idField for parameterID

row_sharedField for rowShared

security_levelField for securityLevel

update_calculated_valuesField for updateCalculatedValues

view_security_levelField for viewSecurityLevel

class workfront.versions.unsupported.CategoryParameterExpression(session=None,**fields)

Object for CTGPEX

category_parameterReference for categoryParameter

custom_expressionField for customExpression

customerReference for customer

customer_idField for customerID

has_finance_fieldsField for hasFinanceFields

class workfront.versions.unsupported.Company(session=None, **fields)Object for CMPY

add_early_access(ids=None)The addEarlyAccess action.

Parameters ids – ids (type: string[])

calculate_data_extension()The calculateDataExtension action.

categoryReference for category

category_idField for categoryID

customerReference for customer

customer_idField for customerID

214 Chapter 2. Detailed Documentation

Page 219: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

default_interfaceField for defaultInterface

delete_early_access(ids=None)The deleteEarlyAccess action.

Parameters ids – ids (type: string[])

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

ext_ref_idField for extRefID

has_rate_overrideField for hasRateOverride

has_reference(ids=None)The hasReference action.

Parameters ids – ids (type: string[])

Returns java.lang.Boolean

is_primaryField for isPrimary

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

nameField for name

object_categoriesCollection for objectCategories

parameter_valuesCollection for parameterValues

ratesCollection for rates

class workfront.versions.unsupported.ComponentKey(session=None, **fields)Object for CMPSRV

component_keyField for componentKey

nameField for name

class workfront.versions.unsupported.CustomEnum(session=None, **fields)Object for CSTEM

2.2. API Reference 215

Page 220: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

colorField for color

custom_enum_ordersCollection for customEnumOrders

customerReference for customer

customer_idField for customerID

descriptionField for description

enum_classField for enumClass

equates_withField for equatesWith

ext_ref_idField for extRefID

get_default_op_task_priority_enum()The getDefaultOpTaskPriorityEnum action.

Returns java.lang.Integer

get_default_project_status_enum()The getDefaultProjectStatusEnum action.

Returns string

get_default_severity_enum()The getDefaultSeverityEnum action.

Returns java.lang.Integer

get_default_task_priority_enum()The getDefaultTaskPriorityEnum action.

Returns java.lang.Integer

get_enum_color(enum_class=None, enum_obj_code=None, value=None)The getEnumColor action.

Parameters

• enum_class – enumClass (type: string)

• enum_obj_code – enumObjCode (type: string)

• value – value (type: string)

Returns string

is_primaryField for isPrimary

labelField for label

set_custom_enums(type=None, custom_enums=None, replace_with_key_values=None)The setCustomEnums action.

216 Chapter 2. Detailed Documentation

Page 221: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

Parameters

• type – type (type: string)

• custom_enums – customEnums (type: string[])

• replace_with_key_values – replaceWithKeyValues (type: map)

Returns map

valueField for value

value_as_intField for valueAsInt

value_as_stringField for valueAsString

class workfront.versions.unsupported.CustomEnumOrder(session=None, **fields)Object for CSTEMO

custom_enumReference for customEnum

custom_enum_idField for customEnumID

customerReference for customer

customer_idField for customerID

display_orderField for displayOrder

is_hiddenField for isHidden

sub_obj_codeField for subObjCode

class workfront.versions.unsupported.CustomMenu(session=None, **fields)Object for CSTMNU

children_menusCollection for childrenMenus

customerReference for customer

customer_idField for customerID

display_orderField for displayOrder

is_parentField for isParent

labelField for label

2.2. API Reference 217

Page 222: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

menu_obj_codeField for menuObjCode

obj_idField for objID

obj_interfaceField for objInterface

portal_profileReference for portalProfile

target_external_sectionReference for targetExternalSection

target_external_section_idField for targetExternalSectionID

target_obj_codeField for targetObjCode

target_obj_idField for targetObjID

target_portal_sectionReference for targetPortalSection

target_portal_section_idField for targetPortalSectionID

target_portal_tabReference for targetPortalTab

target_portal_tab_idField for targetPortalTabID

windowField for window

class workfront.versions.unsupported.CustomMenuCustomMenu(session=None, **fields)Object for CMSCMS

childReference for child

child_idField for childID

customerReference for customer

customer_idField for customerID

display_orderField for displayOrder

parentReference for parent

parent_idField for parentID

218 Chapter 2. Detailed Documentation

Page 223: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

class workfront.versions.unsupported.CustomQuarter(session=None, **fields)Object for CSTQRT

customerReference for customer

customer_idField for customerID

end_dateField for endDate

quarter_labelField for quarterLabel

start_dateField for startDate

class workfront.versions.unsupported.Customer(session=None, **fields)Object for CUST

accept_license_agreement()The acceptLicenseAgreement action.

access_levelsCollection for accessLevels

access_rules_per_object_limitField for accessRulesPerObjectLimit

access_scopesCollection for accessScopes

account_repReference for accountRep

account_rep_idField for accountRepID

account_representativeField for accountRepresentative

addressField for address

address2Field for address2

admin_acct_nameField for adminAcctName

admin_acct_passwordField for adminAcctPassword

admin_userReference for adminUser

admin_user_idField for adminUserID

api_concurrency_limitField for apiConcurrencyLimit

2.2. API Reference 219

Page 224: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

app_eventsCollection for appEvents

approval_processesCollection for approvalProcesses

biz_rule_exclusionsField for bizRuleExclusions

categoriesCollection for categories

check_license_expiration()The checkLicenseExpiration action.

Returns java.lang.Integer

cityField for city

cloneableField for cloneable

countryField for country

currencyField for currency

custom_enum_typesField for customEnumTypes

custom_enumsCollection for customEnums

custom_menusCollection for customMenus

custom_quartersCollection for customQuarters

custom_tabsCollection for customTabs

customer_config_mapReference for customerConfigMap

customer_config_map_idField for customerConfigMapID

customer_prefsCollection for customerPrefs

customer_urlconfig_mapReference for customerURLConfigMap

customer_urlconfig_map_idField for customerURLConfigMapID

dd_svnversionField for ddSVNVersion

demo_baseline_dateField for demoBaselineDate

220 Chapter 2. Detailed Documentation

Page 225: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

descriptionField for description

disabled_dateField for disabledDate

document_requestsCollection for documentRequests

document_sizeField for documentSize

documentsCollection for documents

domainField for domain

email_addrField for emailAddr

email_templatesCollection for emailTemplates

entry_dateField for entryDate

eval_exp_dateField for evalExpDate

event_handlersCollection for eventHandlers

exp_dateField for expDate

expense_typesCollection for expenseTypes

ext_ref_idField for extRefID

external_document_storageField for externalDocumentStorage

external_sectionsCollection for externalSections

external_users_enabledField for externalUsersEnabled

external_users_groupReference for externalUsersGroup

external_users_group_idField for externalUsersGroupID

extra_document_storageField for extraDocumentStorage

finance_representativeField for financeRepresentative

2.2. API Reference 221

Page 226: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

firstnameField for firstname

full_usersField for fullUsers

get_license_info()The getLicenseInfo action.

Returns map

goldenField for golden

groupsCollection for groups

has_documentsField for hasDocuments

has_preview_accessField for hasPreviewAccess

has_timed_notificationsField for hasTimedNotifications

help_desk_config_mapReference for helpDeskConfigMap

help_desk_config_map_idField for helpDeskConfigMapID

hour_typesCollection for hourTypes

import_templatesCollection for importTemplates

inline_java_script_config_mapReference for inlineJavaScriptConfigMap

inline_java_script_config_map_idField for inlineJavaScriptConfigMapID

installed_dditemsCollection for installedDDItems

ip_rangesCollection for ipRanges

is_advanced_doc_mgmt_enabledField for isAdvancedDocMgmtEnabled

is_apienabledField for isAPIEnabled

is_async_reporting_enabledField for isAsyncReportingEnabled

is_biz_rule_exclusion_enabled(biz_rule=None, obj_code=None, obj_id=None)The isBizRuleExclusionEnabled action.

Parameters

• biz_rule – bizRule (type: string)

222 Chapter 2. Detailed Documentation

Page 227: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

• obj_code – objCode (type: string)

• obj_id – objID (type: string)

Returns java.lang.Boolean

is_custom_quarter_enabledField for isCustomQuarterEnabled

is_dam_enabledField for isDamEnabled

is_disabledField for isDisabled

is_enterpriseField for isEnterprise

is_migrated_to_anacondaField for isMigratedToAnaconda

is_portal_profile_migratedField for isPortalProfileMigrated

is_proofing_enabledField for isProofingEnabled

is_search_enabledField for isSearchEnabled

is_search_index_activeField for isSearchIndexActive

is_soapenabledField for isSOAPEnabled

is_ssoenabled()The isSSOEnabled action.

Returns java.lang.Boolean

is_warning_disabledField for isWarningDisabled

is_white_list_ipenabledField for isWhiteListIPEnabled

is_workfront_dam_enabledField for isWorkfrontDamEnabled

journal_field_limitField for journalFieldLimit

journal_fieldsCollection for journalFields

kick_start_expoert_dashboards_limitField for kickStartExpoertDashboardsLimit

kick_start_expoert_reports_limitField for kickStartExpoertReportsLimit

last_remind_dateField for lastRemindDate

2.2. API Reference 223

Page 228: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

last_usage_report_dateField for lastUsageReportDate

lastnameField for lastname

layout_templatesCollection for layoutTemplates

license_ordersCollection for licenseOrders

limited_usersField for limitedUsers

list_auto_refresh_interval_secondsField for listAutoRefreshIntervalSeconds

localeField for locale

lucid_migration_dateField for lucidMigrationDate

lucid_migration_modeField for lucidMigrationMode

lucid_migration_optionsField for lucidMigrationOptions

lucid_migration_statusField for lucidMigrationStatus

lucid_migration_stepField for lucidMigrationStep

migrate_to_lucid_security(migration_mode=None, migration_options=None)The migrateToLucidSecurity action.

Parameters

• migration_mode – migrationMode (type: com.attask.common.constants.LucidMigrationModeEnum)

• migration_options – migrationOptions (type: map)

Returns string

milestone_pathsCollection for milestonePaths

nameField for name

need_license_agreementField for needLicenseAgreement

next_usage_report_dateField for nextUsageReportDate

notification_config_mapReference for notificationConfigMap

notification_config_map_idField for notificationConfigMapID

224 Chapter 2. Detailed Documentation

Page 229: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

on_demand_optionsField for onDemandOptions

op_task_count_limitField for opTaskCountLimit

parameter_groupsCollection for parameterGroups

parametersCollection for parameters

password_config_mapReference for passwordConfigMap

password_config_map_idField for passwordConfigMapID

phone_numberField for phoneNumber

portal_profilesCollection for portalProfiles

portal_sectionsCollection for portalSections

portfolio_management_config_mapReference for portfolioManagementConfigMap

portfolio_management_config_map_idField for portfolioManagementConfigMapID

postal_codeField for postalCode

project_management_config_mapReference for projectManagementConfigMap

project_management_config_map_idField for projectManagementConfigMapID

proof_account_idField for proofAccountID

query_limitField for queryLimit

record_limitField for recordLimit

requestor_usersField for requestorUsers

resellerReference for reseller

reseller_idField for resellerID

reset_lucid_security_migration_progress()The resetLucidSecurityMigrationProgress action.

2.2. API Reference 225

Page 230: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

resource_poolsCollection for resourcePools

revert_lucid_security_migration()The revertLucidSecurityMigration action.

review_usersField for reviewUsers

risk_typesCollection for riskTypes

rolesCollection for roles

sandbox_countField for sandboxCount

sandbox_refreshingField for sandboxRefreshing

schedulesCollection for schedules

score_cardsCollection for scoreCards

security_model_typeField for securityModelType

set_exclusions(exclusions=None, state=None)The setExclusions action.

Parameters

• exclusions – exclusions (type: string)

• state – state (type: boolean)

set_is_custom_quarter_enabled(is_custom_quarter_enabled=None)The setIsCustomQuarterEnabled action.

Parameters is_custom_quarter_enabled – isCustomQuarterEnabled (type:boolean)

set_is_white_list_ipenabled(is_white_list_ipenabled=None)The setIsWhiteListIPEnabled action.

Parameters is_white_list_ipenabled – isWhiteListIPEnabled (type: boolean)

set_lucid_migration_enabled(enabled=None)The setLucidMigrationEnabled action.

Parameters enabled – enabled (type: boolean)

sso_optionReference for ssoOption

sso_typeField for ssoType

stateField for state

226 Chapter 2. Detailed Documentation

Page 231: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

statusField for status

style_sheetField for styleSheet

task_count_limitField for taskCountLimit

team_usersField for teamUsers

time_zoneField for timeZone

timed_notificationsCollection for timedNotifications

timesheet_config_mapReference for timesheetConfigMap

timesheet_config_map_idField for timesheetConfigMapID

trialField for trial

ui_config_mapReference for uiConfigMap

ui_config_map_idField for uiConfigMapID

ui_filtersCollection for uiFilters

ui_group_bysCollection for uiGroupBys

ui_viewsCollection for uiViews

update_currency(base_currency=None)The updateCurrency action.

Parameters base_currency – baseCurrency (type: string)

update_customer_base(time_zone=None, locale=None, admin_acct_name=None)The updateCustomerBase action.

Parameters

• time_zone – timeZone (type: string)

• locale – locale (type: string)

• admin_acct_name – adminAcctName (type: string)

update_proofing_billing_plan(plan_id=None)The updateProofingBillingPlan action.

Parameters plan_id – planID (type: string)

Returns java.lang.Boolean

2.2. API Reference 227

Page 232: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

usage_report_attemptsField for usageReportAttempts

use_external_document_storageField for useExternalDocumentStorage

user_invite_config_mapReference for userInviteConfigMap

user_invite_config_map_idField for userInviteConfigMapID

class workfront.versions.unsupported.CustomerFeedback(session=None, **fields)Object for CSFD

commentField for comment

customer_guidField for customerGUID

entry_dateField for entryDate

feedback_typeField for feedbackType

is_adminField for isAdmin

is_primary_adminField for isPrimaryAdmin

license_typeField for licenseType

scoreField for score

user_guidField for userGUID

class workfront.versions.unsupported.CustomerPref(session=None, **fields)Object for CSTPRF

customerReference for customer

customer_idField for customerID

pref_nameField for prefName

pref_valueField for prefValue

class workfront.versions.unsupported.CustomerPreferences(session=None, **fields)Object for CUSTPR

nameField for name

228 Chapter 2. Detailed Documentation

Page 233: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

obj_codeField for objCode

possible_valuesField for possibleValues

set_preference(name=None, value=None)The setPreference action.

Parameters

• name – name (type: string)

• value – value (type: string)

valueField for value

class workfront.versions.unsupported.CustomerTimelineCalc(session=None, **fields)Object for CPTC

customerReference for customer

customer_idField for customerID

olvField for olv

start_dateField for startDate

timeline_calculation_statusField for timelineCalculationStatus

class workfront.versions.unsupported.CustsSections(session=None, **fields)Object for CSTSEC

customerReference for customer

customer_idField for customerID

section_idField for sectionID

class workfront.versions.unsupported.DocsFolders(session=None, **fields)Object for DOCFLD

customerReference for customer

customer_idField for customerID

documentReference for document

document_idField for documentID

folderReference for folder

2.2. API Reference 229

Page 234: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

folder_idField for folderID

class workfront.versions.unsupported.Document(session=None, **fields)Object for DOCU

access_rulesCollection for accessRules

accessor_idsField for accessorIDs

advanced_proofing_optionsField for advancedProofingOptions

approvalsCollection for approvals

awaiting_approvalsCollection for awaitingApprovals

build_download_manifest(document_idmap=None)The buildDownloadManifest action.

Parameters document_idmap – documentIDMap (type: map)

Returns string

calculate_data_extension()The calculateDataExtension action.

cancel_document_proof(document_version_id=None)The cancelDocumentProof action.

Parameters document_version_id – documentVersionID (type: string)

categoryReference for category

category_idField for categoryID

check_document_tasks()The checkDocumentTasks action.

check_in(document_id=None)The checkIn action.

Parameters document_id – documentID (type: string)

check_out(document_id=None)The checkOut action.

Parameters document_id – documentID (type: string)

checked_out_byReference for checkedOutBy

checked_out_by_idField for checkedOutByID

copy_document_to_temp_dir(document_id=None)The copyDocumentToTempDir action.

Parameters document_id – documentID (type: string)

230 Chapter 2. Detailed Documentation

Page 235: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

Returns string

create_document(name=None, doc_obj_code=None, doc_obj_id=None, file_handle=None,file_type=None, folder_id=None, create_proof=None, ad-vanced_proofing_options=None)

The createDocument action.

Parameters

• name – name (type: string)

• doc_obj_code – docObjCode (type: string)

• doc_obj_id – docObjID (type: string)

• file_handle – fileHandle (type: string)

• file_type – fileType (type: string)

• folder_id – folderID (type: string)

• create_proof – createProof (type: java.lang.Boolean)

• advanced_proofing_options – advancedProofingOptions (type: string)

Returns string

create_proof(document_version_id=None, advanced_proofing_options=None)The createProof action.

Parameters

• document_version_id – documentVersionID (type: string)

• advanced_proofing_options – advancedProofingOptions (type: string)

create_proof_flagField for createProof

current_versionReference for currentVersion

current_version_idField for currentVersionID

customerReference for customer

customer_idField for customerID

delete_document_proofs(document_id=None)The deleteDocumentProofs action.

Parameters document_id – documentID (type: string)

descriptionField for description

doc_obj_codeField for docObjCode

document_provider_idField for documentProviderID

document_requestReference for documentRequest

2.2. API Reference 231

Page 236: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

document_request_idField for documentRequestID

download_urlField for downloadURL

ext_ref_idField for extRefID

external_integration_typeField for externalIntegrationType

file_typeField for fileType

folder_idsField for folderIDs

foldersCollection for folders

get_advanced_proof_options_url()The getAdvancedProofOptionsURL action.

Returns string

get_document_contents_in_zip()The getDocumentContentsInZip action.

Returns string

get_external_document_contents()The getExternalDocumentContents action.

Returns string

get_generic_thumbnail_url(document_version_id=None)The getGenericThumbnailUrl action.

Parameters document_version_id – documentVersionID (type: string)

Returns string

get_proof_details(document_version_id=None)The getProofDetails action.

Parameters document_version_id – documentVersionID (type: string)

Returns map

get_proof_details_url(proof_id=None)The getProofDetailsURL action.

Parameters proof_id – proofID (type: string)

Returns string

get_proof_url()The getProofURL action.

Returns string

get_proof_usage()The getProofUsage action.

Returns map

232 Chapter 2. Detailed Documentation

Page 237: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

get_public_generic_thumbnail_url(document_version_id=None, public_token=None)The getPublicGenericThumbnailUrl action.

Parameters

• document_version_id – documentVersionID (type: string)

• public_token – publicToken (type: string)

Returns string

get_public_thumbnail_file_path(document_version_id=None, size=None, pub-lic_token=None)

The getPublicThumbnailFilePath action.

Parameters

• document_version_id – documentVersionID (type: string)

• size – size (type: string)

• public_token – publicToken (type: string)

Returns string

get_s3document_url(content_disposition=None, external_storage_id=None, cus-tomer_prefs=None)

The getS3DocumentURL action.

Parameters

• content_disposition – contentDisposition (type: string)

• external_storage_id – externalStorageID (type: string)

• customer_prefs – customerPrefs (type: map)

Returns string

get_thumbnail_data(document_version_id=None, size=None)The getThumbnailData action.

Parameters

• document_version_id – documentVersionID (type: string)

• size – size (type: string)

Returns string

get_thumbnail_file_path(document_version_id=None, size=None)The getThumbnailFilePath action.

Parameters

• document_version_id – documentVersionID (type: string)

• size – size (type: string)

Returns string

get_total_size_for_documents(document_ids=None, include_linked=None)The getTotalSizeForDocuments action.

Parameters

• document_ids – documentIDs (type: string[])

• include_linked – includeLinked (type: boolean)

2.2. API Reference 233

Page 238: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

Returns java.lang.Long

groupsCollection for groups

handleField for handle

handle_proof_callback(callback_xml=None)The handleProofCallback action.

Parameters callback_xml – callbackXML (type: string)

has_notesField for hasNotes

is_dirField for isDir

is_in_linked_folder(document_id=None)The isInLinkedFolder action.

Parameters document_id – documentID (type: string)

Returns java.lang.Boolean

is_linked_document(document_id=None)The isLinkedDocument action.

Parameters document_id – documentID (type: string)

Returns java.lang.Boolean

is_privateField for isPrivate

is_proof_auto_genration_enabled()The isProofAutoGenrationEnabled action.

Returns java.lang.Boolean

is_proofable(document_version_id=None)The isProofable action.

Parameters document_version_id – documentVersionID (type: string)

Returns java.lang.Boolean

is_publicField for isPublic

iterationReference for iteration

iteration_idField for iterationID

last_mod_dateField for lastModDate

last_noteReference for lastNote

last_note_idField for lastNoteID

234 Chapter 2. Detailed Documentation

Page 239: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

last_sync_dateField for lastSyncDate

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

master_taskReference for masterTask

master_task_idField for masterTaskID

move(obj_id=None, doc_obj_code=None)The move action.

Parameters

• obj_id – objID (type: string)

• doc_obj_code – docObjCode (type: string)

nameField for name

obj_idField for objID

object_categoriesCollection for objectCategories

op_taskReference for opTask

op_task_idField for opTaskID

ownerReference for owner

owner_idField for ownerID

parameter_valuesCollection for parameterValues

portfolioReference for portfolio

portfolio_idField for portfolioID

preview_urlField for previewURL

process_google_drive_change_notification(push_notification=None)The processGoogleDriveChangeNotification action.

Parameters push_notification – pushNotification (type: string)

2.2. API Reference 235

Page 240: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

programReference for program

program_idField for programID

projectReference for project

project_idField for projectID

public_tokenField for publicToken

reference_numberField for referenceNumber

reference_obj_codeField for referenceObjCode

reference_obj_idField for referenceObjID

reference_object_closedField for referenceObjectClosed

reference_object_nameField for referenceObjectName

refresh_external_document_info(document_id=None)The refreshExternalDocumentInfo action.

Parameters document_id – documentID (type: string)

Returns string

refresh_external_documents()The refreshExternalDocuments action.

regenerate_box_shared_link(document_version_id=None)The regenerateBoxSharedLink action.

Parameters document_version_id – documentVersionID (type: string)

release_versionReference for releaseVersion

release_version_idField for releaseVersionID

remind_requestee(document_request_id=None)The remindRequestee action.

Parameters document_request_id – documentRequestID (type: string)

Returns string

save_document_metadata(document_id=None)The saveDocumentMetadata action.

Parameters document_id – documentID (type: string)

security_ancestorsCollection for securityAncestors

236 Chapter 2. Detailed Documentation

Page 241: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

security_ancestors_disabledField for securityAncestorsDisabled

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

send_documents_to_external_provider(document_ids=None, provider_id=None, destina-tion_folder_id=None)

The sendDocumentsToExternalProvider action.

Parameters

• document_ids – documentIDs (type: string[])

• provider_id – providerID (type: string)

• destination_folder_id – destinationFolderID (type: string)

setup_google_drive_push_notifications()The setupGoogleDrivePushNotifications action.

Returns string

sharesCollection for shares

subscribersCollection for subscribers

taskReference for task

task_idField for taskID

templateReference for template

template_idField for templateID

template_taskReference for templateTask

template_task_idField for templateTaskID

top_doc_obj_codeField for topDocObjCode

top_obj_idField for topObjID

unlink_documents(ids=None)The unlinkDocuments action.

Parameters ids – ids (type: string[])

Returns java.lang.Boolean

upload_documents(document_request_id=None, documents=None)The uploadDocuments action.

2.2. API Reference 237

Page 242: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

Parameters

• document_request_id – documentRequestID (type: string)

• documents – documents (type: string[])

Returns string[]

userReference for user

user_idField for userID

versionsCollection for versions

zip_document_versions()The zipDocumentVersions action.

Returns string

zip_documents(obj_code=None, obj_id=None)The zipDocuments action.

Parameters

• obj_code – objCode (type: string)

• obj_id – objID (type: string)

Returns string

zip_documents_versions(ids=None)The zipDocumentsVersions action.

Parameters ids – ids (type: string[])

Returns string

class workfront.versions.unsupported.DocumentApproval(session=None, **fields)Object for DOCAPL

approval_dateField for approvalDate

approverReference for approver

approver_idField for approverID

auto_document_shareReference for autoDocumentShare

auto_document_share_idField for autoDocumentShareID

customerReference for customer

customer_idField for customerID

documentReference for document

238 Chapter 2. Detailed Documentation

Page 243: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

document_idField for documentID

noteReference for note

note_idField for noteID

notify_approver(id=None)The notifyApprover action.

Parameters id – ID (type: string)

request_dateField for requestDate

requestorReference for requestor

requestor_idField for requestorID

statusField for status

class workfront.versions.unsupported.DocumentFolder(session=None, **fields)Object for DOCFDR

accessor_idsField for accessorIDs

childrenCollection for children

customerReference for customer

customer_idField for customerID

delete_folders_and_contents(document_folder_id=None, obj_code=None, object_id=None)The deleteFoldersAndContents action.

Parameters

• document_folder_id – documentFolderID (type: string)

• obj_code – objCode (type: string)

• object_id – objectID (type: string)

Returns string

documentsCollection for documents

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

2.2. API Reference 239

Page 244: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

get_folder_size_in_bytes(folder_id=None, recursive=None, include_linked=None)The getFolderSizeInBytes action.

Parameters

• folder_id – folderID (type: string)

• recursive – recursive (type: boolean)

• include_linked – includeLinked (type: boolean)

Returns java.lang.Long

get_linked_folder_meta_data(linked_folder_id=None)The getLinkedFolderMetaData action.

Parameters linked_folder_id – linkedFolderID (type: string)

Returns string

is_linked_folder(document_folder_id=None)The isLinkedFolder action.

Parameters document_folder_id – documentFolderID (type: string)

Returns java.lang.Boolean

is_smart_folder(document_folder_id=None)The isSmartFolder action.

Parameters document_folder_id – documentFolderID (type: string)

Returns java.lang.Boolean

issueReference for issue

issue_idField for issueID

iterationReference for iteration

iteration_idField for iterationID

last_mod_dateField for lastModDate

linked_folderReference for linkedFolder

linked_folder_idField for linkedFolderID

nameField for name

parentReference for parent

parent_idField for parentID

portfolioReference for portfolio

240 Chapter 2. Detailed Documentation

Page 245: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

portfolio_idField for portfolioID

programReference for program

program_idField for programID

projectReference for project

project_idField for projectID

refresh_linked_folder(linked_folder_id=None, obj_code=None, object_id=None)The refreshLinkedFolder action.

Parameters

• linked_folder_id – linkedFolderID (type: string)

• obj_code – objCode (type: string)

• object_id – objectID (type: string)

refresh_linked_folder_contents(linked_folder_id=None, obj_code=None, ob-ject_id=None)

The refreshLinkedFolderContents action.

Parameters

• linked_folder_id – linkedFolderID (type: string)

• obj_code – objCode (type: string)

• object_id – objectID (type: string)

refresh_linked_folder_meta_data(linked_folder_id=None)The refreshLinkedFolderMetaData action.

Parameters linked_folder_id – linkedFolderID (type: string)

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

send_folder_to_external_provider(folder_id=None, document_provider_id=None, par-ent_external_storage_id=None)

The sendFolderToExternalProvider action.

Parameters

• folder_id – folderID (type: string)

• document_provider_id – documentProviderID (type: string)

• parent_external_storage_id – parentExternalStorageID (type: string)

Returns string

taskReference for task

2.2. API Reference 241

Page 246: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

task_idField for taskID

templateReference for template

template_idField for templateID

template_taskReference for templateTask

template_task_idField for templateTaskID

unlink_folders(ids=None)The unlinkFolders action.

Parameters ids – ids (type: string[])

Returns java.lang.Boolean

userReference for user

user_idField for userID

class workfront.versions.unsupported.DocumentProvider(session=None, **fields)Object for DOCPRO

configurationField for configuration

customerReference for customer

customer_idField for customerID

doc_provider_configReference for docProviderConfig

doc_provider_config_idField for docProviderConfigID

entry_dateField for entryDate

external_integration_typeField for externalIntegrationType

get_all_type_provider_ids(external_integration_type=None, doc_provider_config_id=None)The getAllTypeProviderIDs action.

Parameters

• external_integration_type – externalIntegrationType (type: string)

• doc_provider_config_id – docProviderConfigID (type: string)

Returns string[]

get_provider_with_write_access(external_integration_type=None, config_id=None, exter-nal_folder_id=None)

The getProviderWithWriteAccess action.

242 Chapter 2. Detailed Documentation

Page 247: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

Parameters

• external_integration_type – externalIntegrationType (type: string)

• config_id – configID (type: string)

• external_folder_id – externalFolderID (type: string)

Returns string

nameField for name

ownerReference for owner

owner_idField for ownerID

web_hook_expiration_dateField for webHookExpirationDate

class workfront.versions.unsupported.DocumentProviderConfig(session=None,**fields)

Object for DOCCFG

configurationField for configuration

customerReference for customer

customer_idField for customerID

external_integration_typeField for externalIntegrationType

hostField for host

is_activeField for isActive

nameField for name

class workfront.versions.unsupported.DocumentProviderMetadata(session=None,**fields)

Object for DOCMET

customerReference for customer

customer_idField for customerID

external_integration_typeField for externalIntegrationType

get_metadata_map_for_provider_type(external_integration_type=None)The getMetadataMapForProviderType action.

Parameters external_integration_type – externalIntegrationType (type: string)

Returns map

2.2. API Reference 243

Page 248: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

load_metadata_for_document(document_id=None, external_integration_type=None)The loadMetadataForDocument action.

Parameters

• document_id – documentID (type: string)

• external_integration_type – externalIntegrationType (type: string)

Returns map

mappingField for mapping

class workfront.versions.unsupported.DocumentRequest(session=None, **fields)Object for DOCREQ

accessor_idsField for accessorIDs

completion_dateField for completionDate

customerReference for customer

customer_idField for customerID

descriptionField for description

entry_dateField for entryDate

ext_ref_idField for extRefID

format_entry_dateField for formatEntryDate

iterationReference for iteration

iteration_idField for iterationID

master_taskReference for masterTask

master_task_idField for masterTaskID

op_taskReference for opTask

op_task_idField for opTaskID

portfolioReference for portfolio

portfolio_idField for portfolioID

244 Chapter 2. Detailed Documentation

Page 249: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

programReference for program

program_idField for programID

projectReference for project

project_idField for projectID

ref_obj_codeField for refObjCode

ref_obj_idField for refObjID

requesteeReference for requestee

requestee_idField for requesteeID

requestorReference for requestor

requestor_idField for requestorID

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

statusField for status

taskReference for task

task_idField for taskID

templateReference for template

template_idField for templateID

template_taskReference for templateTask

template_task_idField for templateTaskID

userReference for user

user_idField for userID

2.2. API Reference 245

Page 250: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

class workfront.versions.unsupported.DocumentShare(session=None, **fields)Object for DOCSHR

accessor_idsField for accessorIDs

accessor_obj_codeField for accessorObjCode

accessor_obj_idField for accessorObjID

customerReference for customer

customer_idField for customerID

descriptionField for description

documentReference for document

document_idField for documentID

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

is_approverField for isApprover

is_downloadField for isDownload

is_prooferField for isProofer

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

notify_share(id=None)The notifyShare action.

Parameters id – ID (type: string)

pending_approvalReference for pendingApproval

roleReference for role

246 Chapter 2. Detailed Documentation

Page 251: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

role_idField for roleID

teamReference for team

team_idField for teamID

userReference for user

user_idField for userID

class workfront.versions.unsupported.DocumentTaskStatus(session=None, **fields)Object for DOCTSK

customer_idField for customerID

document_version_idField for documentVersionID

file_pathField for filePath

service_nameField for serviceName

statusField for status

status_dateField for statusDate

task_infoField for taskInfo

user_idField for userID

class workfront.versions.unsupported.DocumentVersion(session=None, **fields)Object for DOCV

accessor_idsField for accessorIDs

add_document_version(document_version_bean=None)The addDocumentVersion action.

Parameters document_version_bean – documentVersionBean (type:DocumentVersion)

Returns string

advanced_proofing_optionsField for advancedProofingOptions

create_proofField for createProof

customerReference for customer

2.2. API Reference 247

Page 252: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

customer_idField for customerID

doc_sizeField for docSize

doc_statusField for docStatus

documentReference for document

document_idField for documentID

document_providerReference for documentProvider

document_provider_idField for documentProviderID

document_type_labelField for documentTypeLabel

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

extField for ext

external_download_urlField for externalDownloadURL

external_integration_typeField for externalIntegrationType

external_preview_urlField for externalPreviewURL

external_save_locationField for externalSaveLocation

external_storage_idField for externalStorageID

file_handle()The fileHandle action.

Returns string

file_nameField for fileName

file_typeField for fileType

format_doc_sizeField for formatDocSize

248 Chapter 2. Detailed Documentation

Page 253: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

format_entry_dateField for formatEntryDate

handleField for handle

iconField for icon

is_proof_automatedField for isProofAutomated

is_proofableField for isProofable

locationField for location

proof_idField for proofID

proof_stage_idField for proofStageID

proof_statusField for proofStatus

proof_status_dateField for proofStatusDate

proof_status_msg_keyField for proofStatusMsgKey

public_file_handle(version_id=None, public_token=None)The publicFileHandle action.

Parameters

• version_id – versionID (type: string)

• public_token – publicToken (type: string)

Returns string

remove_document_version(document_version=None)The removeDocumentVersion action.

Parameters document_version – documentVersion (type: DocumentVersion)

versionField for version

virus_scanField for virusScan

virus_scan_timestampField for virusScanTimestamp

class workfront.versions.unsupported.Email(session=None, **fields)Object for EMAILC

obj_codeField for objCode

2.2. API Reference 249

Page 254: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

send_test_email(email_address=None, username=None, password=None, host=None,port=None, usessl=None)

The sendTestEmail action.

Parameters

• email_address – emailAddress (type: string)

• username – username (type: string)

• password – password (type: string)

• host – host (type: string)

• port – port (type: string)

• usessl – usessl (type: java.lang.Boolean)

Returns string

test_pop_account_settings(username=None, password=None, host=None, port=None,usessl=None)

The testPopAccountSettings action.

Parameters

• username – username (type: string)

• password – password (type: string)

• host – host (type: string)

• port – port (type: string)

• usessl – usessl (type: boolean)

Returns string

class workfront.versions.unsupported.EmailTemplate(session=None, **fields)Object for EMLTPL

contentField for content

customerReference for customer

customer_idField for customerID

descriptionField for description

get_email_subjects(customer_id=None, handler_name_map=None, obj_code=None,obj_id=None, event_type=None)

The getEmailSubjects action.

Parameters

• customer_id – customerID (type: string)

• handler_name_map – handlerNameMap (type: map)

• obj_code – objCode (type: string)

• obj_id – objID (type: string)

• event_type – eventType (type: string)

250 Chapter 2. Detailed Documentation

Page 255: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

Returns map

get_help_desk_registration_email(user_id=None)The getHelpDeskRegistrationEmail action.

Parameters user_id – userID (type: string)

Returns string

get_user_invitation_email(user_id=None)The getUserInvitationEmail action.

Parameters user_id – userID (type: string)

Returns string

nameField for name

subjectField for subject

template_obj_codeField for templateObjCode

class workfront.versions.unsupported.Endorsement(session=None, **fields)Object for ENDR

customerReference for customer

customer_idField for customerID

descriptionField for description

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

get_liked_endorsement_ids(endorsement_ids=None)The getLikedEndorsementIDs action.

Parameters endorsement_ids – endorsementIDs (type: string[])

Returns string[]

has_repliesField for hasReplies

is_assigneeField for isAssignee

is_ownerField for isOwner

like()The like action.

2.2. API Reference 251

Page 256: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

num_likesField for numLikes

num_repliesField for numReplies

op_taskReference for opTask

op_task_idField for opTaskID

portfolioReference for portfolio

portfolio_idField for portfolioID

programReference for program

program_idField for programID

projectReference for project

project_idField for projectID

receiverReference for receiver

receiver_idField for receiverID

ref_obj_codeField for refObjCode

ref_obj_idField for refObjID

reference_object_nameField for referenceObjectName

repliesCollection for replies

roleReference for role

role_idField for roleID

sharesCollection for shares

sub_obj_codeField for subObjCode

sub_obj_idField for subObjID

252 Chapter 2. Detailed Documentation

Page 257: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

sub_reference_object_nameField for subReferenceObjectName

taskReference for task

task_idField for taskID

top_obj_codeField for topObjCode

top_obj_idField for topObjID

top_reference_object_nameField for topReferenceObjectName

unlike()The unlike action.

class workfront.versions.unsupported.EndorsementShare(session=None, **fields)Object for ENDSHR

accessor_obj_codeField for accessorObjCode

accessor_obj_idField for accessorObjID

customerReference for customer

customer_idField for customerID

endorsementReference for endorsement

endorsement_idField for endorsementID

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

teamReference for team

2.2. API Reference 253

Page 258: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

team_idField for teamID

userReference for user

user_idField for userID

class workfront.versions.unsupported.EventHandler(session=None, **fields)Object for EVNTH

always_activeField for alwaysActive

app_eventsCollection for appEvents

custom_propertiesField for customProperties

customerReference for customer

customer_idField for customerID

descriptionField for description

description_keyField for descriptionKey

display_subject_valueField for displaySubjectValue

event_obj_codeField for eventObjCode

event_typesField for eventTypes

handler_propertiesField for handlerProperties

handler_typeField for handlerType

is_activeField for isActive

is_hiddenField for isHidden

is_system_handlerField for isSystemHandler

nameField for name

name_keyField for nameKey

254 Chapter 2. Detailed Documentation

Page 259: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

reset_subjects_to_default(event_handler_ids=None)The resetSubjectsToDefault action.

Parameters event_handler_ids – eventHandlerIDs (type: string[])

Returns string[]

set_custom_subject(custom_subjects=None, custom_subject_properties=None)The setCustomSubject action.

Parameters

• custom_subjects – customSubjects (type: string[])

• custom_subject_properties – customSubjectProperties (type: string[])

Returns string

class workfront.versions.unsupported.EventSubscription(session=None, **fields)Object for EVTSUB

customerReference for customer

customer_idField for customerID

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

event_typeField for eventType

last_update_dateField for lastUpdateDate

notification_urlField for notificationURL

statusField for status

class workfront.versions.unsupported.ExchangeRate(session=None, **fields)Object for EXRATE

accessor_idsField for accessorIDs

currencyField for currency

customerReference for customer

customer_idField for customerID

ext_ref_idField for extRefID

2.2. API Reference 255

Page 260: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

projectReference for project

project_idField for projectID

rateField for rate

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

suggest_exchange_rate(base_currency=None, to_currency_code=None)The suggestExchangeRate action.

Parameters

• base_currency – baseCurrency (type: string)

• to_currency_code – toCurrencyCode (type: string)

Returns java.lang.Double

templateReference for template

template_idField for templateID

class workfront.versions.unsupported.Expense(session=None, **fields)Object for EXPNS

accessor_idsField for accessorIDs

actual_amountField for actualAmount

actual_unit_amountField for actualUnitAmount

billing_recordReference for billingRecord

billing_record_idField for billingRecordID

calculate_data_extension()The calculateDataExtension action.

categoryReference for category

category_idField for categoryID

customerReference for customer

customer_idField for customerID

256 Chapter 2. Detailed Documentation

Page 261: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

descriptionField for description

effective_dateField for effectiveDate

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

exp_obj_codeField for expObjCode

expense_typeReference for expenseType

expense_type_idField for expenseTypeID

ext_ref_idField for extRefID

is_billableField for isBillable

is_reimbursableField for isReimbursable

is_reimbursedField for isReimbursed

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

master_taskReference for masterTask

master_task_idField for masterTaskID

move(obj_id=None, exp_obj_code=None)The move action.

Parameters

• obj_id – objID (type: string)

• exp_obj_code – expObjCode (type: string)

obj_idField for objID

object_categoriesCollection for objectCategories

2.2. API Reference 257

Page 262: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

parameter_valuesCollection for parameterValues

planned_amountField for plannedAmount

planned_dateField for plannedDate

planned_unit_amountField for plannedUnitAmount

projectReference for project

project_idField for projectID

reference_obj_codeField for referenceObjCode

reference_obj_idField for referenceObjID

reference_object_nameField for referenceObjectName

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

taskReference for task

task_idField for taskID

templateReference for template

template_idField for templateID

template_taskReference for templateTask

template_task_idField for templateTaskID

top_obj_codeField for topObjCode

top_obj_idField for topObjID

top_reference_obj_codeField for topReferenceObjCode

top_reference_obj_idField for topReferenceObjID

258 Chapter 2. Detailed Documentation

Page 263: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

class workfront.versions.unsupported.ExpenseType(session=None, **fields)Object for EXPTYP

app_globalReference for appGlobal

app_global_idField for appGlobalID

customerReference for customer

customer_idField for customerID

descriptionField for description

description_keyField for descriptionKey

display_perField for displayPer

display_rate_unitField for displayRateUnit

ext_ref_idField for extRefID

has_reference(ids=None)The hasReference action.

Parameters ids – ids (type: string[])

Returns java.lang.Boolean

nameField for name

name_keyField for nameKey

obj_idField for objID

obj_obj_codeField for objObjCode

rateField for rate

rate_unitField for rateUnit

class workfront.versions.unsupported.ExternalDocument(session=None, **fields)Object for EXTDOC

allowed_actionsField for allowedActions

browse_list_with_link_action(provider_type=None, document_provider_id=None,search_params=None, link_action=None)

The browseListWithLinkAction action.

2.2. API Reference 259

Page 264: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

Parameters

• provider_type – providerType (type: string)

• document_provider_id – documentProviderID (type: string)

• search_params – searchParams (type: map)

• link_action – linkAction (type: string)

Returns map

date_modifiedField for dateModified

descriptionField for description

document_provider_idField for documentProviderID

download_urlField for downloadURL

extField for ext

file_typeField for fileType

get_authentication_url_for_provider(provider_type=None, docu-ment_provider_id=None, docu-ment_provider_config_id=None)

The getAuthenticationUrlForProvider action.

Parameters

• provider_type – providerType (type: string)

• document_provider_id – documentProviderID (type: string)

• document_provider_config_id – documentProviderConfigID (type: string)

Returns string

get_thumbnail_path(provider_type=None, provider_id=None, last_modified_date=None,id=None)

The getThumbnailPath action.

Parameters

• provider_type – providerType (type: string)

• provider_id – providerID (type: string)

• last_modified_date – lastModifiedDate (type: string)

• id – id (type: string)

Returns string

icon_urlField for iconURL

load_external_browse_location(provider_type=None, document_provider_id=None,link_action=None)

The loadExternalBrowseLocation action.

260 Chapter 2. Detailed Documentation

Page 265: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

Parameters

• provider_type – providerType (type: string)

• document_provider_id – documentProviderID (type: string)

• link_action – linkAction (type: string)

Returns string[]

nameField for name

pathField for path

preview_urlField for previewURL

provider_typeField for providerType

read_onlyField for readOnly

save_external_browse_location(provider_type=None, document_provider_id=None,link_action=None, breadcrumb=None)

The saveExternalBrowseLocation action.

Parameters

• provider_type – providerType (type: string)

• document_provider_id – documentProviderID (type: string)

• link_action – linkAction (type: string)

• breadcrumb – breadcrumb (type: string)

show_external_thumbnails()The showExternalThumbnails action.

Returns java.lang.Boolean

sizeField for size

thumbnail_urlField for thumbnailURL

class workfront.versions.unsupported.ExternalSection(session=None, **fields)Object for EXTSEC

app_globalReference for appGlobal

app_global_idField for appGlobalID

calculate_url(external_section_id=None, obj_code=None, obj_id=None)The calculateURL action.

Parameters

• external_section_id – externalSectionID (type: string)

• obj_code – objCode (type: string)

2.2. API Reference 261

Page 266: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

• obj_id – objID (type: string)

Returns string

calculate_urls(external_section_ids=None, obj_code=None, obj_id=None)The calculateURLS action.

Parameters

• external_section_ids – externalSectionIDs (type: java.util.Collection)

• obj_code – objCode (type: string)

• obj_id – objID (type: string)

Returns map

calculated_urlField for calculatedURL

customerReference for customer

customer_idField for customerID

descriptionField for description

description_keyField for descriptionKey

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

ext_ref_idField for extRefID

frameField for frame

friendly_urlField for friendlyURL

global_uikeyField for globalUIKey

heightField for height

nameField for name

name_keyField for nameKey

obj_idField for objID

262 Chapter 2. Detailed Documentation

Page 267: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

obj_interfaceField for objInterface

obj_obj_codeField for objObjCode

scrollingField for scrolling

urlField for url

viewReference for view

view_idField for viewID

class workfront.versions.unsupported.Favorite(session=None, **fields)Object for FVRITE

customerReference for customer

customer_idField for customerID

nameField for name

obj_idField for objID

obj_obj_codeField for objObjCode

update_favorite_name(name=None, favorite_id=None)The updateFavoriteName action.

Parameters

• name – name (type: string)

• favorite_id – favoriteID (type: string)

userReference for user

user_idField for userID

class workfront.versions.unsupported.Feature(session=None, **fields)Object for FEATR

app_globalReference for appGlobal

app_global_idField for appGlobalID

export()The export action.

Returns string

2.2. API Reference 263

Page 268: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

is_enabled(name=None)The isEnabled action.

Parameters name – name (type: string)

Returns java.lang.Boolean

jexl_expressionField for jexlExpression

jexl_updated_dateField for jexlUpdatedDate

nameField for name

old_jexl_expressionField for oldJexlExpression

override_for_session(name=None, value=None)The overrideForSession action.

Parameters

• name – name (type: string)

• value – value (type: boolean)

class workfront.versions.unsupported.FinancialData(session=None, **fields)Object for FINDAT

actual_expense_costField for actualExpenseCost

actual_fixed_revenueField for actualFixedRevenue

actual_labor_costField for actualLaborCost

actual_labor_cost_hoursField for actualLaborCostHours

actual_labor_revenueField for actualLaborRevenue

allocationdateField for allocationdate

customerReference for customer

customer_idField for customerID

fixed_costField for fixedCost

is_splitField for isSplit

planned_expense_costField for plannedExpenseCost

264 Chapter 2. Detailed Documentation

Page 269: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

planned_fixed_revenueField for plannedFixedRevenue

planned_labor_costField for plannedLaborCost

planned_labor_cost_hoursField for plannedLaborCostHours

planned_labor_revenueField for plannedLaborRevenue

projectReference for project

project_idField for projectID

total_actual_costField for totalActualCost

total_actual_revenueField for totalActualRevenue

total_planned_costField for totalPlannedCost

total_planned_revenueField for totalPlannedRevenue

total_variance_costField for totalVarianceCost

total_variance_revenueField for totalVarianceRevenue

variance_expense_costField for varianceExpenseCost

variance_labor_costField for varianceLaborCost

variance_labor_cost_hoursField for varianceLaborCostHours

variance_labor_revenueField for varianceLaborRevenue

class workfront.versions.unsupported.Group(session=None, **fields)Object for GROUP

add_early_access(ids=None)The addEarlyAccess action.

Parameters ids – ids (type: string[])

check_delete(ids=None)The checkDelete action.

Parameters ids – ids (type: string[])

childrenCollection for children

2.2. API Reference 265

Page 270: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

customerReference for customer

customer_idField for customerID

default_interfaceField for defaultInterface

delete_early_access(ids=None)The deleteEarlyAccess action.

Parameters ids – ids (type: string[])

descriptionField for description

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

ext_ref_idField for extRefID

has_reference(ids=None)The hasReference action.

Parameters ids – ids (type: string[])

Returns java.lang.Boolean

nameField for name

parentReference for parent

parent_idField for parentID

replace_delete_groups(ids=None, replace_group_id=None)The replaceDeleteGroups action.

Parameters

• ids – ids (type: string[])

• replace_group_id – replaceGroupID (type: string)

user_groupsCollection for userGroups

class workfront.versions.unsupported.Hour(session=None, **fields)Object for HOUR

accessor_idsField for accessorIDs

actual_costField for actualCost

266 Chapter 2. Detailed Documentation

Page 271: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

approve()The approve action.

approved_byReference for approvedBy

approved_by_idField for approvedByID

approved_on_dateField for approvedOnDate

billing_recordReference for billingRecord

billing_record_idField for billingRecordID

customerReference for customer

customer_idField for customerID

descriptionField for description

dup_idField for dupID

entry_dateField for entryDate

ext_ref_idField for extRefID

has_rate_overrideField for hasRateOverride

hour_typeReference for hourType

hour_type_idField for hourTypeID

hoursField for hours

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

op_taskReference for opTask

op_task_idField for opTaskID

2.2. API Reference 267

Page 272: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

ownerReference for owner

owner_idField for ownerID

projectReference for project

project_idField for projectID

project_overheadReference for projectOverhead

project_overhead_idField for projectOverheadID

reference_obj_codeField for referenceObjCode

reference_obj_idField for referenceObjID

resource_revenueField for resourceRevenue

roleReference for role

role_idField for roleID

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

statusField for status

taskReference for task

task_idField for taskID

timesheetReference for timesheet

timesheet_idField for timesheetID

unapprove()The unapprove action.

class workfront.versions.unsupported.HourType(session=None, **fields)Object for HOURT

app_globalReference for appGlobal

268 Chapter 2. Detailed Documentation

Page 273: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

app_global_idField for appGlobalID

count_as_revenueField for countAsRevenue

customerReference for customer

customer_idField for customerID

descriptionField for description

description_keyField for descriptionKey

display_obj_obj_codeField for displayObjObjCode

ext_ref_idField for extRefID

has_reference(ids=None)The hasReference action.

Parameters ids – ids (type: string[])

Returns java.lang.Boolean

is_activeField for isActive

nameField for name

name_keyField for nameKey

obj_idField for objID

obj_obj_codeField for objObjCode

overhead_typeField for overheadType

scopeField for scope

timesheetprofilesCollection for timesheetprofiles

usersCollection for users

class workfront.versions.unsupported.IPRange(session=None, **fields)Object for IPRAGE

customerReference for customer

2.2. API Reference 269

Page 274: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

customer_idField for customerID

end_rangeField for endRange

start_rangeField for startRange

class workfront.versions.unsupported.ImportRow(session=None, **fields)Object for IROW

column_numberField for columnNumber

customerReference for customer

customer_idField for customerID

field_nameField for fieldName

import_templateReference for importTemplate

import_template_idField for importTemplateID

class workfront.versions.unsupported.ImportTemplate(session=None, **fields)Object for ITMPL

begin_at_rowField for beginAtRow

customerReference for customer

customer_idField for customerID

import_obj_codeField for importObjCode

import_rowsCollection for importRows

nameField for name

class workfront.versions.unsupported.InstalledDDItem(session=None, **fields)Object for IDDI

customerReference for customer

customer_idField for customerID

iddiobj_codeField for IDDIObjCode

270 Chapter 2. Detailed Documentation

Page 275: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

name_keyField for nameKey

class workfront.versions.unsupported.Issue(session=None, **fields)Object for OPTASK

accept_work()The acceptWork action.

access_rulesCollection for accessRules

accessor_idsField for accessorIDs

actual_completion_dateField for actualCompletionDate

actual_costField for actualCost

actual_start_dateField for actualStartDate

actual_work_requiredField for actualWorkRequired

actual_work_required_expressionField for actualWorkRequiredExpression

add_comment(text)Add a comment to the current object containing the supplied text.

The new Comment instance is returned, it does not need to be saved.

age_range_as_stringField for ageRangeAsString

all_prioritiesCollection for allPriorities

all_severitiesCollection for allSeverities

all_statusesCollection for allStatuses

approval_est_start_dateField for approvalEstStartDate

approval_planned_start_dateField for approvalPlannedStartDate

approval_planned_start_dayField for approvalPlannedStartDay

approval_processReference for approvalProcess

approval_process_idField for approvalProcessID

approval_projected_start_dateField for approvalProjectedStartDate

2.2. API Reference 271

Page 276: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

approve_approval(user_id=None, username=None, password=None, audit_note=None, au-dit_user_ids=None, send_note_as_email=None)

The approveApproval action.

Parameters

• user_id – userID (type: string)

• username – username (type: string)

• password – password (type: string)

• audit_note – auditNote (type: string)

• audit_user_ids – auditUserIDs (type: string[])

• send_note_as_email – sendNoteAsEmail (type: boolean)

approver_statusesCollection for approverStatuses

approvers_stringField for approversString

assign(obj_id=None, obj_code=None)The assign action.

Parameters

• obj_id – objID (type: string)

• obj_code – objCode (type: string)

assign_multiple(user_ids=None, role_ids=None, team_id=None)The assignMultiple action.

Parameters

• user_ids – userIDs (type: string[])

• role_ids – roleIDs (type: string[])

• team_id – teamID (type: string)

assigned_toReference for assignedTo

assigned_to_idField for assignedToID

assignmentsCollection for assignments

audit_typesField for auditTypes

auto_closure_dateField for autoClosureDate

awaiting_approvalsCollection for awaitingApprovals

calculate_data_extension()The calculateDataExtension action.

can_startField for canStart

272 Chapter 2. Detailed Documentation

Page 277: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

categoryReference for category

category_idField for categoryID

commit_dateField for commitDate

commit_date_rangeField for commitDateRange

conditionField for condition

convert_to_project(project=None, exchange_rate=None, options=None)The convertToProject action.

Parameters

• project – project (type: Project)

• exchange_rate – exchangeRate (type: ExchangeRate)

• options – options (type: string[])

Returns string

convert_to_task()Convert this issue to a task. The newly converted task will be returned, it does not need to be saved.

current_approval_stepReference for currentApprovalStep

current_approval_step_idField for currentApprovalStepID

current_status_durationField for currentStatusDuration

customerReference for customer

customer_idField for customerID

descriptionField for description

display_queue_breadcrumbField for displayQueueBreadcrumb

document_requestsCollection for documentRequests

documentsCollection for documents

done_statusesCollection for doneStatuses

due_dateField for dueDate

2.2. API Reference 273

Page 278: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

duration_minutesField for durationMinutes

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

ext_ref_idField for extRefID

first_responseField for firstResponse

has_documentsField for hasDocuments

has_messagesField for hasMessages

has_notesField for hasNotes

has_resolvablesField for hasResolvables

has_timed_notificationsField for hasTimedNotifications

hoursCollection for hours

how_oldField for howOld

is_completeField for isComplete

is_help_deskField for isHelpDesk

last_condition_noteReference for lastConditionNote

last_condition_note_idField for lastConditionNoteID

last_noteReference for lastNote

last_note_idField for lastNoteID

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

274 Chapter 2. Detailed Documentation

Page 279: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

last_updated_by_idField for lastUpdatedByID

mark_done(status=None)The markDone action.

Parameters status – status (type: string)

mark_not_done(assignment_id=None)The markNotDone action.

Parameters assignment_id – assignmentID (type: string)

move(project_id=None)The move action.

Parameters project_id – projectID (type: string)

move_to_task(project_id=None, parent_id=None)The moveToTask action.

Parameters

• project_id – projectID (type: string)

• parent_id – parentID (type: string)

nameField for name

notification_recordsCollection for notificationRecords

number_of_childrenField for numberOfChildren

object_categoriesCollection for objectCategories

olvField for olv

op_task_typeField for opTaskType

op_task_type_labelField for opTaskTypeLabel

ownerReference for owner

owner_idField for ownerID

parameter_valuesCollection for parameterValues

parentReference for parent

planned_completion_dateField for plannedCompletionDate

planned_date_alignmentField for plannedDateAlignment

2.2. API Reference 275

Page 280: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

planned_duration_minutesField for plannedDurationMinutes

planned_hours_alignmentField for plannedHoursAlignment

planned_start_dateField for plannedStartDate

previous_statusField for previousStatus

primary_assignmentReference for primaryAssignment

priorityField for priority

projectReference for project

project_idField for projectID

projected_completion_dateField for projectedCompletionDate

projected_duration_minutesField for projectedDurationMinutes

projected_start_dateField for projectedStartDate

queue_topicReference for queueTopic

queue_topic_breadcrumbField for queueTopicBreadcrumb

queue_topic_idField for queueTopicID

recall_approval()The recallApproval action.

reference_numberField for referenceNumber

reference_obj_codeField for referenceObjCode

reference_obj_idField for referenceObjID

reject_approval(user_id=None, username=None, password=None, audit_note=None, au-dit_user_ids=None, send_note_as_email=None)

The rejectApproval action.

Parameters

• user_id – userID (type: string)

• username – username (type: string)

• password – password (type: string)

276 Chapter 2. Detailed Documentation

Page 281: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

• audit_note – auditNote (type: string)

• audit_user_ids – auditUserIDs (type: string[])

• send_note_as_email – sendNoteAsEmail (type: boolean)

rejection_issueReference for rejectionIssue

rejection_issue_idField for rejectionIssueID

remaining_duration_minutesField for remainingDurationMinutes

reply_to_assignment(note_text=None, commit_date=None)The replyToAssignment action.

Parameters

• note_text – noteText (type: string)

• commit_date – commitDate (type: dateTime)

resolution_timeField for resolutionTime

resolvablesCollection for resolvables

resolve_op_taskReference for resolveOpTask

resolve_op_task_idField for resolveOpTaskID

resolve_projectReference for resolveProject

resolve_project_idField for resolveProjectID

resolve_taskReference for resolveTask

resolve_task_idField for resolveTaskID

resolving_obj_codeField for resolvingObjCode

resolving_obj_idField for resolvingObjID

roleReference for role

role_idField for roleID

security_ancestorsCollection for securityAncestors

security_ancestors_disabledField for securityAncestorsDisabled

2.2. API Reference 277

Page 282: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

severityField for severity

show_commit_dateField for showCommitDate

show_conditionField for showCondition

show_statusField for showStatus

source_obj_codeField for sourceObjCode

source_obj_idField for sourceObjID

source_taskReference for sourceTask

source_task_idField for sourceTaskID

statusField for status

status_updateField for statusUpdate

submitted_byReference for submittedBy

submitted_by_idField for submittedByID

teamReference for team

team_assignmentReference for teamAssignment

team_idField for teamID

timed_notifications(notification_ids=None)The timedNotifications action.

Parameters notification_ids – notificationIDs (type: string[])

unaccept_work()The unacceptWork action.

unassign(user_id=None)The unassign action.

Parameters user_id – userID (type: string)

278 Chapter 2. Detailed Documentation

Page 283: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

updatesCollection for updates

urlField for url

versionField for version

work_itemReference for workItem

work_requiredField for workRequired

work_required_expressionField for workRequiredExpression

class workfront.versions.unsupported.Iteration(session=None, **fields)Object for ITRN

assign_iteration_to_descendants(task_ids=None, iteration_id=None)The assignIterationToDescendants action.

Parameters

• task_ids – taskIDs (type: string[])

• iteration_id – iterationID (type: string)

capacityField for capacity

categoryReference for category

category_idField for categoryID

customerReference for customer

customer_idField for customerID

document_requestsCollection for documentRequests

documentsCollection for documents

end_dateField for endDate

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

estimate_completedField for estimateCompleted

2.2. API Reference 279

Page 284: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

focus_factorField for focusFactor

goalField for goal

has_documentsField for hasDocuments

has_notesField for hasNotes

is_legacyField for isLegacy

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

legacy_burndown_info_with_percentage(iteration_id=None)The legacyBurndownInfoWithPercentage action.

Parameters iteration_id – iterationID (type: string)

Returns map

legacy_burndown_info_with_points(iteration_id=None)The legacyBurndownInfoWithPoints action.

Parameters iteration_id – iterationID (type: string)

Returns map

nameField for name

object_categoriesCollection for objectCategories

original_total_estimateField for originalTotalEstimate

ownerReference for owner

owner_idField for ownerID

parameter_valuesCollection for parameterValues

percent_completeField for percentComplete

start_dateField for startDate

statusField for status

280 Chapter 2. Detailed Documentation

Page 285: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

target_percent_completeField for targetPercentComplete

task_idsField for taskIDs

teamReference for team

team_idField for teamID

total_estimateField for totalEstimate

urlField for URL

class workfront.versions.unsupported.JournalEntry(session=None, **fields)Object for JRNLE

accessor_idsField for accessorIDs

approver_statusReference for approverStatus

approver_status_idField for approverStatusID

assignmentReference for assignment

assignment_idField for assignmentID

audit_recordReference for auditRecord

audit_record_idField for auditRecordID

aux1Field for aux1

aux2Field for aux2

aux3Field for aux3

baselineReference for baseline

baseline_idField for baselineID

billing_recordReference for billingRecord

billing_record_idField for billingRecordID

2.2. API Reference 281

Page 286: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

change_typeField for changeType

customerReference for customer

customer_idField for customerID

documentReference for document

document_approvalReference for documentApproval

document_approval_idField for documentApprovalID

document_idField for documentID

document_shareReference for documentShare

document_share_idField for documentShareID

duration_minutesField for durationMinutes

edit_field_names(parameter_id=None, field_name=None)The editFieldNames action.

Parameters

• parameter_id – parameterID (type: string)

• field_name – fieldName (type: string)

Returns string[]

edited_byReference for editedBy

edited_by_idField for editedByID

entry_dateField for entryDate

expenseReference for expense

expense_idField for expenseID

ext_ref_idField for extRefID

field_nameField for fieldName

flagsField for flags

282 Chapter 2. Detailed Documentation

Page 287: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

get_liked_journal_entry_ids(journal_entry_ids=None)The getLikedJournalEntryIDs action.

Parameters journal_entry_ids – journalEntryIDs (type: string[])

Returns string[]

hourReference for hour

hour_idField for hourID

like()The like action.

new_date_valField for newDateVal

new_number_valField for newNumberVal

new_text_valField for newTextVal

num_likesField for numLikes

num_repliesField for numReplies

obj_idField for objID

obj_obj_codeField for objObjCode

old_date_valField for oldDateVal

old_number_valField for oldNumberVal

old_text_valField for oldTextVal

op_taskReference for opTask

op_task_idField for opTaskID

portfolioReference for portfolio

portfolio_idField for portfolioID

programReference for program

program_idField for programID

2.2. API Reference 283

Page 288: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

projectReference for project

project_idField for projectID

reference_object_nameField for referenceObjectName

repliesCollection for replies

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

sub_obj_codeField for subObjCode

sub_obj_idField for subObjID

sub_reference_object_nameField for subReferenceObjectName

taskReference for task

task_idField for taskID

templateReference for template

template_idField for templateID

timesheetReference for timesheet

timesheet_idField for timesheetID

top_obj_codeField for topObjCode

top_obj_idField for topObjID

top_reference_object_nameField for topReferenceObjectName

unlike()The unlike action.

userReference for user

user_idField for userID

284 Chapter 2. Detailed Documentation

Page 289: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

class workfront.versions.unsupported.JournalField(session=None, **fields)Object for JRNLF

actionField for action

customerReference for customer

customer_idField for customerID

display_nameField for displayName

ext_ref_idField for extRefID

field_nameField for fieldName

is_duration_enabledField for isDurationEnabled

migrate_wild_card_journal_fields()The migrateWildCardJournalFields action.

obj_obj_codeField for objObjCode

parameterReference for parameter

parameter_idField for parameterID

set_journal_fields_for_obj_code(obj_code=None, messages=None)The setJournalFieldsForObjCode action.

Parameters

• obj_code – objCode (type: string)

• messages – messages (type: com.attask.model.RKJournalField[])

Returns string[]

class workfront.versions.unsupported.KickStart(session=None, **fields)Object for KSS

import_kick_start(file_handle=None, file_type=None)The importKickStart action.

Parameters

• file_handle – fileHandle (type: string)

• file_type – fileType (type: string)

Returns map

obj_codeField for objCode

class workfront.versions.unsupported.LayoutTemplate(session=None, **fields)Object for LYTMPL

2.2. API Reference 285

Page 290: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

app_globalReference for appGlobal

app_global_idField for appGlobalID

clear_all_custom_tabs(reset_default_nav=None, reset_nav_items=None)The clearAllCustomTabs action.

Parameters

• reset_default_nav – resetDefaultNav (type: boolean)

• reset_nav_items – resetNavItems (type: boolean)

clear_all_user_custom_tabs(user_ids=None, reset_default_nav=None, re-set_nav_items=None)

The clearAllUserCustomTabs action.

Parameters

• user_ids – userIDs (type: java.util.Set)

• reset_default_nav – resetDefaultNav (type: boolean)

• reset_nav_items – resetNavItems (type: boolean)

clear_ppmigration_flag()The clearPPMigrationFlag action.

clear_user_custom_tabs(user_ids=None, reset_default_nav=None, reset_nav_items=None, lay-out_page_types=None)

The clearUserCustomTabs action.

Parameters

• user_ids – userIDs (type: java.util.Set)

• reset_default_nav – resetDefaultNav (type: boolean)

• reset_nav_items – resetNavItems (type: boolean)

• layout_page_types – layoutPageTypes (type: java.util.Set)

customerReference for customer

customer_idField for customerID

default_nav_itemField for defaultNavItem

descriptionField for description

description_keyField for descriptionKey

ext_ref_idField for extRefID

get_layout_template_cards_by_card_location(layout_template_id=None,card_location=None)

The getLayoutTemplateCardsByCardLocation action.

Parameters

286 Chapter 2. Detailed Documentation

Page 291: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

• layout_template_id – layoutTemplateID (type: string)

• card_location – cardLocation (type: string)

Returns string[]

get_layout_template_users(layout_template_ids=None)The getLayoutTemplateUsers action.

Parameters layout_template_ids – layoutTemplateIDs (type: string[])

Returns string[]

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

layout_template_cardsCollection for layoutTemplateCards

layout_template_date_preferencesCollection for layoutTemplateDatePreferences

layout_template_pagesCollection for layoutTemplatePages

license_typeField for licenseType

linked_rolesCollection for linkedRoles

linked_teamsCollection for linkedTeams

linked_usersCollection for linkedUsers

migrate_portal_profile(portal_profile_ids=None)The migratePortalProfile action.

Parameters portal_profile_ids – portalProfileIDs (type: string[])

Returns map

nameField for name

name_keyField for nameKey

nav_barField for navBar

nav_itemsField for navItems

obj_idField for objID

2.2. API Reference 287

Page 292: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

obj_obj_codeField for objObjCode

ui_filtersCollection for uiFilters

ui_group_bysCollection for uiGroupBys

ui_viewsCollection for uiViews

class workfront.versions.unsupported.LayoutTemplateCard(session=None, **fields)Object for LTMPLC

card_locationField for cardLocation

card_typeField for cardType

custom_labelField for customLabel

customerReference for customer

customer_idField for customerID

data_typeField for dataType

display_orderField for displayOrder

field_nameField for fieldName

group_nameField for groupName

layout_templateReference for layoutTemplate

layout_template_idField for layoutTemplateID

parameter_idField for parameterID

class workfront.versions.unsupported.LayoutTemplateDatePreference(session=None,**fields)

Object for LTMPDP

card_locationField for cardLocation

card_typeField for cardType

customerReference for customer

288 Chapter 2. Detailed Documentation

Page 293: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

customer_idField for customerID

date_preferenceField for datePreference

layout_templateReference for layoutTemplate

layout_template_idField for layoutTemplateID

class workfront.versions.unsupported.LayoutTemplatePage(session=None, **fields)Object for LTMPLP

customerReference for customer

customer_idField for customerID

layout_templateReference for layoutTemplate

layout_template_idField for layoutTemplateID

page_typeField for pageType

tabsField for tabs

class workfront.versions.unsupported.LicenseOrder(session=None, **fields)Object for LICEOR

customerReference for customer

customer_idField for customerID

descriptionField for description

exp_dateField for expDate

ext_ref_idField for extRefID

external_users_enabledField for externalUsersEnabled

full_usersField for fullUsers

is_apienabledField for isAPIEnabled

is_enterpriseField for isEnterprise

2.2. API Reference 289

Page 294: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

is_soapenabledField for isSOAPEnabled

limited_usersField for limitedUsers

order_dateField for orderDate

requestor_usersField for requestorUsers

review_usersField for reviewUsers

team_usersField for teamUsers

class workfront.versions.unsupported.Like(session=None, **fields)Object for LIKE

customerReference for customer

customer_idField for customerID

endorsementReference for endorsement

endorsement_idField for endorsementID

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

journal_entryReference for journalEntry

journal_entry_idField for journalEntryID

noteReference for note

note_idField for noteID

class workfront.versions.unsupported.LinkedFolder(session=None, **fields)Object for LNKFDR

customerReference for customer

customer_idField for customerID

290 Chapter 2. Detailed Documentation

Page 295: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

document_providerReference for documentProvider

document_provider_idField for documentProviderID

external_integration_typeField for externalIntegrationType

external_storage_idField for externalStorageID

folderReference for folder

folder_idField for folderID

is_top_level_folderField for isTopLevelFolder

last_sync_dateField for lastSyncDate

linked_byReference for linkedBy

linked_by_idField for linkedByID

linked_dateField for linkedDate

class workfront.versions.unsupported.MasterTask(session=None, **fields)Object for MTSK

assigned_toReference for assignedTo

assigned_to_idField for assignedToID

assignmentsCollection for assignments

audit_typesField for auditTypes

billing_amountField for billingAmount

calculate_data_extension()The calculateDataExtension action.

categoryReference for category

category_idField for categoryID

cost_amountField for costAmount

2.2. API Reference 291

Page 296: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

cost_typeField for costType

customerReference for customer

customer_idField for customerID

descriptionField for description

document_requestsCollection for documentRequests

documentsCollection for documents

duration_minutesField for durationMinutes

duration_typeField for durationType

duration_unitField for durationUnit

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

expensesCollection for expenses

ext_ref_idField for extRefID

groupsCollection for groups

has_documentsField for hasDocuments

has_expensesField for hasExpenses

is_duration_lockedField for isDurationLocked

is_work_required_lockedField for isWorkRequiredLocked

last_noteReference for lastNote

last_note_idField for lastNoteID

292 Chapter 2. Detailed Documentation

Page 297: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

milestoneReference for milestone

milestone_idField for milestoneID

nameField for name

notification_recordsCollection for notificationRecords

object_categoriesCollection for objectCategories

parameter_valuesCollection for parameterValues

planned_costField for plannedCost

planned_revenueField for plannedRevenue

priorityField for priority

revenue_typeField for revenueType

roleReference for role

role_idField for roleID

teamReference for team

team_assignmentReference for teamAssignment

team_idField for teamID

tracking_modeField for trackingMode

urlField for URL

work_requiredField for workRequired

2.2. API Reference 293

Page 298: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

class workfront.versions.unsupported.MessageArg(session=None, **fields)Object for MSGARG

allowed_actionsField for allowedActions

colorField for color

hrefField for href

objcodeField for objcode

objidField for objid

textField for text

typeField for type

class workfront.versions.unsupported.MetaRecord(session=None, **fields)Object for PRSTOBJ

actionsField for actions

bean_classnameField for beanClassname

classnameField for classname

common_display_orderField for commonDisplayOrder

external_actionsField for externalActions

is_aspField for isASP

is_commonField for isCommon

limit_non_view_externalField for limitNonViewExternal

limit_non_view_hdField for limitNonViewHD

limit_non_view_reviewField for limitNonViewReview

limit_non_view_teamField for limitNonViewTeam

limit_non_view_tsField for limitNonViewTS

294 Chapter 2. Detailed Documentation

Page 299: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

limited_actionsField for limitedActions

message_keyField for messageKey

obj_codeField for objCode

pk_field_nameField for pkFieldName

pk_table_nameField for pkTableName

requestor_actionsField for requestorActions

review_actionsField for reviewActions

team_actionsField for teamActions

class workfront.versions.unsupported.Milestone(session=None, **fields)Object for MILE

colorField for color

customerReference for customer

customer_idField for customerID

descriptionField for description

ext_ref_idField for extRefID

milestone_pathReference for milestonePath

milestone_path_idField for milestonePathID

nameField for name

sequenceField for sequence

class workfront.versions.unsupported.MilestonePath(session=None, **fields)Object for MPATH

customerReference for customer

customer_idField for customerID

2.2. API Reference 295

Page 300: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

descriptionField for description

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

ext_ref_idField for extRefID

groupsCollection for groups

milestonesCollection for milestones

nameField for name

class workfront.versions.unsupported.MobileDevice(session=None, **fields)Object for MOBILDVC

device_tokenField for deviceToken

device_typeField for deviceType

endpointField for endpoint

userReference for user

class workfront.versions.unsupported.NonWorkDay(session=None, **fields)Object for NONWKD

customerReference for customer

customer_idField for customerID

non_work_dateField for nonWorkDate

obj_idField for objID

obj_obj_codeField for objObjCode

scheduleReference for schedule

schedule_dayField for scheduleDay

296 Chapter 2. Detailed Documentation

Page 301: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

schedule_idField for scheduleID

userReference for user

user_idField for userID

class workfront.versions.unsupported.Note(session=None, **fields)Object for NOTE

accessor_idsField for accessorIDs

add_comment(text)Add a comment to this comment.

The new Comment instance is returned, it does not need to be saved.

add_note_to_objects(obj_ids=None, note_obj_code=None, note_text=None, is_private=None,email_users=None, tags=None)

The addNoteToObjects action.

Parameters

• obj_ids – objIDs (type: string[])

• note_obj_code – noteObjCode (type: string)

• note_text – noteText (type: string)

• is_private – isPrivate (type: boolean)

• email_users – emailUsers (type: boolean)

• tags – tags (type: java.lang.Object)

Returns string[]

attach_documentReference for attachDocument

attach_document_idField for attachDocumentID

attach_obj_codeField for attachObjCode

attach_obj_idField for attachObjID

attach_op_taskReference for attachOpTask

attach_op_task_idField for attachOpTaskID

attach_work_idField for attachWorkID

attach_work_nameField for attachWorkName

attach_work_obj_codeField for attachWorkObjCode

2.2. API Reference 297

Page 302: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

attach_work_userReference for attachWorkUser

attach_work_user_idField for attachWorkUserID

audit_recordReference for auditRecord

audit_record_idField for auditRecordID

audit_textField for auditText

audit_typeField for auditType

customerReference for customer

customer_idField for customerID

documentReference for document

document_idField for documentID

email_usersField for emailUsers

entry_dateField for entryDate

ext_ref_idField for extRefID

format_entry_dateField for formatEntryDate

get_liked_note_ids(note_ids=None)The getLikedNoteIDs action.

Parameters note_ids – noteIDs (type: string[])

Returns string[]

has_repliesField for hasReplies

indentField for indent

is_deletedField for isDeleted

is_messageField for isMessage

is_privateField for isPrivate

298 Chapter 2. Detailed Documentation

Page 303: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

is_replyField for isReply

iterationReference for iteration

iteration_idField for iterationID

like()The like action.

note_obj_codeField for noteObjCode

note_textField for noteText

num_likesField for numLikes

num_repliesField for numReplies

obj_idField for objID

op_taskReference for opTask

op_task_idField for opTaskID

ownerReference for owner

owner_idField for ownerID

parent_endorsementReference for parentEndorsement

parent_endorsement_idField for parentEndorsementID

parent_journal_entryReference for parentJournalEntry

parent_journal_entry_idField for parentJournalEntryID

parent_noteReference for parentNote

parent_note_idField for parentNoteID

portfolioReference for portfolio

portfolio_idField for portfolioID

2.2. API Reference 299

Page 304: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

programReference for program

program_idField for programID

projectReference for project

project_idField for projectID

reference_object_nameField for referenceObjectName

repliesCollection for replies

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

subjectField for subject

tagsCollection for tags

taskReference for task

task_idField for taskID

templateReference for template

template_idField for templateID

template_taskReference for templateTask

template_task_idField for templateTaskID

thread_dateField for threadDate

thread_idField for threadID

timesheetReference for timesheet

timesheet_idField for timesheetID

top_note_obj_codeField for topNoteObjCode

300 Chapter 2. Detailed Documentation

Page 305: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

top_obj_idField for topObjID

top_reference_object_nameField for topReferenceObjectName

unlike()The unlike action.

userReference for user

user_idField for userID

class workfront.versions.unsupported.NoteTag(session=None, **fields)Object for NTAG

customerReference for customer

customer_idField for customerID

lengthField for length

noteReference for note

note_idField for noteID

obj_idField for objID

obj_obj_codeField for objObjCode

reference_object_nameField for referenceObjectName

start_idxField for startIdx

teamReference for team

team_idField for teamID

userReference for user

user_idField for userID

class workfront.versions.unsupported.NotificationRecord(session=None, **fields)Object for TMNR

customerReference for customer

2.2. API Reference 301

Page 306: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

customer_idField for customerID

email_sent_dateField for emailSentDate

entry_dateField for entryDate

master_taskReference for masterTask

master_task_idField for masterTaskID

notification_obj_codeField for notificationObjCode

notification_obj_idField for notificationObjID

op_taskReference for opTask

op_task_idField for opTaskID

projectReference for project

project_idField for projectID

recipientsField for recipients

scheduled_dateField for scheduledDate

taskReference for task

task_idField for taskID

templateReference for template

template_idField for templateID

template_taskReference for templateTask

template_task_idField for templateTaskID

timed_notificationReference for timedNotification

timed_notification_idField for timedNotificationID

302 Chapter 2. Detailed Documentation

Page 307: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

timesheetReference for timesheet

timesheet_idField for timesheetID

timesheet_profileReference for timesheetProfile

timesheet_profile_idField for timesheetProfileID

class workfront.versions.unsupported.ObjectCategory(session=None, **fields)Object for OBJCAT

categoryReference for category

category_idField for categoryID

category_orderField for categoryOrder

customerReference for customer

customer_idField for customerID

obj_idField for objID

obj_obj_codeField for objObjCode

class workfront.versions.unsupported.Parameter(session=None, **fields)Object for PARAM

customerReference for customer

customer_idField for customerID

data_typeField for dataType

descriptionField for description

display_sizeField for displaySize

display_typeField for displayType

ext_ref_idField for extRefID

format_constraintField for formatConstraint

2.2. API Reference 303

Page 308: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

is_requiredField for isRequired

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

nameField for name

parameter_optionsCollection for parameterOptions

class workfront.versions.unsupported.ParameterGroup(session=None, **fields)Object for PGRP

customerReference for customer

customer_idField for customerID

descriptionField for description

display_orderField for displayOrder

ext_ref_idField for extRefID

is_defaultField for isDefault

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

nameField for name

class workfront.versions.unsupported.ParameterOption(session=None, **fields)Object for POPT

customerReference for customer

customer_idField for customerID

display_orderField for displayOrder

304 Chapter 2. Detailed Documentation

Page 309: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

ext_ref_idField for extRefID

is_defaultField for isDefault

is_hiddenField for isHidden

labelField for label

parameterReference for parameter

parameter_idField for parameterID

valueField for value

class workfront.versions.unsupported.ParameterValue(session=None, **fields)Object for PVAL

companyReference for company

company_idField for companyID

customerReference for customer

customer_idField for customerID

date_valField for dateVal

documentReference for document

document_idField for documentID

expenseReference for expense

expense_idField for expenseID

interation_idField for interationID

iterationReference for iteration

master_taskReference for masterTask

master_task_idField for masterTaskID

2.2. API Reference 305

Page 310: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

number_valField for numberVal

obj_idField for objID

obj_obj_codeField for objObjCode

op_taskReference for opTask

op_task_idField for opTaskID

parameterReference for parameter

parameter_idField for parameterID

parameter_nameField for parameterName

portfolioReference for portfolio

portfolio_idField for portfolioID

programReference for program

program_idField for programID

projectReference for project

project_idField for projectID

taskReference for task

task_idField for taskID

templateReference for template

template_idField for templateID

template_taskReference for templateTask

template_task_idField for templateTaskID

text_valField for textVal

306 Chapter 2. Detailed Documentation

Page 311: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

userReference for user

user_idField for userID

class workfront.versions.unsupported.PopAccount(session=None, **fields)Object for POPA

customerReference for customer

customer_idField for customerID

entry_dateField for entryDate

pop_disabledField for popDisabled

pop_enforce_sslField for popEnforceSSL

pop_errorsField for popErrors

pop_passwordField for popPassword

pop_portField for popPort

pop_serverField for popServer

pop_userField for popUser

projectReference for project

project_idField for projectID

class workfront.versions.unsupported.PortalProfile(session=None, **fields)Object for PTLPFL

app_globalReference for appGlobal

app_global_idField for appGlobalID

custom_menusCollection for customMenus

custom_tabsCollection for customTabs

customerReference for customer

2.2. API Reference 307

Page 312: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

customer_idField for customerID

descriptionField for description

description_keyField for descriptionKey

ext_ref_idField for extRefID

nameField for name

name_keyField for nameKey

obj_idField for objID

obj_obj_codeField for objObjCode

portal_sectionsCollection for portalSections

portal_tabsCollection for portalTabs

ui_filtersCollection for uiFilters

ui_group_bysCollection for uiGroupBys

ui_viewsCollection for uiViews

class workfront.versions.unsupported.PortalSection(session=None, **fields)Object for PTLSEC

access_rulesCollection for accessRules

accessor_idsField for accessorIDs

app_globalReference for appGlobal

app_global_idField for appGlobalID

controller_classField for controllerClass

currencyField for currency

customerReference for customer

308 Chapter 2. Detailed Documentation

Page 313: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

customer_idField for customerID

default_tabField for defaultTab

definitionField for definition

descriptionField for description

description_keyField for descriptionKey

enable_prompt_securityField for enablePromptSecurity

entered_byReference for enteredBy

entered_by_idField for enteredByID

ext_ref_idField for extRefID

filterReference for filter

filter_controlField for filterControl

filter_idField for filterID

folder_nameField for folderName

force_loadField for forceLoad

get_pk(obj_code=None)The getPK action.

Parameters obj_code – objCode (type: string)

Returns string

get_report_from_cache(background_job_id=None)The getReportFromCache action.

Parameters background_job_id – backgroundJobID (type: string)

Returns map

global_uikeyField for globalUIKey

group_byReference for groupBy

group_by_idField for groupByID

2.2. API Reference 309

Page 314: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

group_controlField for groupControl

is_app_global_copiableField for isAppGlobalCopiable

is_app_global_editableField for isAppGlobalEditable

is_new_formatField for isNewFormat

is_publicField for isPublic

is_reportField for isReport

is_report_filterable(query_class_obj_code=None, obj_code=None, obj_id=None)The isReportFilterable action.

Parameters

• query_class_obj_code – queryClassObjCode (type: string)

• obj_code – objCode (type: string)

• obj_id – objID (type: string)

Returns java.lang.Boolean

is_standaloneField for isStandalone

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

link_customer()The linkCustomer action.

linked_rolesCollection for linkedRoles

linked_teamsCollection for linkedTeams

linked_usersCollection for linkedUsers

max_resultsField for maxResults

method_nameField for methodName

migrate_portal_sections_ppmto_anaconda()The migratePortalSectionsPPMToAnaconda action.

310 Chapter 2. Detailed Documentation

Page 315: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

mod_dateField for modDate

nameField for name

name_keyField for nameKey

obj_idField for objID

obj_interfaceField for objInterface

obj_obj_codeField for objObjCode

portal_tab_sectionsCollection for portalTabSections

preferenceReference for preference

preference_idField for preferenceID

public_run_as_userReference for publicRunAsUser

public_run_as_user_idField for publicRunAsUserID

public_tokenField for publicToken

report_folderReference for reportFolder

report_folder_idField for reportFolderID

report_typeField for reportType

run_as_userReference for runAsUser

run_as_user_idField for runAsUserID

scheduled_reportReference for scheduledReport

scheduled_report_idField for scheduledReportID

scheduled_reportsCollection for scheduledReports

security_ancestorsCollection for securityAncestors

2.2. API Reference 311

Page 316: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

security_ancestors_disabledField for securityAncestorsDisabled

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

send_now()The sendNow action.

show_promptsField for showPrompts

sort_byField for sortBy

sort_by2Field for sortBy2

sort_by3Field for sortBy3

sort_typeField for sortType

sort_type2Field for sortType2

sort_type3Field for sortType3

special_viewField for specialView

tool_barField for toolBar

ui_obj_codeField for uiObjCode

unlink_customer()The unlinkCustomer action.

viewReference for view

view_controlField for viewControl

view_idField for viewID

widthField for width

class workfront.versions.unsupported.PortalTab(session=None, **fields)Object for PTLTAB

access_rulesCollection for accessRules

312 Chapter 2. Detailed Documentation

Page 317: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

accessor_idsField for accessorIDs

advanced_copy(new_name=None, advanced_copies=None)The advancedCopy action.

Parameters

• new_name – newName (type: string)

• advanced_copies – advancedCopies (type: map)

Returns string

customerReference for customer

customer_idField for customerID

descriptionField for description

display_orderField for displayOrder

doc_idField for docID

export_dashboard(dashboard_exports=None, dashboard_export_options=None)The exportDashboard action.

Parameters

• dashboard_exports – dashboardExports (type: string[])

• dashboard_export_options – dashboardExportOptions (type: map)

Returns map

ext_ref_idField for extRefID

is_publicField for isPublic

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

linked_rolesCollection for linkedRoles

linked_teamsCollection for linkedTeams

linked_usersCollection for linkedUsers

migrate_custom_tab_user_prefs(user_ids=None)The migrateCustomTabUserPrefs action.

2.2. API Reference 313

Page 318: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

Parameters user_ids – userIDs (type: string[])

nameField for name

name_keyField for nameKey

portal_profileReference for portalProfile

portal_profile_idField for portalProfileID

portal_tab_sectionsCollection for portalTabSections

tabnameField for tabname

userReference for user

user_idField for userID

class workfront.versions.unsupported.PortalTabSection(session=None, **fields)Object for PRTBSC

areaField for area

calendar_portal_sectionReference for calendarPortalSection

calendar_portal_section_idField for calendarPortalSectionID

customerReference for customer

customer_idField for customerID

display_orderField for displayOrder

external_sectionReference for externalSection

external_section_idField for externalSectionID

internal_sectionReference for internalSection

internal_section_idField for internalSectionID

portal_section_obj_codeField for portalSectionObjCode

portal_section_obj_idField for portalSectionObjID

314 Chapter 2. Detailed Documentation

Page 319: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

portal_tabReference for portalTab

portal_tab_idField for portalTabID

class workfront.versions.unsupported.Portfolio(session=None, **fields)Object for PORT

access_rulesCollection for accessRules

accessor_idsField for accessorIDs

alignedField for aligned

alignment_score_cardReference for alignmentScoreCard

alignment_score_card_idField for alignmentScoreCardID

audit_typesField for auditTypes

budgetField for budget

calculate_data_extension()The calculateDataExtension action.

categoryReference for category

category_idField for categoryID

currencyField for currency

customerReference for customer

customer_idField for customerID

descriptionField for description

document_requestsCollection for documentRequests

documentsCollection for documents

entered_byReference for enteredBy

entered_by_idField for enteredByID

2.2. API Reference 315

Page 320: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

entry_dateField for entryDate

ext_ref_idField for extRefID

groupsCollection for groups

has_documentsField for hasDocuments

has_messagesField for hasMessages

has_notesField for hasNotes

is_activeField for isActive

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

nameField for name

net_valueField for netValue

object_categoriesCollection for objectCategories

on_budgetField for onBudget

on_timeField for onTime

ownerReference for owner

owner_idField for ownerID

parameter_valuesCollection for parameterValues

programsCollection for programs

projectsCollection for projects

roiField for roi

316 Chapter 2. Detailed Documentation

Page 321: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

class workfront.versions.unsupported.Predecessor(session=None, **fields)Object for PRED

customerReference for customer

customer_idField for customerID

is_cpField for isCP

is_enforcedField for isEnforced

lag_daysField for lagDays

lag_typeField for lagType

predecessorReference for predecessor

predecessor_idField for predecessorID

predecessor_typeField for predecessorType

successorReference for successor

successor_idField for successorID

class workfront.versions.unsupported.Preference(session=None, **fields)Object for PROSET

app_globalReference for appGlobal

app_global_idField for appGlobalID

customerReference for customer

customer_idField for customerID

valueField for value

class workfront.versions.unsupported.Program(session=None, **fields)Object for PRGM

access_rulesCollection for accessRules

accessor_idsField for accessorIDs

2.2. API Reference 317

Page 322: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

audit_typesField for auditTypes

calculate_data_extension()The calculateDataExtension action.

categoryReference for category

category_idField for categoryID

customerReference for customer

customer_idField for customerID

descriptionField for description

document_requestsCollection for documentRequests

documentsCollection for documents

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

ext_ref_idField for extRefID

has_documentsField for hasDocuments

has_messagesField for hasMessages

has_notesField for hasNotes

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

move(portfolio_id=None, options=None)The move action.

Parameters

• portfolio_id – portfolioID (type: string)

• options – options (type: string[])

318 Chapter 2. Detailed Documentation

Page 323: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

nameField for name

object_categoriesCollection for objectCategories

ownerReference for owner

owner_idField for ownerID

parameter_valuesCollection for parameterValues

portfolioReference for portfolio

portfolio_idField for portfolioID

projectsCollection for projects

security_ancestorsCollection for securityAncestors

security_ancestors_disabledField for securityAncestorsDisabled

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

class workfront.versions.unsupported.Project(session=None, **fields)Object for PROJ

access_rulesCollection for accessRules

accessor_idsField for accessorIDs

actual_benefitField for actualBenefit

actual_completion_dateField for actualCompletionDate

actual_costField for actualCost

actual_duration_expressionField for actualDurationExpression

actual_duration_minutesField for actualDurationMinutes

actual_expense_costField for actualExpenseCost

2.2. API Reference 319

Page 324: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

actual_hours_last_monthField for actualHoursLastMonth

actual_hours_last_three_monthsField for actualHoursLastThreeMonths

actual_hours_this_monthField for actualHoursThisMonth

actual_hours_two_months_agoField for actualHoursTwoMonthsAgo

actual_labor_costField for actualLaborCost

actual_revenueField for actualRevenue

actual_risk_costField for actualRiskCost

actual_start_dateField for actualStartDate

actual_valueField for actualValue

actual_work_requiredField for actualWorkRequired

actual_work_required_expressionField for actualWorkRequiredExpression

alignmentField for alignment

alignment_score_cardReference for alignmentScoreCard

alignment_score_card_idField for alignmentScoreCardID

alignment_valuesCollection for alignmentValues

all_approved_hoursField for allApprovedHours

all_hoursCollection for allHours

all_prioritiesCollection for allPriorities

all_statusesCollection for allStatuses

all_unapproved_hoursField for allUnapprovedHours

approval_est_start_dateField for approvalEstStartDate

320 Chapter 2. Detailed Documentation

Page 325: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

approval_planned_start_dateField for approvalPlannedStartDate

approval_planned_start_dayField for approvalPlannedStartDay

approval_processReference for approvalProcess

approval_process_idField for approvalProcessID

approval_projected_start_dateField for approvalProjectedStartDate

approve_approval(user_id=None, approval_username=None, approval_password=None, au-dit_note=None, audit_user_ids=None, send_note_as_email=None)

The approveApproval action.

Parameters

• user_id – userID (type: string)

• approval_username – approvalUsername (type: string)

• approval_password – approvalPassword (type: string)

• audit_note – auditNote (type: string)

• audit_user_ids – auditUserIDs (type: string[])

• send_note_as_email – sendNoteAsEmail (type: boolean)

approver_statusesCollection for approverStatuses

approvers_stringField for approversString

async_delete(projects_to_delete=None, force=None)The asyncDelete action.

Parameters

• projects_to_delete – projectsToDelete (type: string[])

• force – force (type: boolean)

Returns string

attach_template(template_id=None, predecessor_task_id=None, parent_task_id=None, ex-clude_template_task_ids=None, options=None)

The attachTemplate action.

Parameters

• template_id – templateID (type: string)

• predecessor_task_id – predecessorTaskID (type: string)

• parent_task_id – parentTaskID (type: string)

• exclude_template_task_ids – excludeTemplateTaskIDs (type: string[])

• options – options (type: string[])

Returns string

2.2. API Reference 321

Page 326: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

attach_template_with_parameter_values(project=None, template_id=None, predeces-sor_task_id=None, parent_task_id=None, ex-clude_template_task_ids=None, options=None)

The attachTemplateWithParameterValues action.

Parameters

• project – project (type: Project)

• template_id – templateID (type: string)

• predecessor_task_id – predecessorTaskID (type: string)

• parent_task_id – parentTaskID (type: string)

• exclude_template_task_ids – excludeTemplateTaskIDs (type: string[])

• options – options (type: string[])

Returns string

audit_typesField for auditTypes

auto_baseline_recur_onField for autoBaselineRecurOn

auto_baseline_recurrence_typeField for autoBaselineRecurrenceType

awaiting_approvalsCollection for awaitingApprovals

baselinesCollection for baselines

bccompletion_stateField for BCCompletionState

billed_revenueField for billedRevenue

billing_recordsCollection for billingRecords

budgetField for budget

budget_statusField for budgetStatus

budgeted_completion_dateField for budgetedCompletionDate

budgeted_costField for budgetedCost

budgeted_hoursField for budgetedHours

budgeted_labor_costField for budgetedLaborCost

budgeted_start_dateField for budgetedStartDate

322 Chapter 2. Detailed Documentation

Page 327: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

business_case_status_labelField for businessCaseStatusLabel

calculate_data_extension()The calculateDataExtension action.

calculate_finance()The calculateFinance action.

calculate_project_score_values(type=None)The calculateProjectScoreValues action.

Parameters type – type (type: com.attask.common.constants.ScoreCardTypeEnum)

calculate_timeline()The calculateTimeline action.

categoryReference for category

category_idField for categoryID

companyReference for company

company_idField for companyID

completion_typeField for completionType

conditionField for condition

condition_typeField for conditionType

converted_op_task_entry_dateField for convertedOpTaskEntryDate

converted_op_task_nameField for convertedOpTaskName

converted_op_task_originatorReference for convertedOpTaskOriginator

converted_op_task_originator_idField for convertedOpTaskOriginatorID

cpiField for cpi

create_project_with_override(project=None, exchange_rate=None)The createProjectWithOverride action.

Parameters

• project – project (type: Project)

• exchange_rate – exchangeRate (type: ExchangeRate)

Returns string

2.2. API Reference 323

Page 328: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

csiField for csi

currencyField for currency

current_approval_stepReference for currentApprovalStep

current_approval_step_idField for currentApprovalStepID

customerReference for customer

customer_idField for customerID

default_baselineReference for defaultBaseline

default_forbidden_contribute_actionsField for defaultForbiddenContributeActions

default_forbidden_manage_actionsField for defaultForbiddenManageActions

default_forbidden_view_actionsField for defaultForbiddenViewActions

deliverable_score_cardReference for deliverableScoreCard

deliverable_score_card_idField for deliverableScoreCardID

deliverable_success_scoreField for deliverableSuccessScore

deliverable_success_score_ratioField for deliverableSuccessScoreRatio

deliverable_valuesCollection for deliverableValues

descriptionField for description

display_orderField for displayOrder

document_requestsCollection for documentRequests

documentsCollection for documents

duration_expressionField for durationExpression

duration_minutesField for durationMinutes

324 Chapter 2. Detailed Documentation

Page 329: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

eacField for eac

eac_calculation_methodField for eacCalculationMethod

enable_auto_baselinesField for enableAutoBaselines

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

est_completion_dateField for estCompletionDate

est_start_dateField for estStartDate

exchange_rateReference for exchangeRate

exchange_ratesCollection for exchangeRates

expensesCollection for expenses

export_as_msproject_file()The exportAsMSProjectFile action.

Returns string

export_business_case()The exportBusinessCase action.

Returns string

ext_ref_idField for extRefID

filter_hour_typesField for filterHourTypes

finance_last_update_dateField for financeLastUpdateDate

fixed_costField for fixedCost

fixed_end_dateField for fixedEndDate

fixed_revenueField for fixedRevenue

fixed_start_dateField for fixedStartDate

2.2. API Reference 325

Page 330: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

get_help_desk_user_can_add_issue()The getHelpDeskUserCanAddIssue action.

Returns java.lang.Boolean

get_project_currency()The getProjectCurrency action.

Returns string

groupReference for group

group_idField for groupID

has_budget_conflictField for hasBudgetConflict

has_calc_errorField for hasCalcError

has_completion_constraintField for hasCompletionConstraint

has_documentsField for hasDocuments

has_expensesField for hasExpenses

has_messagesField for hasMessages

has_notesField for hasNotes

has_rate_overrideField for hasRateOverride

has_resolvablesField for hasResolvables

has_start_constraintField for hasStartConstraint

has_timed_notificationsField for hasTimedNotifications

has_timeline_exceptionField for hasTimelineException

hour_typesCollection for hourTypes

hoursCollection for hours

import_msproject_file(file_handle=None, project_name=None)The importMSProjectFile action.

Parameters

• file_handle – fileHandle (type: string)

326 Chapter 2. Detailed Documentation

Page 331: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

• project_name – projectName (type: string)

Returns string

is_project_deadField for isProjectDead

is_status_completeField for isStatusComplete

last_calc_dateField for lastCalcDate

last_condition_noteReference for lastConditionNote

last_condition_note_idField for lastConditionNoteID

last_noteReference for lastNote

last_note_idField for lastNoteID

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

leveling_modeField for levelingMode

lucid_migration_dateField for lucidMigrationDate

milestone_pathReference for milestonePath

milestone_path_idField for milestonePathID

nameField for name

next_auto_baseline_dateField for nextAutoBaselineDate

notification_recordsCollection for notificationRecords

number_open_op_tasksField for numberOpenOpTasks

object_categoriesCollection for objectCategories

olvField for olv

2.2. API Reference 327

Page 332: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

open_op_tasksCollection for openOpTasks

optimization_scoreField for optimizationScore

ownerReference for owner

owner_idField for ownerID

owner_privilegesField for ownerPrivileges

parameter_valuesCollection for parameterValues

pending_calculationField for pendingCalculation

pending_update_methodsField for pendingUpdateMethods

percent_completeField for percentComplete

performance_index_methodField for performanceIndexMethod

personalField for personal

planned_benefitField for plannedBenefit

planned_completion_dateField for plannedCompletionDate

planned_costField for plannedCost

planned_date_alignmentField for plannedDateAlignment

planned_expense_costField for plannedExpenseCost

planned_hours_alignmentField for plannedHoursAlignment

planned_labor_costField for plannedLaborCost

planned_revenueField for plannedRevenue

planned_risk_costField for plannedRiskCost

planned_start_dateField for plannedStartDate

328 Chapter 2. Detailed Documentation

Page 333: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

planned_valueField for plannedValue

pop_accountReference for popAccount

pop_account_idField for popAccountID

portfolioReference for portfolio

portfolio_idField for portfolioID

portfolio_priorityField for portfolioPriority

previous_statusField for previousStatus

priorityField for priority

programReference for program

program_idField for programID

progress_statusField for progressStatus

projectReference for project

project_user_rolesCollection for projectUserRoles

project_usersCollection for projectUsers

projected_completion_dateField for projectedCompletionDate

projected_start_dateField for projectedStartDate

queue_defReference for queueDef

queue_def_idField for queueDefID

ratesCollection for rates

recall_approval()The recallApproval action.

reference_numberField for referenceNumber

2.2. API Reference 329

Page 334: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

reject_approval(user_id=None, approval_username=None, approval_password=None, au-dit_note=None, audit_user_ids=None, send_note_as_email=None)

The rejectApproval action.

Parameters

• user_id – userID (type: string)

• approval_username – approvalUsername (type: string)

• approval_password – approvalPassword (type: string)

• audit_note – auditNote (type: string)

• audit_user_ids – auditUserIDs (type: string[])

• send_note_as_email – sendNoteAsEmail (type: boolean)

rejection_issueReference for rejectionIssue

rejection_issue_idField for rejectionIssueID

remaining_costField for remainingCost

remaining_revenueField for remainingRevenue

remaining_risk_costField for remainingRiskCost

remove_users_from_project(user_ids=None)The removeUsersFromProject action.

Parameters user_ids – userIDs (type: string[])

resolvablesCollection for resolvables

resource_allocationsCollection for resourceAllocations

resource_poolReference for resourcePool

resource_pool_idField for resourcePoolID

riskField for risk

risk_performance_indexField for riskPerformanceIndex

risksCollection for risks

roiField for roi

rolesCollection for roles

330 Chapter 2. Detailed Documentation

Page 335: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

routing_rulesCollection for routingRules

save_project_as_template(template_name=None, exclude_ids=None, options=None)The saveProjectAsTemplate action.

Parameters

• template_name – templateName (type: string)

• exclude_ids – excludeIDs (type: string[])

• options – options (type: string[])

Returns string

scheduleReference for schedule

schedule_idField for scheduleID

schedule_modeField for scheduleMode

security_ancestorsCollection for securityAncestors

security_ancestors_disabledField for securityAncestorsDisabled

selected_on_portfolio_optimizerField for selectedOnPortfolioOptimizer

set_budget_to_schedule()The setBudgetToSchedule action.

sharing_settingsReference for sharingSettings

show_conditionField for showCondition

show_statusField for showStatus

spiField for spi

sponsorReference for sponsor

sponsor_idField for sponsorID

statusField for status

status_updateField for statusUpdate

submitted_byReference for submittedBy

2.2. API Reference 331

Page 336: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

submitted_by_idField for submittedByID

summary_completion_typeField for summaryCompletionType

tasksCollection for tasks

teamReference for team

team_idField for teamID

templateReference for template

template_idField for templateID

timeline_exception_infoField for timelineExceptionInfo

total_hoursField for totalHours

total_op_task_countField for totalOpTaskCount

total_task_countField for totalTaskCount

update_typeField for updateType

updatesCollection for updates

urlField for URL

versionField for version

work_requiredField for workRequired

work_required_expressionField for workRequiredExpression

class workfront.versions.unsupported.ProjectUser(session=None, **fields)Object for PRTU

customerReference for customer

customer_idField for customerID

projectReference for project

332 Chapter 2. Detailed Documentation

Page 337: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

project_idField for projectID

userReference for user

user_idField for userID

class workfront.versions.unsupported.ProjectUserRole(session=None, **fields)Object for PTEAM

customerReference for customer

customer_idField for customerID

projectReference for project

project_idField for projectID

roleReference for role

role_idField for roleID

userReference for user

user_idField for userID

class workfront.versions.unsupported.QueueDef(session=None, **fields)Object for QUED

accessor_idsField for accessorIDs

add_op_task_styleField for addOpTaskStyle

allowed_legacy_queue_topic_idsField for allowedLegacyQueueTopicIDs

allowed_op_task_typesField for allowedOpTaskTypes

allowed_queue_topic_idsField for allowedQueueTopicIDs

customerReference for customer

customer_idField for customerID

default_approval_processReference for defaultApprovalProcess

2.2. API Reference 333

Page 338: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

default_approval_process_idField for defaultApprovalProcessID

default_categoryReference for defaultCategory

default_category_idField for defaultCategoryID

default_duration_expressionField for defaultDurationExpression

default_duration_minutesField for defaultDurationMinutes

default_duration_unitField for defaultDurationUnit

default_routeReference for defaultRoute

default_route_idField for defaultRouteID

default_topic_group_idField for defaultTopicGroupID

ext_ref_idField for extRefID

has_queue_topicsField for hasQueueTopics

is_publicField for isPublic

object_categoriesCollection for objectCategories

projectReference for project

project_idField for projectID

queue_topicsCollection for queueTopics

requestor_core_actionField for requestorCoreAction

requestor_forbidden_actionsField for requestorForbiddenActions

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

share_modeField for shareMode

334 Chapter 2. Detailed Documentation

Page 339: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

templateReference for template

template_idField for templateID

visible_op_task_fieldsField for visibleOpTaskFields

class workfront.versions.unsupported.QueueTopic(session=None, **fields)Object for QUET

accessor_idsField for accessorIDs

allowed_op_task_typesField for allowedOpTaskTypes

allowed_op_task_types_pretty_printField for allowedOpTaskTypesPrettyPrint

customerReference for customer

customer_idField for customerID

default_approval_processReference for defaultApprovalProcess

default_approval_process_idField for defaultApprovalProcessID

default_categoryReference for defaultCategory

default_category_idField for defaultCategoryID

default_durationField for defaultDuration

default_duration_expressionField for defaultDurationExpression

default_duration_minutesField for defaultDurationMinutes

default_duration_unitField for defaultDurationUnit

default_routeReference for defaultRoute

default_route_idField for defaultRouteID

descriptionField for description

ext_ref_idField for extRefID

2.2. API Reference 335

Page 340: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

indented_nameField for indentedName

nameField for name

object_categoriesCollection for objectCategories

parent_topicReference for parentTopic

parent_topic_groupReference for parentTopicGroup

parent_topic_group_idField for parentTopicGroupID

parent_topic_idField for parentTopicID

queue_defReference for queueDef

queue_def_idField for queueDefID

class workfront.versions.unsupported.QueueTopicGroup(session=None, **fields)Object for QUETGP

accessor_idsField for accessorIDs

associated_topicsField for associatedTopics

customerReference for customer

customer_idField for customerID

descriptionField for description

nameField for name

parentReference for parent

parent_idField for parentID

queue_defReference for queueDef

queue_def_idField for queueDefID

queue_topic_groupsCollection for queueTopicGroups

336 Chapter 2. Detailed Documentation

Page 341: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

queue_topicsCollection for queueTopics

class workfront.versions.unsupported.Rate(session=None, **fields)Object for RATE

accessor_idsField for accessorIDs

companyReference for company

company_idField for companyID

customerReference for customer

customer_idField for customerID

ext_ref_idField for extRefID

projectReference for project

project_idField for projectID

rate_valueField for rateValue

roleReference for role

role_idField for roleID

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

templateReference for template

template_idField for templateID

class workfront.versions.unsupported.Recent(session=None, **fields)Object for RECENT

customerReference for customer

customer_idField for customerID

last_viewed_dateField for lastViewedDate

2.2. API Reference 337

Page 342: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

nameField for name

obj_idField for objID

obj_obj_codeField for objObjCode

update_last_viewed_object()The updateLastViewedObject action.

Returns string

userReference for user

user_idField for userID

class workfront.versions.unsupported.RecentMenuItem(session=None, **fields)Object for RECENTMENUITEM

allowed_actionsField for allowedActions

bulk_delete_recent(obj_code=None, obj_ids=None)The bulkDeleteRecent action.

Parameters

• obj_code – objCode (type: string)

• obj_ids – objIDs (type: string[])

date_addedField for dateAdded

delete_recent(obj_code=None, obj_id=None)The deleteRecent action.

Parameters

• obj_code – objCode (type: string)

• obj_id – objID (type: string)

nameField for name

obj_idField for objID

obj_obj_codeField for objObjCode

recent_item_stringField for recentItemString

rotate_recent_menu(obj_code=None, obj_id=None)The rotateRecentMenu action.

Parameters

• obj_code – objCode (type: string)

338 Chapter 2. Detailed Documentation

Page 343: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

• obj_id – objID (type: string)

class workfront.versions.unsupported.RecentUpdate(session=None, **fields)Object for RUPDTE

author_idField for authorID

author_nameField for authorName

customerReference for customer

customer_idField for customerID

entry_dateField for entryDate

is_privateField for isPrivate

issue_idField for issueID

issue_nameField for issueName

iteration_idField for iterationID

iteration_nameField for iterationName

last_updated_on_dateField for lastUpdatedOnDate

latest_commentField for latestComment

latest_comment_author_idField for latestCommentAuthorID

latest_comment_author_nameField for latestCommentAuthorName

latest_comment_entry_dateField for latestCommentEntryDate

latest_comment_idField for latestCommentID

number_of_commentsField for numberOfComments

project_idField for projectID

project_nameField for projectName

task_idField for taskID

2.2. API Reference 339

Page 344: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

task_nameField for taskName

team_idField for teamID

thread_idField for threadID

updateField for update

update_idField for updateID

user_idField for userID

class workfront.versions.unsupported.RecurrenceRule(session=None, **fields)Object for RECR

customerReference for customer

customer_idField for customerID

duration_expressionField for durationExpression

duration_minutesField for durationMinutes

duration_unitField for durationUnit

end_dateField for endDate

recur_onField for recurOn

recurrence_countField for recurrenceCount

recurrence_intervalField for recurrenceInterval

recurrence_typeField for recurrenceType

scheduleReference for schedule

schedule_idField for scheduleID

start_dateField for startDate

taskReference for task

340 Chapter 2. Detailed Documentation

Page 345: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

task_idField for taskID

template_taskReference for templateTask

template_task_idField for templateTaskID

use_end_dateField for useEndDate

class workfront.versions.unsupported.ReportFolder(session=None, **fields)Object for RPTFDR

customerReference for customer

customer_idField for customerID

nameField for name

class workfront.versions.unsupported.Reseller(session=None, **fields)Object for RSELR

account_repsCollection for accountReps

addressField for address

address2Field for address2

cityField for city

countryField for country

descriptionField for description

emailField for email

ext_ref_idField for extRefID

is_activeField for isActive

nameField for name

phone_numberField for phoneNumber

postal_codeField for postalCode

2.2. API Reference 341

Page 346: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

stateField for state

class workfront.versions.unsupported.ReservedTime(session=None, **fields)Object for RESVT

customerReference for customer

customer_idField for customerID

end_dateField for endDate

start_dateField for startDate

taskReference for task

task_idField for taskID

userReference for user

user_idField for userID

class workfront.versions.unsupported.ResourceAllocation(session=None, **fields)Object for RSALLO

accessor_idsField for accessorIDs

allocation_dateField for allocationDate

budgeted_hoursField for budgetedHours

customerReference for customer

customer_idField for customerID

is_splitField for isSplit

obj_idField for objID

obj_obj_codeField for objObjCode

projectReference for project

project_idField for projectID

342 Chapter 2. Detailed Documentation

Page 347: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

projected_scheduled_hoursField for projectedScheduledHours

resource_poolReference for resourcePool

resource_pool_idField for resourcePoolID

roleReference for role

role_idField for roleID

scheduled_hoursField for scheduledHours

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

class workfront.versions.unsupported.ResourcePool(session=None, **fields)Object for RSPOOL

customerReference for customer

customer_idField for customerID

descriptionField for description

display_orderField for displayOrder

ext_ref_idField for extRefID

nameField for name

resource_allocationsCollection for resourceAllocations

rolesCollection for roles

usersCollection for users

class workfront.versions.unsupported.Risk(session=None, **fields)Object for RISK

accessor_idsField for accessorIDs

actual_costField for actualCost

2.2. API Reference 343

Page 348: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

customerReference for customer

customer_idField for customerID

descriptionField for description

estimated_effectField for estimatedEffect

ext_ref_idField for extRefID

mitigation_costField for mitigationCost

mitigation_descriptionField for mitigationDescription

probabilityField for probability

projectReference for project

project_idField for projectID

risk_typeReference for riskType

risk_type_idField for riskTypeID

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

statusField for status

templateReference for template

template_idField for templateID

class workfront.versions.unsupported.RiskType(session=None, **fields)Object for RSKTYP

customerReference for customer

customer_idField for customerID

descriptionField for description

344 Chapter 2. Detailed Documentation

Page 349: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

ext_ref_idField for extRefID

has_reference(ids=None)The hasReference action.

Parameters ids – ids (type: string[])

Returns java.lang.Boolean

nameField for name

class workfront.versions.unsupported.Role(session=None, **fields)Object for ROLE

add_early_access(ids=None)The addEarlyAccess action.

Parameters ids – ids (type: string[])

billing_per_hourField for billingPerHour

cost_per_hourField for costPerHour

customerReference for customer

customer_idField for customerID

default_interfaceField for defaultInterface

delete_early_access(ids=None)The deleteEarlyAccess action.

Parameters ids – ids (type: string[])

descriptionField for description

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

ext_ref_idField for extRefID

has_reference(ids=None)The hasReference action.

Parameters ids – ids (type: string[])

Returns java.lang.Boolean

layout_templateReference for layoutTemplate

2.2. API Reference 345

Page 350: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

layout_template_idField for layoutTemplateID

max_usersField for maxUsers

nameField for name

class workfront.versions.unsupported.RoutingRule(session=None, **fields)Object for RRUL

accessor_idsField for accessorIDs

customerReference for customer

customer_idField for customerID

default_assigned_toReference for defaultAssignedTo

default_assigned_to_idField for defaultAssignedToID

default_projectReference for defaultProject

default_project_idField for defaultProjectID

default_roleReference for defaultRole

default_role_idField for defaultRoleID

default_teamReference for defaultTeam

default_team_idField for defaultTeamID

descriptionField for description

nameField for name

projectReference for project

project_idField for projectID

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

346 Chapter 2. Detailed Documentation

Page 351: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

templateReference for template

template_idField for templateID

class workfront.versions.unsupported.S3Migration(session=None, **fields)Object for S3MT

customerReference for customer

customer_idField for customerID

migration_dateField for migrationDate

statusField for status

class workfront.versions.unsupported.SSOMapping(session=None, **fields)Object for SSOMAP

attask_attributeField for attaskAttribute

customerReference for customer

customer_idField for customerID

default_attributeField for defaultAttribute

has_mapping_rulesField for hasMappingRules

mapping_rulesCollection for mappingRules

override_attributeField for overrideAttribute

remote_attributeField for remoteAttribute

sso_option_idField for ssoOptionID

class workfront.versions.unsupported.SSOMappingRule(session=None, **fields)Object for SSOMR

attask_attributeField for attaskAttribute

customerReference for customer

customer_idField for customerID

2.2. API Reference 347

Page 352: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

matching_ruleField for matchingRule

remote_attributeField for remoteAttribute

sso_mapping_idField for ssoMappingID

class workfront.versions.unsupported.SSOOption(session=None, **fields)Object for SSOPT

active_directory_domainField for activeDirectoryDomain

authentication_typeField for authenticationType

binding_typeField for bindingType

certificateField for certificate

change_password_urlField for changePasswordURL

customerReference for customer

customer_idField for customerID

exclude_usersField for excludeUsers

hosted_entity_idField for hostedEntityID

is_admin_back_door_access_allowedField for isAdminBackDoorAccessAllowed

provider_portField for providerPort

provider_urlField for providerURL

provision_usersField for provisionUsers

remote_entity_idField for remoteEntityID

require_sslconnectionField for requireSSLConnection

search_attributeField for searchAttribute

search_baseField for searchBase

348 Chapter 2. Detailed Documentation

Page 353: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

signout_urlField for signoutURL

sso_mappingsCollection for ssoMappings

ssoenabledField for SSOEnabled

trusted_domainField for trustedDomain

upload_saml2metadata(handle=None)The uploadSAML2Metadata action.

Parameters handle – handle (type: string)

Returns string

upload_ssocertificate(handle=None)The uploadSSOCertificate action.

Parameters handle – handle (type: string)

class workfront.versions.unsupported.SSOUsername(session=None, **fields)Object for SSOUSR

customer_idField for customerID

nameField for name

user_idField for userID

class workfront.versions.unsupported.SandboxMigration(session=None, **fields)Object for SNDMG

cancel_scheduled_migration()The cancelScheduledMigration action.

customerReference for customer

customer_idField for customerID

domainField for domain

end_dateField for endDate

last_refresh_dateField for lastRefreshDate

last_refresh_durationField for lastRefreshDuration

migrate_now()The migrateNow action.

migration_estimate()The migrationEstimate action.

2.2. API Reference 349

Page 354: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

Returns map

migration_queue_duration()The migrationQueueDuration action.

Returns java.lang.Integer

notifiedField for notified

sandbox_typeField for sandboxType

schedule_dateField for scheduleDate

schedule_migration(schedule_date=None)The scheduleMigration action.

Parameters schedule_date – scheduleDate (type: dateTime)

start_dateField for startDate

statusField for status

userReference for user

user_idField for userID

class workfront.versions.unsupported.Schedule(session=None, **fields)Object for SCHED

customerReference for customer

customer_idField for customerID

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

ext_ref_idField for extRefID

fridayField for friday

get_earliest_work_time_of_day(date=None)The getEarliestWorkTimeOfDay action.

Parameters date – date (type: dateTime)

Returns dateTime

350 Chapter 2. Detailed Documentation

Page 355: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

get_latest_work_time_of_day(date=None)The getLatestWorkTimeOfDay action.

Parameters date – date (type: dateTime)

Returns dateTime

get_next_completion_date(date=None, cost_in_minutes=None)The getNextCompletionDate action.

Parameters

• date – date (type: dateTime)

• cost_in_minutes – costInMinutes (type: int)

Returns dateTime

get_next_start_date(date=None)The getNextStartDate action.

Parameters date – date (type: dateTime)

Returns dateTime

groupReference for group

group_idField for groupID

has_non_work_daysField for hasNonWorkDays

has_reference(ids=None)The hasReference action.

Parameters ids – ids (type: string[])

Returns java.lang.Boolean

is_defaultField for isDefault

mondayField for monday

nameField for name

non_work_daysCollection for nonWorkDays

other_groupsCollection for otherGroups

saturdayField for saturday

sundayField for sunday

thursdayField for thursday

2.2. API Reference 351

Page 356: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

time_zoneField for timeZone

tuesdayField for tuesday

wednesdayField for wednesday

class workfront.versions.unsupported.ScheduledReport(session=None, **fields)Object for SCHREP

customerReference for customer

customer_idField for customerID

descriptionField for description

entered_byReference for enteredBy

entered_by_idField for enteredByID

external_emailsField for externalEmails

formatField for format

group_idsField for groupIDs

groupsCollection for groups

last_runtime_millisecondsField for lastRuntimeMilliseconds

last_sent_dateField for lastSentDate

nameField for name

page_sizeField for pageSize

portal_sectionReference for portalSection

portal_section_idField for portalSectionID

recipientsField for recipients

recurrence_ruleField for recurrenceRule

352 Chapter 2. Detailed Documentation

Page 357: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

role_idsField for roleIDs

rolesCollection for roles

run_as_userReference for runAsUser

run_as_user_idField for runAsUserID

run_as_user_type_aheadField for runAsUserTypeAhead

sched_timeField for schedTime

scheduleField for schedule

schedule_startField for scheduleStart

send_report_delivery_now(user_ids=None, team_ids=None, group_ids=None, role_ids=None,external_emails=None, delivery_options=None)

The sendReportDeliveryNow action.

Parameters

• user_ids – userIDs (type: string[])

• team_ids – teamIDs (type: string[])

• group_ids – groupIDs (type: string[])

• role_ids – roleIDs (type: string[])

• external_emails – externalEmails (type: string)

• delivery_options – deliveryOptions (type: map)

Returns java.lang.Integer

start_dateField for startDate

team_idsField for teamIDs

teamsCollection for teams

ui_obj_codeField for uiObjCode

ui_obj_idField for uiObjID

user_idsField for userIDs

usersCollection for users

2.2. API Reference 353

Page 358: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

class workfront.versions.unsupported.ScoreCard(session=None, **fields)Object for SCORE

accessor_idsField for accessorIDs

customerReference for customer

customer_idField for customerID

descriptionField for description

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

ext_ref_idField for extRefID

is_publicField for isPublic

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

nameField for name

obj_idField for objID

obj_obj_codeField for objObjCode

projectReference for project

project_idField for projectID

score_card_questionsCollection for scoreCardQuestions

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

354 Chapter 2. Detailed Documentation

Page 359: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

templateReference for template

template_idField for templateID

class workfront.versions.unsupported.ScoreCardAnswer(session=None, **fields)Object for SCANS

customerReference for customer

customer_idField for customerID

number_valField for numberVal

obj_idField for objID

obj_obj_codeField for objObjCode

projectReference for project

project_idField for projectID

score_cardReference for scoreCard

score_card_idField for scoreCardID

score_card_optionReference for scoreCardOption

score_card_option_idField for scoreCardOptionID

score_card_questionReference for scoreCardQuestion

score_card_question_idField for scoreCardQuestionID

templateReference for template

template_idField for templateID

typeField for type

class workfront.versions.unsupported.ScoreCardOption(session=None, **fields)Object for SCOPT

customerReference for customer

2.2. API Reference 355

Page 360: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

customer_idField for customerID

display_orderField for displayOrder

is_defaultField for isDefault

is_hiddenField for isHidden

labelField for label

score_card_questionReference for scoreCardQuestion

score_card_question_idField for scoreCardQuestionID

valueField for value

class workfront.versions.unsupported.ScoreCardQuestion(session=None, **fields)Object for SCOREQ

customerReference for customer

customer_idField for customerID

descriptionField for description

display_orderField for displayOrder

display_typeField for displayType

nameField for name

score_cardReference for scoreCard

score_card_idField for scoreCardID

score_card_optionsCollection for scoreCardOptions

weightField for weight

class workfront.versions.unsupported.SearchEvent(session=None, **fields)Object for SRCEVT

customer_idField for customerID

356 Chapter 2. Detailed Documentation

Page 361: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

entry_dateField for entryDate

event_obj_codeField for eventObjCode

event_typeField for eventType

obj_idsField for objIDs

class workfront.versions.unsupported.SecurityAncestor(session=None, **fields)Object for SECANC

ancestor_idField for ancestorID

ancestor_obj_codeField for ancestorObjCode

customerReference for customer

customer_idField for customerID

ref_obj_codeField for refObjCode

ref_obj_idField for refObjID

class workfront.versions.unsupported.Sequence(session=None, **fields)Object for SEQ

customerReference for customer

customer_idField for customerID

seq_nameField for seqName

seq_valueField for seqValue

class workfront.versions.unsupported.SharingSettings(session=None, **fields)Object for SHRSET

accessor_idsField for accessorIDs

customerReference for customer

customer_idField for customerID

op_task_assignment_core_actionField for opTaskAssignmentCoreAction

2.2. API Reference 357

Page 362: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

op_task_assignment_project_core_actionField for opTaskAssignmentProjectCoreAction

op_task_assignment_project_secondary_actionsField for opTaskAssignmentProjectSecondaryActions

op_task_assignment_secondary_actionsField for opTaskAssignmentSecondaryActions

projectReference for project

project_idField for projectID

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

task_assignment_core_actionField for taskAssignmentCoreAction

task_assignment_project_core_actionField for taskAssignmentProjectCoreAction

task_assignment_project_secondary_actionsField for taskAssignmentProjectSecondaryActions

task_assignment_secondary_actionsField for taskAssignmentSecondaryActions

templateReference for template

template_idField for templateID

class workfront.versions.unsupported.StepApprover(session=None, **fields)Object for SPAPVR

approval_stepReference for approvalStep

approval_step_idField for approvalStepID

customerReference for customer

customer_idField for customerID

roleReference for role

role_idField for roleID

teamReference for team

358 Chapter 2. Detailed Documentation

Page 363: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

team_idField for teamID

userReference for user

user_idField for userID

wild_cardField for wildCard

class workfront.versions.unsupported.Task(session=None, **fields)Object for TASK

accept_work()The acceptWork action.

access_rulesCollection for accessRules

accessor_idsField for accessorIDs

actual_completion_dateField for actualCompletionDate

actual_costField for actualCost

actual_durationField for actualDuration

actual_duration_minutesField for actualDurationMinutes

actual_expense_costField for actualExpenseCost

actual_labor_costField for actualLaborCost

actual_revenueField for actualRevenue

actual_start_dateField for actualStartDate

actual_workField for actualWork

actual_work_requiredField for actualWorkRequired

add_comment(text)Add a comment to the current object containing the supplied text.

The new Comment instance is returned, it does not need to be saved.

all_prioritiesCollection for allPriorities

all_statusesCollection for allStatuses

2.2. API Reference 359

Page 364: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

approval_est_start_dateField for approvalEstStartDate

approval_planned_start_dateField for approvalPlannedStartDate

approval_planned_start_dayField for approvalPlannedStartDay

approval_processReference for approvalProcess

approval_process_idField for approvalProcessID

approval_projected_start_dateField for approvalProjectedStartDate

approve_approval(user_id=None, username=None, password=None, audit_note=None, au-dit_user_ids=None, send_note_as_email=None)

The approveApproval action.

Parameters

• user_id – userID (type: string)

• username – username (type: string)

• password – password (type: string)

• audit_note – auditNote (type: string)

• audit_user_ids – auditUserIDs (type: string[])

• send_note_as_email – sendNoteAsEmail (type: boolean)

approver_statusesCollection for approverStatuses

approvers_stringField for approversString

assign(obj_id=None, obj_code=None)The assign action.

Parameters

• obj_id – objID (type: string)

• obj_code – objCode (type: string)

assign_multiple(user_ids=None, role_ids=None, team_id=None)The assignMultiple action.

Parameters

• user_ids – userIDs (type: string[])

• role_ids – roleIDs (type: string[])

• team_id – teamID (type: string)

assigned_toReference for assignedTo

assigned_to_idField for assignedToID

360 Chapter 2. Detailed Documentation

Page 365: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

assignmentsCollection for assignments

assignments_list_stringField for assignmentsListString

audit_noteField for auditNote

audit_typesField for auditTypes

audit_user_idsField for auditUserIDs

awaiting_approvalsCollection for awaitingApprovals

backlog_orderField for backlogOrder

billing_amountField for billingAmount

billing_recordReference for billingRecord

billing_record_idField for billingRecordID

bulk_copy(task_ids=None, project_id=None, parent_id=None, options=None)The bulkCopy action.

Parameters

• task_ids – taskIDs (type: string[])

• project_id – projectID (type: string)

• parent_id – parentID (type: string)

• options – options (type: string[])

Returns string[]

bulk_move(task_ids=None, project_id=None, parent_id=None, options=None)The bulkMove action.

Parameters

• task_ids – taskIDs (type: string[])

• project_id – projectID (type: string)

• parent_id – parentID (type: string)

• options – options (type: string[])

calculate_data_extension()The calculateDataExtension action.

calculate_data_extensions(ids=None)The calculateDataExtensions action.

Parameters ids – ids (type: string[])

2.2. API Reference 361

Page 366: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

can_startField for canStart

categoryReference for category

category_idField for categoryID

childrenCollection for children

colorField for color

commit_dateField for commitDate

commit_date_rangeField for commitDateRange

completion_pending_dateField for completionPendingDate

conditionField for condition

constraint_dateField for constraintDate

convert_to_project(project=None, exchange_rate=None)The convertToProject action.

Parameters

• project – project (type: Project)

• exchange_rate – exchangeRate (type: ExchangeRate)

Returns string

converted_op_task_entry_dateField for convertedOpTaskEntryDate

converted_op_task_nameField for convertedOpTaskName

converted_op_task_originatorReference for convertedOpTaskOriginator

converted_op_task_originator_idField for convertedOpTaskOriginatorID

cost_amountField for costAmount

cost_typeField for costType

cpiField for cpi

csiField for csi

362 Chapter 2. Detailed Documentation

Page 367: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

current_approval_stepReference for currentApprovalStep

current_approval_step_idField for currentApprovalStepID

customerReference for customer

customer_idField for customerID

days_lateField for daysLate

default_baseline_taskReference for defaultBaselineTask

descriptionField for description

document_requestsCollection for documentRequests

documentsCollection for documents

done_statusesCollection for doneStatuses

due_dateField for dueDate

durationField for duration

duration_expressionField for durationExpression

duration_minutesField for durationMinutes

duration_typeField for durationType

duration_unitField for durationUnit

eacField for eac

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

est_completion_dateField for estCompletionDate

2.2. API Reference 363

Page 368: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

est_start_dateField for estStartDate

estimateField for estimate

expensesCollection for expenses

ext_ref_idField for extRefID

groupReference for group

group_idField for groupID

handoff_dateField for handoffDate

has_completion_constraintField for hasCompletionConstraint

has_documentsField for hasDocuments

has_expensesField for hasExpenses

has_messagesField for hasMessages

has_notesField for hasNotes

has_resolvablesField for hasResolvables

has_start_constraintField for hasStartConstraint

has_timed_notificationsField for hasTimedNotifications

hoursCollection for hours

hours_per_pointField for hoursPerPoint

indentField for indent

is_agileField for isAgile

is_criticalField for isCritical

is_duration_lockedField for isDurationLocked

364 Chapter 2. Detailed Documentation

Page 369: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

is_leveling_excludedField for isLevelingExcluded

is_readyField for isReady

is_status_completeField for isStatusComplete

is_work_required_lockedField for isWorkRequiredLocked

iterationReference for iteration

iteration_idField for iterationID

last_condition_noteReference for lastConditionNote

last_condition_note_idField for lastConditionNoteID

last_noteReference for lastNote

last_note_idField for lastNoteID

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

leveling_start_delayField for levelingStartDelay

leveling_start_delay_expressionField for levelingStartDelayExpression

leveling_start_delay_minutesField for levelingStartDelayMinutes

mark_done(status=None)The markDone action.

Parameters status – status (type: string)

mark_not_done(assignment_id=None)The markNotDone action.

Parameters assignment_id – assignmentID (type: string)

master_taskReference for masterTask

master_task_idField for masterTaskID

2.2. API Reference 365

Page 370: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

milestoneReference for milestone

milestone_idField for milestoneID

move(project_id=None, parent_id=None, options=None)The move action.

Parameters

• project_id – projectID (type: string)

• parent_id – parentID (type: string)

• options – options (type: string[])

nameField for name

notification_recordsCollection for notificationRecords

number_of_childrenField for numberOfChildren

number_open_op_tasksField for numberOpenOpTasks

object_categoriesCollection for objectCategories

olvField for olv

op_tasksCollection for opTasks

open_op_tasksCollection for openOpTasks

original_durationField for originalDuration

original_work_requiredField for originalWorkRequired

parameter_valuesCollection for parameterValues

parentReference for parent

parent_idField for parentID

parent_lagField for parentLag

parent_lag_typeField for parentLagType

pending_calculationField for pendingCalculation

366 Chapter 2. Detailed Documentation

Page 371: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

pending_predecessorsField for pendingPredecessors

pending_update_methodsField for pendingUpdateMethods

percent_completeField for percentComplete

personalField for personal

planned_completion_dateField for plannedCompletionDate

planned_costField for plannedCost

planned_date_alignmentField for plannedDateAlignment

planned_durationField for plannedDuration

planned_duration_minutesField for plannedDurationMinutes

planned_expense_costField for plannedExpenseCost

planned_hours_alignmentField for plannedHoursAlignment

planned_labor_costField for plannedLaborCost

planned_revenueField for plannedRevenue

planned_start_dateField for plannedStartDate

predecessor_expressionField for predecessorExpression

predecessorsCollection for predecessors

previous_statusField for previousStatus

primary_assignmentReference for primaryAssignment

priorityField for priority

progress_statusField for progressStatus

projectReference for project

2.2. API Reference 367

Page 372: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

project_idField for projectID

projected_completion_dateField for projectedCompletionDate

projected_duration_minutesField for projectedDurationMinutes

projected_start_dateField for projectedStartDate

recall_approval()The recallApproval action.

recurrence_numberField for recurrenceNumber

recurrence_ruleReference for recurrenceRule

recurrence_rule_idField for recurrenceRuleID

reference_numberField for referenceNumber

reject_approval(user_id=None, username=None, password=None, audit_note=None, au-dit_user_ids=None, send_note_as_email=None)

The rejectApproval action.

Parameters

• user_id – userID (type: string)

• username – username (type: string)

• password – password (type: string)

• audit_note – auditNote (type: string)

• audit_user_ids – auditUserIDs (type: string[])

• send_note_as_email – sendNoteAsEmail (type: boolean)

rejection_issueReference for rejectionIssue

rejection_issue_idField for rejectionIssueID

remaining_duration_minutesField for remainingDurationMinutes

reply_to_assignment(note_text=None, commit_date=None)The replyToAssignment action.

Parameters

• note_text – noteText (type: string)

• commit_date – commitDate (type: dateTime)

reserved_timeReference for reservedTime

368 Chapter 2. Detailed Documentation

Page 373: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

reserved_time_idField for reservedTimeID

resolvablesCollection for resolvables

resource_scopeField for resourceScope

revenue_typeField for revenueType

roleReference for role

role_idField for roleID

security_ancestorsCollection for securityAncestors

security_ancestors_disabledField for securityAncestorsDisabled

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

show_commit_dateField for showCommitDate

show_conditionField for showCondition

show_statusField for showStatus

slack_dateField for slackDate

spiField for spi

statusField for status

status_equates_withField for statusEquatesWith

status_updateField for statusUpdate

submitted_byReference for submittedBy

submitted_by_idField for submittedByID

successorsCollection for successors

2.2. API Reference 369

Page 374: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

task_constraintField for taskConstraint

task_numberField for taskNumber

task_number_predecessor_stringField for taskNumberPredecessorString

teamReference for team

team_assignmentReference for teamAssignment

team_idField for teamID

template_taskReference for templateTask

template_task_idField for templateTaskID

timed_notifications(notification_ids=None)The timedNotifications action.

Parameters notification_ids – notificationIDs (type: string[])

tracking_modeField for trackingMode

unaccept_work()The unacceptWork action.

unassign(user_id=None)The unassign action.

Parameters user_id – userID (type: string)

unassign_occurrences(user_id=None)The unassignOccurrences action.

Parameters user_id – userID (type: string)

Returns string[]

updatesCollection for updates

urlField for URL

versionField for version

wbsField for wbs

workField for work

work_itemReference for workItem

370 Chapter 2. Detailed Documentation

Page 375: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

work_requiredField for workRequired

work_required_expressionField for workRequiredExpression

work_unitField for workUnit

class workfront.versions.unsupported.Team(session=None, **fields)Object for TEAMOB

add_early_access(ids=None)The addEarlyAccess action.

Parameters ids – ids (type: string[])

backlog_tasksCollection for backlogTasks

customerReference for customer

customer_idField for customerID

default_interfaceField for defaultInterface

delete_early_access(ids=None)The deleteEarlyAccess action.

Parameters ids – ids (type: string[])

descriptionField for description

estimate_by_hoursField for estimateByHours

hours_per_pointField for hoursPerPoint

is_agileField for isAgile

is_standard_issue_listField for isStandardIssueList

layout_templateReference for layoutTemplate

layout_template_idField for layoutTemplateID

move_tasks_on_team_backlog(team_id=None, start_number=None, end_number=None,move_to_number=None, moving_task_ids=None)

The moveTasksOnTeamBacklog action.

Parameters

• team_id – teamID (type: string)

• start_number – startNumber (type: int)

• end_number – endNumber (type: int)

2.2. API Reference 371

Page 376: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

• move_to_number – moveToNumber (type: int)

• moving_task_ids – movingTaskIDs (type: string[])

my_work_viewReference for myWorkView

my_work_view_idField for myWorkViewID

nameField for name

op_task_bug_report_statusesField for opTaskBugReportStatuses

op_task_change_order_statusesField for opTaskChangeOrderStatuses

op_task_issue_statusesField for opTaskIssueStatuses

op_task_request_statusesField for opTaskRequestStatuses

ownerReference for owner

owner_idField for ownerID

requests_viewReference for requestsView

requests_view_idField for requestsViewID

scheduleReference for schedule

schedule_idField for scheduleID

task_statusesField for taskStatuses

team_member_rolesCollection for teamMemberRoles

team_membersCollection for teamMembers

team_story_board_statusesField for teamStoryBoardStatuses

team_typeField for teamType

updatesCollection for updates

usersCollection for users

372 Chapter 2. Detailed Documentation

Page 377: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

class workfront.versions.unsupported.TeamMember(session=None, **fields)Object for TEAMMB

adhoc_teamField for adhocTeam

customerReference for customer

customer_idField for customerID

has_assign_permissionsField for hasAssignPermissions

teamReference for team

team_idField for teamID

userReference for user

user_idField for userID

class workfront.versions.unsupported.TeamMemberRole(session=None, **fields)Object for TEAMMR

customerReference for customer

customer_idField for customerID

roleReference for role

role_idField for roleID

teamReference for team

team_idField for teamID

userReference for user

user_idField for userID

class workfront.versions.unsupported.Template(session=None, **fields)Object for TMPL

access_rule_preferencesCollection for accessRulePreferences

access_rulesCollection for accessRules

2.2. API Reference 373

Page 378: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

accessor_idsField for accessorIDs

approval_processReference for approvalProcess

approval_process_idField for approvalProcessID

auto_baseline_recur_onField for autoBaselineRecurOn

auto_baseline_recurrence_typeField for autoBaselineRecurrenceType

budgetField for budget

calculate_data_extension()The calculateDataExtension action.

calculate_timeline()The calculateTimeline action.

Returns string

categoryReference for category

category_idField for categoryID

companyReference for company

company_idField for companyID

completion_dayField for completionDay

completion_typeField for completionType

condition_typeField for conditionType

currencyField for currency

customerReference for customer

customer_idField for customerID

default_forbidden_contribute_actionsField for defaultForbiddenContributeActions

default_forbidden_manage_actionsField for defaultForbiddenManageActions

default_forbidden_view_actionsField for defaultForbiddenViewActions

374 Chapter 2. Detailed Documentation

Page 379: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

deliverable_score_cardReference for deliverableScoreCard

deliverable_score_card_idField for deliverableScoreCardID

deliverable_success_scoreField for deliverableSuccessScore

deliverable_valuesCollection for deliverableValues

descriptionField for description

document_requestsCollection for documentRequests

documentsCollection for documents

duration_expressionField for durationExpression

duration_minutesField for durationMinutes

enable_auto_baselinesField for enableAutoBaselines

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

exchange_rateReference for exchangeRate

expensesCollection for expenses

ext_ref_idField for extRefID

filter_hour_typesField for filterHourTypes

fixed_costField for fixedCost

fixed_revenueField for fixedRevenue

get_template_currency()The getTemplateCurrency action.

Returns string

groupsCollection for groups

2.2. API Reference 375

Page 380: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

has_documentsField for hasDocuments

has_expensesField for hasExpenses

has_notesField for hasNotes

has_timed_notificationsField for hasTimedNotifications

hour_typesCollection for hourTypes

last_noteReference for lastNote

last_note_idField for lastNoteID

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

leveling_modeField for levelingMode

milestone_pathReference for milestonePath

milestone_path_idField for milestonePathID

nameField for name

notification_recordsCollection for notificationRecords

object_categoriesCollection for objectCategories

olvField for olv

ownerReference for owner

owner_idField for ownerID

owner_privilegesField for ownerPrivileges

parameter_valuesCollection for parameterValues

376 Chapter 2. Detailed Documentation

Page 381: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

pending_calculationField for pendingCalculation

pending_update_methodsField for pendingUpdateMethods

performance_index_methodField for performanceIndexMethod

planned_benefitField for plannedBenefit

planned_costField for plannedCost

planned_expense_costField for plannedExpenseCost

planned_labor_costField for plannedLaborCost

planned_revenueField for plannedRevenue

planned_risk_costField for plannedRiskCost

portfolioReference for portfolio

portfolio_idField for portfolioID

priorityField for priority

programReference for program

program_idField for programID

queue_defReference for queueDef

queue_def_idField for queueDefID

ratesCollection for rates

reference_numberField for referenceNumber

remove_users_from_template(user_ids=None)The removeUsersFromTemplate action.

Parameters user_ids – userIDs (type: string[])

riskField for risk

risksCollection for risks

2.2. API Reference 377

Page 382: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

rolesCollection for roles

routing_rulesCollection for routingRules

scheduleReference for schedule

schedule_idField for scheduleID

schedule_modeField for scheduleMode

set_access_rule_preferences(access_rule_preferences=None)The setAccessRulePreferences action.

Parameters access_rule_preferences – accessRulePreferences (type: string[])

sharing_settingsReference for sharingSettings

sponsorReference for sponsor

sponsor_idField for sponsorID

start_dayField for startDay

summary_completion_typeField for summaryCompletionType

teamReference for team

team_idField for teamID

template_tasksCollection for templateTasks

template_user_rolesCollection for templateUserRoles

template_usersCollection for templateUsers

update_typeField for updateType

updatesCollection for updates

urlField for URL

versionField for version

work_requiredField for workRequired

378 Chapter 2. Detailed Documentation

Page 383: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

class workfront.versions.unsupported.TemplateAssignment(session=None, **fields)Object for TASSGN

accessor_idsField for accessorIDs

assigned_toReference for assignedTo

assigned_to_idField for assignedToID

assignment_percentField for assignmentPercent

customerReference for customer

customer_idField for customerID

is_primaryField for isPrimary

is_team_assignmentField for isTeamAssignment

master_taskReference for masterTask

master_task_idField for masterTaskID

obj_idField for objID

obj_obj_codeField for objObjCode

roleReference for role

role_idField for roleID

teamReference for team

team_idField for teamID

templateReference for template

template_idField for templateID

template_taskReference for templateTask

template_task_idField for templateTaskID

2.2. API Reference 379

Page 384: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

workField for work

work_requiredField for workRequired

work_unitField for workUnit

class workfront.versions.unsupported.TemplatePredecessor(session=None, **fields)Object for TPRED

customerReference for customer

customer_idField for customerID

is_enforcedField for isEnforced

lag_daysField for lagDays

lag_typeField for lagType

predecessorReference for predecessor

predecessor_idField for predecessorID

predecessor_typeField for predecessorType

successorReference for successor

successor_idField for successorID

class workfront.versions.unsupported.TemplateTask(session=None, **fields)Object for TTSK

accessor_idsField for accessorIDs

approval_processReference for approvalProcess

approval_process_idField for approvalProcessID

assign_multiple(user_ids=None, role_ids=None, team_id=None)The assignMultiple action.

Parameters

• user_ids – userIDs (type: string[])

• role_ids – roleIDs (type: string[])

• team_id – teamID (type: string)

380 Chapter 2. Detailed Documentation

Page 385: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

assigned_toReference for assignedTo

assigned_to_idField for assignedToID

assignmentsCollection for assignments

assignments_list_stringField for assignmentsListString

audit_typesField for auditTypes

billing_amountField for billingAmount

bulk_copy(template_id=None, template_task_ids=None, parent_template_task_id=None, op-tions=None)

The bulkCopy action.

Parameters

• template_id – templateID (type: string)

• template_task_ids – templateTaskIDs (type: string[])

• parent_template_task_id – parentTemplateTaskID (type: string)

• options – options (type: string[])

Returns string[]

bulk_move(template_task_ids=None, template_id=None, parent_id=None, options=None)The bulkMove action.

Parameters

• template_task_ids – templateTaskIDs (type: string[])

• template_id – templateID (type: string)

• parent_id – parentID (type: string)

• options – options (type: string[])

Returns string

calculate_data_extension()The calculateDataExtension action.

categoryReference for category

category_idField for categoryID

childrenCollection for children

completion_dayField for completionDay

constraint_dayField for constraintDay

2.2. API Reference 381

Page 386: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

cost_amountField for costAmount

cost_typeField for costType

customerReference for customer

customer_idField for customerID

descriptionField for description

document_requestsCollection for documentRequests

documentsCollection for documents

durationField for duration

duration_expressionField for durationExpression

duration_minutesField for durationMinutes

duration_typeField for durationType

duration_unitField for durationUnit

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

expensesCollection for expenses

ext_ref_idField for extRefID

has_documentsField for hasDocuments

has_expensesField for hasExpenses

has_notesField for hasNotes

has_timed_notificationsField for hasTimedNotifications

382 Chapter 2. Detailed Documentation

Page 387: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

indentField for indent

is_criticalField for isCritical

is_duration_lockedField for isDurationLocked

is_leveling_excludedField for isLevelingExcluded

is_work_required_lockedField for isWorkRequiredLocked

last_noteReference for lastNote

last_note_idField for lastNoteID

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

leveling_start_delayField for levelingStartDelay

leveling_start_delay_minutesField for levelingStartDelayMinutes

master_taskReference for masterTask

master_task_idField for masterTaskID

milestoneReference for milestone

milestone_idField for milestoneID

move(template_id=None, parent_id=None, options=None)The move action.

Parameters

• template_id – templateID (type: string)

• parent_id – parentID (type: string)

• options – options (type: string[])

nameField for name

notification_recordsCollection for notificationRecords

2.2. API Reference 383

Page 388: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

number_of_childrenField for numberOfChildren

object_categoriesCollection for objectCategories

original_durationField for originalDuration

original_work_requiredField for originalWorkRequired

parameter_valuesCollection for parameterValues

parentReference for parent

parent_idField for parentID

parent_lagField for parentLag

parent_lag_typeField for parentLagType

pending_calculationField for pendingCalculation

pending_update_methodsField for pendingUpdateMethods

planned_costField for plannedCost

planned_durationField for plannedDuration

planned_duration_minutesField for plannedDurationMinutes

planned_expense_costField for plannedExpenseCost

planned_labor_costField for plannedLaborCost

planned_revenueField for plannedRevenue

predecessor_expressionField for predecessorExpression

predecessorsCollection for predecessors

priorityField for priority

recurrence_numberField for recurrenceNumber

384 Chapter 2. Detailed Documentation

Page 389: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

recurrence_ruleReference for recurrenceRule

recurrence_rule_idField for recurrenceRuleID

reference_numberField for referenceNumber

revenue_typeField for revenueType

roleReference for role

role_idField for roleID

start_dayField for startDay

successorsCollection for successors

task_constraintField for taskConstraint

task_numberField for taskNumber

task_number_predecessor_stringField for taskNumberPredecessorString

teamReference for team

team_assignmentReference for teamAssignment

team_idField for teamID

templateReference for template

template_idField for templateID

timed_notifications(notification_ids=None)The timedNotifications action.

Parameters notification_ids – notificationIDs (type: string[])

tracking_modeField for trackingMode

urlField for URL

workField for work

work_requiredField for workRequired

2.2. API Reference 385

Page 390: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

work_required_expressionField for workRequiredExpression

work_unitField for workUnit

class workfront.versions.unsupported.TemplateUser(session=None, **fields)Object for TMTU

customerReference for customer

customer_idField for customerID

templateReference for template

template_idField for templateID

tmp_user_idField for tmpUserID

userReference for user

user_idField for userID

class workfront.versions.unsupported.TemplateUserRole(session=None, **fields)Object for TTEAM

customerReference for customer

customer_idField for customerID

roleReference for role

role_idField for roleID

templateReference for template

template_idField for templateID

userReference for user

user_idField for userID

class workfront.versions.unsupported.TimedNotification(session=None, **fields)Object for TMNOT

criteriaField for criteria

386 Chapter 2. Detailed Documentation

Page 391: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

customerReference for customer

customer_idField for customerID

date_fieldField for dateField

descriptionField for description

duration_minutesField for durationMinutes

duration_unitField for durationUnit

email_templateReference for emailTemplate

email_template_idField for emailTemplateID

nameField for name

recipientsField for recipients

timed_not_obj_codeField for timedNotObjCode

timingField for timing

class workfront.versions.unsupported.Timesheet(session=None, **fields)Object for TSHET

approverReference for approver

approver_can_edit_hoursField for approverCanEditHours

approver_idField for approverID

approversCollection for approvers

approvers_list_stringField for approversListString

available_actionsField for availableActions

awaiting_approvalsCollection for awaitingApprovals

customerReference for customer

2.2. API Reference 387

Page 392: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

customer_idField for customerID

display_nameField for displayName

end_dateField for endDate

ext_ref_idField for extRefID

has_notesField for hasNotes

hoursCollection for hours

hours_durationField for hoursDuration

is_editableField for isEditable

last_noteReference for lastNote

last_note_idField for lastNoteID

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

notification_recordsCollection for notificationRecords

overtime_hoursField for overtimeHours

pin_timesheet_object(user_id=None, obj_code=None, obj_id=None)The pinTimesheetObject action.

Parameters

• user_id – userID (type: string)

• obj_code – objCode (type: string)

• obj_id – objID (type: string)

regular_hoursField for regularHours

start_dateField for startDate

statusField for status

388 Chapter 2. Detailed Documentation

Page 393: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

timesheet_profileReference for timesheetProfile

timesheet_profile_idField for timesheetProfileID

total_hoursField for totalHours

unpin_timesheet_object(user_id=None, obj_code=None, obj_id=None)The unpinTimesheetObject action.

Parameters

• user_id – userID (type: string)

• obj_code – objCode (type: string)

• obj_id – objID (type: string)

userReference for user

user_idField for userID

class workfront.versions.unsupported.TimesheetProfile(session=None, **fields)Object for TSPRO

approverReference for approver

approver_can_edit_hoursField for approverCanEditHours

approver_idField for approverID

approversCollection for approvers

approvers_list_stringField for approversListString

customerReference for customer

customer_idField for customerID

descriptionField for description

effective_end_dateField for effectiveEndDate

effective_start_dateField for effectiveStartDate

entered_byReference for enteredBy

entered_by_idField for enteredByID

2.2. API Reference 389

Page 394: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

generate_customer_timesheets(obj_ids=None)The generateCustomerTimesheets action.

Parameters obj_ids – objIDs (type: string[])

has_reference(ids=None)The hasReference action.

Parameters ids – ids (type: string[])

Returns java.lang.Boolean

hour_typesCollection for hourTypes

is_recurringField for isRecurring

manager_approvalField for managerApproval

nameField for name

notification_recordsCollection for notificationRecords

pay_period_typeField for payPeriodType

period_startField for periodStart

period_start_display_nameField for PeriodStartDisplayName

class workfront.versions.unsupported.TimesheetTemplate(session=None, **fields)Object for TSHTMP

customerReference for customer

customer_idField for customerID

hour_typeReference for hourType

hour_type_idField for hourTypeID

op_taskReference for opTask

op_task_idField for opTaskID

projectReference for project

project_idField for projectID

ref_obj_codeField for refObjCode

390 Chapter 2. Detailed Documentation

Page 395: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

ref_obj_idField for refObjID

taskReference for task

task_idField for taskID

userReference for user

user_idField for userID

class workfront.versions.unsupported.UIFilter(session=None, **fields)Object for UIFT

access_rulesCollection for accessRules

accessor_idsField for accessorIDs

app_globalReference for appGlobal

app_global_idField for appGlobalID

customerReference for customer

customer_idField for customerID

definitionField for definition

display_nameField for displayName

entered_byReference for enteredBy

entered_by_idField for enteredByID

filter_typeField for filterType

global_uikeyField for globalUIKey

is_app_global_editableField for isAppGlobalEditable

is_publicField for isPublic

is_reportField for isReport

2.2. API Reference 391

Page 396: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

is_saved_searchField for isSavedSearch

is_textField for isText

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

linked_rolesCollection for linkedRoles

linked_teamsCollection for linkedTeams

linked_usersCollection for linkedUsers

mod_dateField for modDate

msg_keyField for msgKey

nameField for name

obj_idField for objID

obj_obj_codeField for objObjCode

preferenceReference for preference

preference_idField for preferenceID

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

ui_obj_codeField for uiObjCode

un_link_users(filter_id=None, linked_user_ids=None)The unLinkUsers action.

Parameters

• filter_id – filterID (type: string)

• linked_user_ids – linkedUserIDs (type: string[])

usersCollection for users

392 Chapter 2. Detailed Documentation

Page 397: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

class workfront.versions.unsupported.UIGroupBy(session=None, **fields)Object for UIGB

access_rulesCollection for accessRules

accessor_idsField for accessorIDs

app_globalReference for appGlobal

app_global_idField for appGlobalID

customerReference for customer

customer_idField for customerID

definitionField for definition

display_nameField for displayName

entered_byReference for enteredBy

entered_by_idField for enteredByID

global_uikeyField for globalUIKey

is_app_global_editableField for isAppGlobalEditable

is_publicField for isPublic

is_reportField for isReport

is_textField for isText

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

linked_rolesCollection for linkedRoles

linked_teamsCollection for linkedTeams

2.2. API Reference 393

Page 398: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

linked_usersCollection for linkedUsers

mod_dateField for modDate

msg_keyField for msgKey

nameField for name

obj_idField for objID

obj_obj_codeField for objObjCode

preferenceReference for preference

preference_idField for preferenceID

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

ui_obj_codeField for uiObjCode

un_link_users(group_id=None, linked_user_ids=None)The unLinkUsers action.

Parameters

• group_id – groupID (type: string)

• linked_user_ids – linkedUserIDs (type: string[])

class workfront.versions.unsupported.UIView(session=None, **fields)Object for UIVW

access_rulesCollection for accessRules

accessor_idsField for accessorIDs

app_globalReference for appGlobal

app_global_idField for appGlobalID

customerReference for customer

customer_idField for customerID

definitionField for definition

394 Chapter 2. Detailed Documentation

Page 399: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

display_nameField for displayName

entered_byReference for enteredBy

entered_by_idField for enteredByID

expand_view_aliases(obj_code=None, definition=None)The expandViewAliases action.

Parameters

• obj_code – objCode (type: string)

• definition – definition (type: map)

Returns map

get_view_fields()The getViewFields action.

Returns string[]

global_uikeyField for globalUIKey

is_app_global_editableField for isAppGlobalEditable

is_defaultField for isDefault

is_new_formatField for isNewFormat

is_publicField for isPublic

is_reportField for isReport

is_textField for isText

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

layout_typeField for layoutType

linked_rolesCollection for linkedRoles

linked_teamsCollection for linkedTeams

2.2. API Reference 395

Page 400: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

linked_usersCollection for linkedUsers

migrate_uiviews_ppmto_anaconda()The migrateUIViewsPPMToAnaconda action.

mod_dateField for modDate

msg_keyField for msgKey

nameField for name

obj_idField for objID

obj_obj_codeField for objObjCode

preferenceReference for preference

preference_idField for preferenceID

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

ui_obj_codeField for uiObjCode

uiview_typeField for uiviewType

un_link_users(view_id=None, linked_user_ids=None)The unLinkUsers action.

Parameters

• view_id – viewID (type: string)

• linked_user_ids – linkedUserIDs (type: string[])

class workfront.versions.unsupported.Update(session=None, **fields)Object for UPDATE

allowed_actionsField for allowedActions

audit_recordReference for auditRecord

audit_record_idField for auditRecordID

audit_session_count(user_id=None, target_user_id=None, start_date=None, end_date=None)The auditSessionCount action.

Parameters

396 Chapter 2. Detailed Documentation

Page 401: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

• user_id – userID (type: string)

• target_user_id – targetUserID (type: string)

• start_date – startDate (type: dateTime)

• end_date – endDate (type: dateTime)

Returns java.lang.Integer

combined_updatesCollection for combinedUpdates

entered_by_idField for enteredByID

entered_by_nameField for enteredByName

entry_dateField for entryDate

get_update_types_for_stream(stream_type=None)The getUpdateTypesForStream action.

Parameters stream_type – streamType (type: string)

Returns string[]

has_updates_before_date(obj_code=None, obj_id=None, date=None)The hasUpdatesBeforeDate action.

Parameters

• obj_code – objCode (type: string)

• obj_id – objID (type: string)

• date – date (type: dateTime)

Returns java.lang.Boolean

icon_nameField for iconName

icon_pathField for iconPath

is_valid_update_note(obj_code=None, obj_id=None, comment_id=None)The isValidUpdateNote action.

Parameters

• obj_code – objCode (type: string)

• obj_id – objID (type: string)

• comment_id – commentID (type: string)

Returns java.lang.Boolean

messageField for message

message_argsCollection for messageArgs

2.2. API Reference 397

Page 402: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

nested_updatesCollection for nestedUpdates

ref_nameField for refName

ref_obj_codeField for refObjCode

ref_obj_idField for refObjID

repliesCollection for replies

styled_messageField for styledMessage

sub_messageField for subMessage

sub_message_argsCollection for subMessageArgs

sub_obj_codeField for subObjCode

sub_obj_idField for subObjID

thread_idField for threadID

top_nameField for topName

top_obj_codeField for topObjCode

top_obj_idField for topObjID

update_actionsField for updateActions

update_endorsementReference for updateEndorsement

update_journal_entryReference for updateJournalEntry

update_noteReference for updateNote

update_objThe object referenced by this update.

update_obj_codeField for updateObjCode

update_obj_idField for updateObjID

398 Chapter 2. Detailed Documentation

Page 403: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

update_typeField for updateType

class workfront.versions.unsupported.User(session=None, **fields)Object for USER

access_levelReference for accessLevel

access_level_idField for accessLevelID

access_rule_preferencesCollection for accessRulePreferences

add_customer_feedback_improvement(is_better=None, comment=None)The addCustomerFeedbackImprovement action.

Parameters

• is_better – isBetter (type: boolean)

• comment – comment (type: string)

add_customer_feedback_score_rating(score=None, comment=None)The addCustomerFeedbackScoreRating action.

Parameters

• score – score (type: int)

• comment – comment (type: string)

add_early_access(ids=None)The addEarlyAccess action.

Parameters ids – ids (type: string[])

add_external_user(email_addr=None)The addExternalUser action.

Parameters email_addr – emailAddr (type: string)

Returns string

add_mobile_device(token=None, device_type=None)The addMobileDevice action.

Parameters

• token – token (type: string)

• device_type – deviceType (type: string)

Returns map

addressField for address

address2Field for address2

assign_user_token()The assignUserToken action.

Returns string

2.2. API Reference 399

Page 404: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

avatar_dateField for avatarDate

avatar_download_urlField for avatarDownloadURL

avatar_sizeField for avatarSize

avatar_xField for avatarX

avatar_yField for avatarY

billing_per_hourField for billingPerHour

calculate_data_extension()The calculateDataExtension action.

categoryReference for category

category_idField for categoryID

check_other_user_early_access()The checkOtherUserEarlyAccess action.

Returns java.lang.Boolean

cityField for city

clear_access_rule_preferences(obj_code=None)The clearAccessRulePreferences action.

Parameters obj_code – objCode (type: string)

clear_api_key()The clearApiKey action.

Returns string

companyReference for company

company_idField for companyID

complete_external_user_registration(first_name=None, last_name=None,new_password=None)

The completeExternalUserRegistration action.

Parameters

• first_name – firstName (type: string)

• last_name – lastName (type: string)

• new_password – newPassword (type: string)

complete_user_registration(first_name=None, last_name=None, token=None, title=None,new_password=None)

The completeUserRegistration action.

400 Chapter 2. Detailed Documentation

Page 405: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

Parameters

• first_name – firstName (type: string)

• last_name – lastName (type: string)

• token – token (type: string)

• title – title (type: string)

• new_password – newPassword (type: string)

cost_per_hourField for costPerHour

countryField for country

custom_tabsCollection for customTabs

customerReference for customer

customer_idField for customerID

default_hour_typeReference for defaultHourType

default_hour_type_idField for defaultHourTypeID

default_interfaceField for defaultInterface

delegation_toReference for delegationTo

delegation_to_idField for delegationToID

delegations_fromCollection for delegationsFrom

delete_early_access(ids=None)The deleteEarlyAccess action.

Parameters ids – ids (type: string[])

direct_reportsCollection for directReports

document_requestsCollection for documentRequests

documentsCollection for documents

effective_layout_templateReference for effectiveLayoutTemplate

email_addrField for emailAddr

2.2. API Reference 401

Page 406: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

entered_byReference for enteredBy

entered_by_idField for enteredByID

entry_dateField for entryDate

expire_password()The expirePassword action.

ext_ref_idField for extRefID

external_sectionsCollection for externalSections

external_usernameReference for externalUsername

favoritesCollection for favorites

first_nameField for firstName

fteField for fte

get_api_key()The getApiKey action.

Returns string

get_next_customer_feedback_type()The getNextCustomerFeedbackType action.

Returns string

get_or_add_external_user(email_addr=None)The getOrAddExternalUser action.

Parameters email_addr – emailAddr (type: string)

Returns string

get_reset_password_token_expired(token=None)The getResetPasswordTokenExpired action.

Parameters token – token (type: string)

Returns java.lang.Boolean

has_apiaccessField for hasAPIAccess

has_documentsField for hasDocuments

has_early_access()The hasEarlyAccess action.

Returns java.lang.Boolean

402 Chapter 2. Detailed Documentation

Page 407: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

has_notesField for hasNotes

has_passwordField for hasPassword

has_proof_licenseField for hasProofLicense

has_reserved_timesField for hasReservedTimes

high_priority_work_itemReference for highPriorityWorkItem

home_groupReference for homeGroup

home_group_idField for homeGroupID

home_teamReference for homeTeam

home_team_idField for homeTeamID

hour_typesCollection for hourTypes

is_activeField for isActive

is_adminField for isAdmin

is_box_authenticatedField for isBoxAuthenticated

is_drop_box_authenticatedField for isDropBoxAuthenticated

is_google_authenticatedField for isGoogleAuthenticated

is_npssurvey_available()The isNPSSurveyAvailable action.

Returns java.lang.Boolean

is_share_point_authenticatedField for isSharePointAuthenticated

is_username_re_captcha_required()The isUsernameReCaptchaRequired action.

Returns java.lang.Boolean

is_web_damauthenticatedField for isWebDAMAuthenticated

is_workfront_damauthenticatedField for isWorkfrontDAMAuthenticated

2.2. API Reference 403

Page 408: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

last_entered_noteReference for lastEnteredNote

last_entered_note_idField for lastEnteredNoteID

last_login_dateField for lastLoginDate

last_nameField for lastName

last_noteReference for lastNote

last_note_idField for lastNoteID

last_status_noteReference for lastStatusNote

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

last_whats_newField for lastWhatsNew

latest_update_noteReference for latestUpdateNote

latest_update_note_idField for latestUpdateNoteID

layout_templateReference for layoutTemplate

layout_template_idField for layoutTemplateID

license_typeField for licenseType

linked_portal_tabsCollection for linkedPortalTabs

localeField for locale

login_countField for loginCount

managerReference for manager

manager_idField for managerID

404 Chapter 2. Detailed Documentation

Page 409: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

messagesCollection for messages

migrate_users_ppmto_anaconda()The migrateUsersPPMToAnaconda action.

mobile_devicesCollection for mobileDevices

mobile_phone_numberField for mobilePhoneNumber

my_infoField for myInfo

nameField for name

object_categoriesCollection for objectCategories

parameter_valuesCollection for parameterValues

passwordField for password

password_dateField for passwordDate

personaField for persona

phone_extensionField for phoneExtension

phone_numberField for phoneNumber

portal_profileReference for portalProfile

portal_profile_idField for portalProfileID

portal_sectionsCollection for portalSections

portal_tabsCollection for portalTabs

postal_codeField for postalCode

registration_expire_dateField for registrationExpireDate

remove_mobile_device(token=None)The removeMobileDevice action.

Parameters token – token (type: string)

Returns map

2.2. API Reference 405

Page 410: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

reserved_timesCollection for reservedTimes

reset_password(old_password=None, new_password=None)The resetPassword action.

Parameters

• old_password – oldPassword (type: string)

• new_password – newPassword (type: string)

reset_password_expire_dateField for resetPasswordExpireDate

resource_poolReference for resourcePool

resource_pool_idField for resourcePoolID

retrieve_and_store_oauth2tokens(state=None, authorization_code=None)The retrieveAndStoreOAuth2Tokens action.

Parameters

• state – state (type: string)

• authorization_code – authorizationCode (type: string)

retrieve_and_store_oauth_token(oauth_token=None)The retrieveAndStoreOAuthToken action.

Parameters oauth_token – oauth_token (type: string)

roleReference for role

role_idField for roleID

rolesCollection for roles

scheduleReference for schedule

schedule_idField for scheduleID

send_invitation_email()The sendInvitationEmail action.

set_access_rule_preferences(access_rule_preferences=None)The setAccessRulePreferences action.

Parameters access_rule_preferences – accessRulePreferences (type: string[])

sso_access_onlyField for ssoAccessOnly

sso_usernameField for ssoUsername

stateField for state

406 Chapter 2. Detailed Documentation

Page 411: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

status_updateField for statusUpdate

submit_npssurvey(data_map=None)The submitNPSSurvey action.

Parameters data_map – dataMap (type: map)

teamsCollection for teams

time_zoneField for timeZone

timesheet_profileReference for timesheetProfile

timesheet_profile_idField for timesheetProfileID

timesheet_templatesCollection for timesheetTemplates

titleField for title

ui_filtersCollection for uiFilters

ui_group_bysCollection for uiGroupBys

ui_viewsCollection for uiViews

update_next_survey_on_date(next_suvey_date=None)The updateNextSurveyOnDate action.

Parameters next_suvey_date – nextSuveyDate (type: dateTime)

updatesCollection for updates

user_activitiesCollection for userActivities

user_groupsCollection for userGroups

user_pref_valuesCollection for userPrefValues

usernameField for username

validate_re_captcha(captcha_response=None)The validateReCaptcha action.

Parameters captcha_response – captchaResponse (type: string)

Returns java.lang.Boolean

watch_listCollection for watchList

2.2. API Reference 407

Page 412: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

web_davprofileField for webDAVProfile

work_itemsCollection for workItems

class workfront.versions.unsupported.UserActivity(session=None, **fields)Object for USERAC

customerReference for customer

customer_idField for customerID

entry_dateField for entryDate

last_update_dateField for lastUpdateDate

nameField for name

userReference for user

user_idField for userID

valueField for value

class workfront.versions.unsupported.UserAvailability(session=None, **fields)Object for USRAVL

availability_dateField for availabilityDate

customerReference for customer

customer_idField for customerID

delete_duplicate_availability(duplicate_user_availability_ids=None)The deleteDuplicateAvailability action.

Parameters duplicate_user_availability_ids – duplicateUserAvailabilityIDs(type: string[])

get_user_assignments(user_id=None, start_date=None, end_date=None)The getUserAssignments action.

Parameters

• user_id – userID (type: string)

• start_date – startDate (type: string)

• end_date – endDate (type: string)

Returns string[]

408 Chapter 2. Detailed Documentation

Page 413: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

olvField for olv

planned_allocation_percentField for plannedAllocationPercent

planned_assigned_minutesField for plannedAssignedMinutes

planned_remaining_minutesField for plannedRemainingMinutes

projected_allocation_percentField for projectedAllocationPercent

projected_assigned_minutesField for projectedAssignedMinutes

projected_remaining_minutesField for projectedRemainingMinutes

total_minutesField for totalMinutes

userReference for user

user_idField for userID

class workfront.versions.unsupported.UserDelegation(session=None, **fields)Object for USRDEL

customerReference for customer

customer_idField for customerID

end_dateField for endDate

from_userReference for fromUser

from_user_idField for fromUserID

start_dateField for startDate

to_userReference for toUser

to_user_idField for toUserID

class workfront.versions.unsupported.UserGroups(session=None, **fields)Object for USRGPS

customerReference for customer

2.2. API Reference 409

Page 414: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

customer_idField for customerID

groupReference for group

group_idField for groupID

is_ownerField for isOwner

userReference for user

user_idField for userID

class workfront.versions.unsupported.UserNote(session=None, **fields)Object for USRNOT

acknowledge()The acknowledge action.

Returns string

acknowledge_all()The acknowledgeAll action.

Returns string[]

acknowledge_many(obj_ids=None)The acknowledgeMany action.

Parameters obj_ids – objIDs (type: string[])

Returns string[]

acknowledgementReference for acknowledgement

acknowledgement_idField for acknowledgementID

add_team_note(team_id=None, obj_code=None, target_id=None, type=None)The addTeamNote action.

Parameters

• team_id – teamID (type: string)

• obj_code – objCode (type: string)

• target_id – targetID (type: string)

• type – type (type: com.attask.common.constants.UserNoteEventEnum)

Returns java.util.Collection

add_teams_notes(team_ids=None, obj_code=None, target_id=None, type=None)The addTeamsNotes action.

Parameters

• team_ids – teamIDs (type: java.util.Collection)

• obj_code – objCode (type: string)

410 Chapter 2. Detailed Documentation

Page 415: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

• target_id – targetID (type: string)

• type – type (type: com.attask.common.constants.UserNoteEventEnum)

Returns java.util.Collection

add_user_note(user_id=None, obj_code=None, target_id=None, type=None)The addUserNote action.

Parameters

• user_id – userID (type: string)

• obj_code – objCode (type: string)

• target_id – targetID (type: string)

• type – type (type: com.attask.common.constants.UserNoteEventEnum)

Returns string

add_users_notes(user_ids=None, obj_code=None, target_id=None, type=None)The addUsersNotes action.

Parameters

• user_ids – userIDs (type: java.util.Collection)

• obj_code – objCode (type: string)

• target_id – targetID (type: string)

• type – type (type: com.attask.common.constants.UserNoteEventEnum)

Returns java.util.Collection

announcementReference for announcement

announcement_favorite_idField for announcementFavoriteID

announcement_idField for announcementID

customerReference for customer

customer_idField for customerID

document_approvalReference for documentApproval

document_approval_idField for documentApprovalID

document_requestReference for documentRequest

document_request_idField for documentRequestID

document_shareReference for documentShare

2.2. API Reference 411

Page 416: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

document_share_idField for documentShareID

endorsementReference for endorsement

endorsement_idField for endorsementID

endorsement_shareReference for endorsementShare

endorsement_share_idField for endorsementShareID

entry_dateField for entryDate

event_typeField for eventType

get_my_notification_last_view_date()The getMyNotificationLastViewDate action.

Returns dateTime

has_announcement_delete_access()The hasAnnouncementDeleteAccess action.

Returns java.lang.Boolean

journal_entryReference for journalEntry

journal_entry_idField for journalEntryID

likeReference for like

like_idField for likeID

mark_deleted(note_id=None)The markDeleted action.

Parameters note_id – noteID (type: string)

marked_deleted_dateField for markedDeletedDate

noteReference for note

note_idField for noteID

unacknowledge()The unacknowledge action.

unacknowledged_announcement_count()The unacknowledgedAnnouncementCount action.

Returns java.lang.Integer

412 Chapter 2. Detailed Documentation

Page 417: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

unacknowledged_count()The unacknowledgedCount action.

Returns java.lang.Integer

unmark_deleted(note_id=None)The unmarkDeleted action.

Parameters note_id – noteID (type: string)

userReference for user

user_idField for userID

user_notable_idField for userNotableID

user_notable_obj_codeField for userNotableObjCode

class workfront.versions.unsupported.UserObjectPref(session=None, **fields)Object for USOP

customerReference for customer

customer_idField for customerID

last_update_dateField for lastUpdateDate

nameField for name

ref_obj_codeField for refObjCode

ref_obj_idField for refObjID

set(user_id=None, ref_obj_code=None, ref_obj_id=None, name=None, value=None)The set action.

Parameters

• user_id – userID (type: string)

• ref_obj_code – refObjCode (type: string)

• ref_obj_id – refObjID (type: string)

• name – name (type: string)

• value – value (type: string)

Returns string

userReference for user

user_idField for userID

2.2. API Reference 413

Page 418: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

valueField for value

class workfront.versions.unsupported.UserPrefValue(session=None, **fields)Object for USERPF

customerReference for customer

customer_idField for customerID

get_inactive_notifications_value(user_id=None)The getInactiveNotificationsValue action.

Parameters user_id – userID (type: string)

Returns string

nameField for name

set_inactive_notifications_value(user_id=None, value=None)The setInactiveNotificationsValue action.

Parameters

• user_id – userID (type: string)

• value – value (type: string)

userReference for user

user_idField for userID

valueField for value

class workfront.versions.unsupported.UserResource(session=None, **fields)Object for USERRS

actual_allocation_percentageField for actualAllocationPercentage

actual_day_summariesField for actualDaySummaries

allocation_percentageField for allocationPercentage

allowed_actionsField for allowedActions

assignmentsCollection for assignments

available_number_of_hoursField for availableNumberOfHours

available_time_per_dayField for availableTimePerDay

414 Chapter 2. Detailed Documentation

Page 419: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

average_actual_number_of_hoursField for averageActualNumberOfHours

average_number_of_hoursField for averageNumberOfHours

average_projected_number_of_hoursField for averageProjectedNumberOfHours

day_summariesField for daySummaries

detail_levelField for detailLevel

number_of_assignmentsField for numberOfAssignments

number_of_days_within_actual_thresholdField for numberOfDaysWithinActualThreshold

number_of_days_within_projected_thresholdField for numberOfDaysWithinProjectedThreshold

number_of_days_within_thresholdField for numberOfDaysWithinThreshold

obj_codeField for objCode

projected_allocation_percentageField for projectedAllocationPercentage

projected_day_summariesField for projectedDaySummaries

roleReference for role

total_actual_hoursField for totalActualHours

total_available_hoursField for totalAvailableHours

total_number_of_hoursField for totalNumberOfHours

total_projected_hoursField for totalProjectedHours

userReference for user

user_home_teamReference for userHomeTeam

user_primary_roleReference for userPrimaryRole

working_daysField for workingDays

2.2. API Reference 415

Page 420: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

class workfront.versions.unsupported.UsersSections(session=None, **fields)Object for USRSEC

customer_idField for customerID

section_idField for sectionID

user_idField for userID

class workfront.versions.unsupported.WatchListEntry(session=None, **fields)Object for WATCH

customerReference for customer

customer_idField for customerID

optaskReference for optask

optask_idField for optaskID

projectReference for project

project_idField for projectID

taskReference for task

task_idField for taskID

userReference for user

user_idField for userID

watchable_obj_codeField for watchableObjCode

watchable_obj_idField for watchableObjID

class workfront.versions.unsupported.WhatsNew(session=None, **fields)Object for WTSN

descriptionField for description

entry_dateField for entryDate

feature_nameField for featureName

416 Chapter 2. Detailed Documentation

Page 421: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

is_whats_new_available(product_toggle=None)The isWhatsNewAvailable action.

Parameters product_toggle – productToggle (type: int)

Returns java.lang.Boolean

localeField for locale

product_toggleField for productToggle

start_dateField for startDate

titleField for title

whats_new_typesField for whatsNewTypes

class workfront.versions.unsupported.Work(session=None, **fields)Object for WORK

access_rulesCollection for accessRules

accessor_idsField for accessorIDs

actual_completion_dateField for actualCompletionDate

actual_costField for actualCost

actual_durationField for actualDuration

actual_duration_minutesField for actualDurationMinutes

actual_expense_costField for actualExpenseCost

actual_labor_costField for actualLaborCost

actual_revenueField for actualRevenue

actual_start_dateField for actualStartDate

actual_workField for actualWork

actual_work_requiredField for actualWorkRequired

actual_work_required_expressionField for actualWorkRequiredExpression

2.2. API Reference 417

Page 422: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

age_range_as_stringField for ageRangeAsString

all_prioritiesCollection for allPriorities

all_severitiesCollection for allSeverities

all_statusesCollection for allStatuses

approval_est_start_dateField for approvalEstStartDate

approval_planned_start_dateField for approvalPlannedStartDate

approval_planned_start_dayField for approvalPlannedStartDay

approval_processReference for approvalProcess

approval_process_idField for approvalProcessID

approval_projected_start_dateField for approvalProjectedStartDate

approver_statusesCollection for approverStatuses

approvers_stringField for approversString

assigned_toReference for assignedTo

assigned_to_idField for assignedToID

assignmentsCollection for assignments

assignments_list_stringField for assignmentsListString

audit_noteField for auditNote

audit_typesField for auditTypes

audit_user_idsField for auditUserIDs

auto_closure_dateField for autoClosureDate

awaiting_approvalsCollection for awaitingApprovals

418 Chapter 2. Detailed Documentation

Page 423: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

backlog_orderField for backlogOrder

billing_amountField for billingAmount

billing_recordReference for billingRecord

billing_record_idField for billingRecordID

can_startField for canStart

categoryReference for category

category_idField for categoryID

childrenCollection for children

colorField for color

commit_dateField for commitDate

commit_date_rangeField for commitDateRange

completion_pending_dateField for completionPendingDate

conditionField for condition

constraint_dateField for constraintDate

converted_op_task_entry_dateField for convertedOpTaskEntryDate

converted_op_task_nameField for convertedOpTaskName

converted_op_task_originatorReference for convertedOpTaskOriginator

converted_op_task_originator_idField for convertedOpTaskOriginatorID

cost_amountField for costAmount

cost_typeField for costType

cpiField for cpi

2.2. API Reference 419

Page 424: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

csiField for csi

current_approval_stepReference for currentApprovalStep

current_approval_step_idField for currentApprovalStepID

current_status_durationField for currentStatusDuration

customerReference for customer

customer_idField for customerID

days_lateField for daysLate

default_baseline_taskReference for defaultBaselineTask

descriptionField for description

display_queue_breadcrumbField for displayQueueBreadcrumb

document_requestsCollection for documentRequests

documentsCollection for documents

done_statusesCollection for doneStatuses

due_dateField for dueDate

durationField for duration

duration_expressionField for durationExpression

duration_minutesField for durationMinutes

duration_typeField for durationType

duration_unitField for durationUnit

eacField for eac

entered_byReference for enteredBy

420 Chapter 2. Detailed Documentation

Page 425: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

entered_by_idField for enteredByID

entry_dateField for entryDate

est_completion_dateField for estCompletionDate

est_start_dateField for estStartDate

estimateField for estimate

expensesCollection for expenses

ext_ref_idField for extRefID

first_responseField for firstResponse

get_my_accomplishments_count()The getMyAccomplishmentsCount action.

Returns java.lang.Integer

get_my_work_count()The getMyWorkCount action.

Returns java.lang.Integer

get_work_requests_count(filters=None)The getWorkRequestsCount action.

Parameters filters – filters (type: map)

Returns java.lang.Integer

groupReference for group

group_idField for groupID

handoff_dateField for handoffDate

has_completion_constraintField for hasCompletionConstraint

has_documentsField for hasDocuments

has_expensesField for hasExpenses

has_messagesField for hasMessages

has_notesField for hasNotes

2.2. API Reference 421

Page 426: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

has_resolvablesField for hasResolvables

has_start_constraintField for hasStartConstraint

has_timed_notificationsField for hasTimedNotifications

hoursCollection for hours

hours_per_pointField for hoursPerPoint

how_oldField for howOld

indentField for indent

is_agileField for isAgile

is_completeField for isComplete

is_criticalField for isCritical

is_duration_lockedField for isDurationLocked

is_help_deskField for isHelpDesk

is_leveling_excludedField for isLevelingExcluded

is_readyField for isReady

is_status_completeField for isStatusComplete

is_work_required_lockedField for isWorkRequiredLocked

iterationReference for iteration

iteration_idField for iterationID

last_condition_noteReference for lastConditionNote

last_condition_note_idField for lastConditionNoteID

last_noteReference for lastNote

422 Chapter 2. Detailed Documentation

Page 427: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

last_note_idField for lastNoteID

last_update_dateField for lastUpdateDate

last_updated_byReference for lastUpdatedBy

last_updated_by_idField for lastUpdatedByID

leveling_start_delayField for levelingStartDelay

leveling_start_delay_expressionField for levelingStartDelayExpression

leveling_start_delay_minutesField for levelingStartDelayMinutes

master_taskReference for masterTask

master_task_idField for masterTaskID

milestoneReference for milestone

milestone_idField for milestoneID

nameField for name

notification_recordsCollection for notificationRecords

number_of_childrenField for numberOfChildren

number_open_op_tasksField for numberOpenOpTasks

object_categoriesCollection for objectCategories

olvField for olv

op_task_typeField for opTaskType

op_task_type_labelField for opTaskTypeLabel

op_tasksCollection for opTasks

open_op_tasksCollection for openOpTasks

2.2. API Reference 423

Page 428: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

original_durationField for originalDuration

original_work_requiredField for originalWorkRequired

ownerReference for owner

owner_idField for ownerID

parameter_valuesCollection for parameterValues

parentReference for parent

parent_idField for parentID

parent_lagField for parentLag

parent_lag_typeField for parentLagType

pending_calculationField for pendingCalculation

pending_predecessorsField for pendingPredecessors

pending_update_methodsField for pendingUpdateMethods

percent_completeField for percentComplete

personalField for personal

planned_completion_dateField for plannedCompletionDate

planned_costField for plannedCost

planned_date_alignmentField for plannedDateAlignment

planned_durationField for plannedDuration

planned_duration_minutesField for plannedDurationMinutes

planned_expense_costField for plannedExpenseCost

planned_hours_alignmentField for plannedHoursAlignment

424 Chapter 2. Detailed Documentation

Page 429: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

planned_labor_costField for plannedLaborCost

planned_revenueField for plannedRevenue

planned_start_dateField for plannedStartDate

predecessor_expressionField for predecessorExpression

predecessorsCollection for predecessors

previous_statusField for previousStatus

primary_assignmentReference for primaryAssignment

priorityField for priority

progress_statusField for progressStatus

projectReference for project

project_idField for projectID

projected_completion_dateField for projectedCompletionDate

projected_duration_minutesField for projectedDurationMinutes

projected_start_dateField for projectedStartDate

queue_topicReference for queueTopic

queue_topic_breadcrumbField for queueTopicBreadcrumb

queue_topic_idField for queueTopicID

recurrence_numberField for recurrenceNumber

recurrence_ruleReference for recurrenceRule

recurrence_rule_idField for recurrenceRuleID

reference_numberField for referenceNumber

2.2. API Reference 425

Page 430: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

reference_obj_codeField for referenceObjCode

reference_obj_idField for referenceObjID

rejection_issueReference for rejectionIssue

rejection_issue_idField for rejectionIssueID

remaining_duration_minutesField for remainingDurationMinutes

reserved_timeReference for reservedTime

reserved_time_idField for reservedTimeID

resolution_timeField for resolutionTime

resolvablesCollection for resolvables

resolve_op_taskReference for resolveOpTask

resolve_op_task_idField for resolveOpTaskID

resolve_projectReference for resolveProject

resolve_project_idField for resolveProjectID

resolve_taskReference for resolveTask

resolve_task_idField for resolveTaskID

resolving_obj_codeField for resolvingObjCode

resolving_obj_idField for resolvingObjID

resource_scopeField for resourceScope

revenue_typeField for revenueType

roleReference for role

role_idField for roleID

426 Chapter 2. Detailed Documentation

Page 431: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

security_ancestorsCollection for securityAncestors

security_ancestors_disabledField for securityAncestorsDisabled

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

severityField for severity

show_commit_dateField for showCommitDate

show_conditionField for showCondition

show_statusField for showStatus

slack_dateField for slackDate

source_obj_codeField for sourceObjCode

source_obj_idField for sourceObjID

source_taskReference for sourceTask

source_task_idField for sourceTaskID

spiField for spi

statusField for status

status_equates_withField for statusEquatesWith

status_updateField for statusUpdate

submitted_byReference for submittedBy

submitted_by_idField for submittedByID

successorsCollection for successors

task_constraintField for taskConstraint

2.2. API Reference 427

Page 432: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

task_numberField for taskNumber

task_number_predecessor_stringField for taskNumberPredecessorString

teamReference for team

team_assignmentReference for teamAssignment

team_idField for teamID

team_request_count(filters=None)The teamRequestCount action.

Parameters filters – filters (type: map)

Returns java.lang.Integer

team_requests_count()The teamRequestsCount action.

Returns map

template_taskReference for templateTask

template_task_idField for templateTaskID

tracking_modeField for trackingMode

updatesCollection for updates

urlField for URL

url_Field for url

versionField for version

wbsField for wbs

workField for work

work_itemReference for workItem

work_requiredField for workRequired

work_required_expressionField for workRequiredExpression

work_unitField for workUnit

428 Chapter 2. Detailed Documentation

Page 433: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

class workfront.versions.unsupported.WorkItem(session=None, **fields)Object for WRKITM

accessor_idsField for accessorIDs

assignmentReference for assignment

assignment_idField for assignmentID

customerReference for customer

customer_idField for customerID

done_dateField for doneDate

ext_ref_idField for extRefID

is_deadField for isDead

is_doneField for isDone

last_viewed_dateField for lastViewedDate

make_top_priority(obj_code=None, assignable_id=None, user_id=None)The makeTopPriority action.

Parameters obj_code – objCode (type: string)

:param assignable_id : assignableID (type: string) :param user_id: userID (type: string)

mark_viewed()The markViewed action.

obj_idField for objID

obj_obj_codeField for objObjCode

op_taskReference for opTask

op_task_idField for opTaskID

priorityField for priority

projectReference for project

project_idField for projectID

2.2. API Reference 429

Page 434: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

reference_object_commit_dateField for referenceObjectCommitDate

reference_object_nameField for referenceObjectName

security_root_idField for securityRootID

security_root_obj_codeField for securityRootObjCode

snooze_dateField for snoozeDate

taskReference for task

task_idField for taskID

userReference for user

user_idField for userID

2.3 Development

This package is developed using continuous integration which can be found here:

https://travis-ci.org/cjw296/python-workfront

The latest development version of the documentation can be found here:

http://python-workfront.readthedocs.org/en/latest/

If you wish to contribute to this project, then you should fork the repository found here:

https://github.com/cjw296/python-workfront/

Once that has been done and you have a checkout, you can follow these instructions to perform various developmenttasks:

2.3.1 Setting up a virtualenv

The recommended way to set up a development environment is to turn your checkout into a virtualenv and then installthe package in editable form as follows:

$ virtualenv .$ bin/pip install -U -e .[test,build]

2.3.2 Running the tests

Once you’ve set up a virtualenv, the tests can be run as follows:

$ bin/nosetests

430 Chapter 2. Detailed Documentation

Page 435: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

2.3.3 Building the documentation

The Sphinx documentation is built by doing the following from the directory containing setup.py:

$ source bin/activate$ cd docs$ make html

To check that the description that will be used on PyPI renders properly, do the following:

$ python setup.py --long-description | rst2html.py > desc.html

The resulting desc.html should be checked by opening in a browser.

To check that the README that will be used on GitHub renders properly, do the following:

$ cat README.rst | rst2html.py > readme.html

The resulting readme.html should be checked by opening in a browser.

2.3.4 Making a release

To make a release, just update the version in setup.py, update the change log, tag it and push tohttps://github.com/cjw296/python-workfront and Travis CI should take care of the rest.

Once Travis CI is done, make sure to go to https://readthedocs.org/projects/python-workfront/versions/ and make surethe new release is marked as an Active Version.

2.3.5 Adding a new version of the Workfront API

1. Build the generated module:

$ python -u -m workfront.generate --log-level 0 --version v5.0

2. Wire in any mixins in the __init__.py of the generated package.

3. Wire the new version into api.rst.

2.4 Changes

2.4.1 0.8.0 (xx February 2016)

• Documentation added.

2.4.2 0.7.0 (17 February 2016)

• Add Quickstart and API documentation.

• Add actions to the reflected object model.

• Add a caching later to workfront.generate for faster repeated generation of the reflected object model.

• Simplify the package and module structure of the reflected object model.

2.4. Changes 431

Page 436: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

2.4.3 0.6.1 (12 February 2016)

• Fix brown bag release that had import errors and didn’t work under Python 3 at all!

2.4.4 0.6.0 (11 February 2016)

• Python 3 support added.

2.4.5 0.3.2 (10 February 2016)

• Python 2 only release to PyPI.

2.4.6 0.3.0 (10 February 2016)

• Re-work of object model to support multiple API versions

• Full test coverage.

2.4.7 0.0dev0 (21 August 2015)

• Initial prototype made available on GitHub

2.5 License

Copyright (c) 2015-2016 Jump Systems LLC

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documen-tation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use,copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whomthe Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of theSoftware.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PAR-TICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHTHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTIONOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFT-WARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

432 Chapter 2. Detailed Documentation

Page 437: python-workfront Documentation

CHAPTER 3

Indices and tables

• genindex

• modindex

• search

433

Page 438: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

434 Chapter 3. Indices and tables

Page 439: python-workfront Documentation

Python Module Index

wworkfront.meta, 8workfront.session, 8workfront.versions.unsupported, 154workfront.versions.v40, 9

435

Page 440: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

436 Python Module Index

Page 441: python-workfront Documentation

Index

Aaccept_license_agreement() (work-

front.versions.unsupported.Customer method),219

accept_work() (workfront.versions.unsupported.Issuemethod), 271

accept_work() (workfront.versions.unsupported.Taskmethod), 359

accept_work() (workfront.versions.v40.Issue method), 58accept_work() (workfront.versions.v40.Task method),

106access_count (workfront.versions.unsupported.BackgroundJob

attribute), 198access_count (workfront.versions.v40.BackgroundJob at-

tribute), 30access_level (workfront.versions.unsupported.AccessLevelPermissions

attribute), 157access_level (workfront.versions.unsupported.AccessRulePreference

attribute), 160access_level (workfront.versions.unsupported.AccessScopeAction

attribute), 161access_level (workfront.versions.unsupported.User at-

tribute), 399access_level_id (workfront.versions.unsupported.AccessLevelPermissions

attribute), 157access_level_id (workfront.versions.unsupported.AccessRulePreference

attribute), 160access_level_id (workfront.versions.unsupported.AccessScopeAction

attribute), 162access_level_id (workfront.versions.unsupported.User at-

tribute), 399access_level_id (workfront.versions.v40.User attribute),

135access_level_permissions (work-

front.versions.unsupported.AccessLevelattribute), 154

access_levels (workfront.versions.unsupported.AppGlobalattribute), 169

access_levels (workfront.versions.unsupported.Customerattribute), 219

access_request (workfront.versions.unsupported.AwaitingApprovalattribute), 197

access_request_id (work-front.versions.unsupported.AwaitingApprovalattribute), 197

access_restrictions (work-front.versions.unsupported.AccessLevelattribute), 154

access_rule_preferences (work-front.versions.unsupported.AccessLevelattribute), 154

access_rule_preferences (work-front.versions.unsupported.Template attribute),373

access_rule_preferences (work-front.versions.unsupported.User attribute),399

access_rules (workfront.versions.unsupported.Approvalattribute), 170

access_rules (workfront.versions.unsupported.CalendarInfoattribute), 206

access_rules (workfront.versions.unsupported.Categoryattribute), 209

access_rules (workfront.versions.unsupported.Documentattribute), 230

access_rules (workfront.versions.unsupported.Issue at-tribute), 271

access_rules (workfront.versions.unsupported.PortalSectionattribute), 308

access_rules (workfront.versions.unsupported.PortalTabattribute), 312

access_rules (workfront.versions.unsupported.Portfolioattribute), 315

access_rules (workfront.versions.unsupported.Programattribute), 317

access_rules (workfront.versions.unsupported.Project at-tribute), 319

access_rules (workfront.versions.unsupported.Task at-tribute), 359

access_rules (workfront.versions.unsupported.Templateattribute), 373

437

Page 442: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

access_rules (workfront.versions.unsupported.UIFilterattribute), 391

access_rules (workfront.versions.unsupported.UIGroupByattribute), 393

access_rules (workfront.versions.unsupported.UIView at-tribute), 394

access_rules (workfront.versions.unsupported.Work at-tribute), 417

access_rules (workfront.versions.v40.Approval attribute),10

access_rules (workfront.versions.v40.Document at-tribute), 43

access_rules (workfront.versions.v40.Issue attribute), 58access_rules (workfront.versions.v40.Portfolio attribute),

78access_rules (workfront.versions.v40.Program attribute),

80access_rules (workfront.versions.v40.Project attribute),

82access_rules (workfront.versions.v40.Task attribute), 106access_rules (workfront.versions.v40.Template attribute),

118access_rules (workfront.versions.v40.UIFilter attribute),

129access_rules (workfront.versions.v40.UIGroupBy at-

tribute), 130access_rules (workfront.versions.v40.UIView attribute),

132access_rules (workfront.versions.v40.Work attribute),

142access_rules_per_object_limit (work-

front.versions.unsupported.Customer attribute),219

access_scope (workfront.versions.unsupported.AccessScopeActionattribute), 162

access_scope_actions (work-front.versions.unsupported.AccessLevelattribute), 154

access_scope_id (work-front.versions.unsupported.AccessScopeActionattribute), 162

access_scopes (workfront.versions.unsupported.AppGlobalattribute), 169

access_scopes (workfront.versions.unsupported.Customerattribute), 219

AccessLevel (class in workfront.versions.unsupported),154

AccessLevelPermissions (class in work-front.versions.unsupported), 157

accessor_id (workfront.versions.unsupported.AccessRuleattribute), 159

accessor_id (workfront.versions.unsupported.AccessRulePreferenceattribute), 160

accessor_id (workfront.versions.unsupported.CategoryAccessRule

attribute), 212accessor_id (workfront.versions.v40.AccessRule at-

tribute), 9accessor_ids (workfront.versions.unsupported.Approval

attribute), 170accessor_ids (workfront.versions.unsupported.ApprovalProcess

attribute), 187accessor_ids (workfront.versions.unsupported.Assignment

attribute), 191accessor_ids (workfront.versions.unsupported.BillingRecord

attribute), 203accessor_ids (workfront.versions.unsupported.CalendarInfo

attribute), 206accessor_ids (workfront.versions.unsupported.Category

attribute), 209accessor_ids (workfront.versions.unsupported.Document

attribute), 230accessor_ids (workfront.versions.unsupported.DocumentFolder

attribute), 239accessor_ids (workfront.versions.unsupported.DocumentRequest

attribute), 244accessor_ids (workfront.versions.unsupported.DocumentShare

attribute), 246accessor_ids (workfront.versions.unsupported.DocumentVersion

attribute), 247accessor_ids (workfront.versions.unsupported.ExchangeRate

attribute), 255accessor_ids (workfront.versions.unsupported.Expense

attribute), 256accessor_ids (workfront.versions.unsupported.Hour at-

tribute), 266accessor_ids (workfront.versions.unsupported.Issue at-

tribute), 271accessor_ids (workfront.versions.unsupported.JournalEntry

attribute), 281accessor_ids (workfront.versions.unsupported.Note at-

tribute), 297accessor_ids (workfront.versions.unsupported.PortalSection

attribute), 308accessor_ids (workfront.versions.unsupported.PortalTab

attribute), 312accessor_ids (workfront.versions.unsupported.Portfolio

attribute), 315accessor_ids (workfront.versions.unsupported.Program

attribute), 317accessor_ids (workfront.versions.unsupported.Project at-

tribute), 319accessor_ids (workfront.versions.unsupported.QueueDef

attribute), 333accessor_ids (workfront.versions.unsupported.QueueTopic

attribute), 335accessor_ids (workfront.versions.unsupported.QueueTopicGroup

attribute), 336accessor_ids (workfront.versions.unsupported.Rate at-

438 Index

Page 443: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

tribute), 337accessor_ids (workfront.versions.unsupported.ResourceAllocation

attribute), 342accessor_ids (workfront.versions.unsupported.Risk at-

tribute), 343accessor_ids (workfront.versions.unsupported.RoutingRule

attribute), 346accessor_ids (workfront.versions.unsupported.ScoreCard

attribute), 354accessor_ids (workfront.versions.unsupported.SharingSettings

attribute), 357accessor_ids (workfront.versions.unsupported.Task at-

tribute), 359accessor_ids (workfront.versions.unsupported.Template

attribute), 373accessor_ids (workfront.versions.unsupported.TemplateAssignment

attribute), 379accessor_ids (workfront.versions.unsupported.TemplateTask

attribute), 380accessor_ids (workfront.versions.unsupported.UIFilter

attribute), 391accessor_ids (workfront.versions.unsupported.UIGroupBy

attribute), 393accessor_ids (workfront.versions.unsupported.UIView at-

tribute), 394accessor_ids (workfront.versions.unsupported.Work at-

tribute), 417accessor_ids (workfront.versions.unsupported.WorkItem

attribute), 429accessor_obj_code (work-

front.versions.unsupported.AccessRule at-tribute), 159

accessor_obj_code (work-front.versions.unsupported.AccessRulePreferenceattribute), 160

accessor_obj_code (work-front.versions.unsupported.CategoryAccessRuleattribute), 212

accessor_obj_code (work-front.versions.unsupported.DocumentShareattribute), 246

accessor_obj_code (work-front.versions.unsupported.EndorsementShareattribute), 253

accessor_obj_code (workfront.versions.v40.AccessRuleattribute), 9

accessor_obj_id (work-front.versions.unsupported.DocumentShareattribute), 246

accessor_obj_id (work-front.versions.unsupported.EndorsementShareattribute), 253

AccessRequest (class in work-front.versions.unsupported), 157

AccessRule (class in workfront.versions.unsupported),159

AccessRule (class in workfront.versions.v40), 9AccessRulePreference (class in work-

front.versions.unsupported), 160AccessScope (class in workfront.versions.unsupported),

161AccessScopeAction (class in work-

front.versions.unsupported), 161AccessToken (class in workfront.versions.unsupported),

162account_rep (workfront.versions.unsupported.Customer

attribute), 219account_rep_id (workfront.versions.unsupported.Customer

attribute), 219account_rep_id (workfront.versions.v40.Customer

attribute), 38account_representative (work-

front.versions.unsupported.Customer attribute),219

account_reps (workfront.versions.unsupported.Resellerattribute), 341

AccountRep (class in workfront.versions.unsupported),163

acknowledge() (workfront.versions.unsupported.Acknowledgementmethod), 164

acknowledge() (workfront.versions.unsupported.UserNotemethod), 410

acknowledge_all() (work-front.versions.unsupported.UserNote method),410

acknowledge_many() (work-front.versions.unsupported.Acknowledgementmethod), 164

acknowledge_many() (work-front.versions.unsupported.UserNote method),410

Acknowledgement (class in work-front.versions.unsupported), 163

acknowledgement (work-front.versions.unsupported.UserNote attribute),410

acknowledgement_id (work-front.versions.unsupported.UserNote attribute),410

acknowledgement_type (work-front.versions.unsupported.Acknowledgementattribute), 164

action (workfront.versions.unsupported.AccessRequestattribute), 158

action (workfront.versions.unsupported.AccessToken at-tribute), 162

action (workfront.versions.unsupported.JournalField at-tribute), 285

Index 439

Page 444: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

action_count (workfront.versions.unsupported.AuditLoginAsSessionattribute), 192

actions (workfront.versions.unsupported.AccessScopeActionattribute), 162

actions (workfront.versions.unsupported.MetaRecord at-tribute), 294

active_directory_domain (work-front.versions.unsupported.SSOOption at-tribute), 348

actual_allocation_percentage (work-front.versions.unsupported.UserResourceattribute), 414

actual_amount (workfront.versions.unsupported.Expenseattribute), 256

actual_amount (workfront.versions.v40.Expense at-tribute), 50

actual_benefit (workfront.versions.unsupported.Approvalattribute), 170

actual_benefit (workfront.versions.unsupported.Projectattribute), 319

actual_benefit (workfront.versions.v40.Approval at-tribute), 10

actual_benefit (workfront.versions.v40.Project attribute),82

actual_completion_date (work-front.versions.unsupported.Approval attribute),170

actual_completion_date (work-front.versions.unsupported.Baseline attribute),200

actual_completion_date (work-front.versions.unsupported.BaselineTaskattribute), 201

actual_completion_date (work-front.versions.unsupported.Issue attribute),271

actual_completion_date (work-front.versions.unsupported.Project attribute),319

actual_completion_date (work-front.versions.unsupported.Task attribute),359

actual_completion_date (work-front.versions.unsupported.Work attribute),417

actual_completion_date (work-front.versions.v40.Approval attribute), 10

actual_completion_date (work-front.versions.v40.Baseline attribute), 30

actual_completion_date (work-front.versions.v40.BaselineTask attribute),32

actual_completion_date (workfront.versions.v40.Issue at-tribute), 58

actual_completion_date (workfront.versions.v40.Projectattribute), 82

actual_completion_date (workfront.versions.v40.Task at-tribute), 106

actual_completion_date (workfront.versions.v40.Workattribute), 142

actual_cost (workfront.versions.unsupported.Approvalattribute), 170

actual_cost (workfront.versions.unsupported.Baseline at-tribute), 200

actual_cost (workfront.versions.unsupported.BaselineTaskattribute), 201

actual_cost (workfront.versions.unsupported.Hourattribute), 266

actual_cost (workfront.versions.unsupported.Issueattribute), 271

actual_cost (workfront.versions.unsupported.Project at-tribute), 319

actual_cost (workfront.versions.unsupported.Risk at-tribute), 343

actual_cost (workfront.versions.unsupported.Task at-tribute), 359

actual_cost (workfront.versions.unsupported.Workattribute), 417

actual_cost (workfront.versions.v40.Approval attribute),10

actual_cost (workfront.versions.v40.Baseline attribute),31

actual_cost (workfront.versions.v40.BaselineTask at-tribute), 32

actual_cost (workfront.versions.v40.Hour attribute), 55actual_cost (workfront.versions.v40.Issue attribute), 58actual_cost (workfront.versions.v40.Project attribute), 82actual_cost (workfront.versions.v40.Risk attribute), 98actual_cost (workfront.versions.v40.Task attribute), 106actual_cost (workfront.versions.v40.Work attribute), 142actual_day_summaries (work-

front.versions.unsupported.UserResourceattribute), 414

actual_duration (workfront.versions.unsupported.Approvalattribute), 170

actual_duration (workfront.versions.unsupported.Task at-tribute), 359

actual_duration (workfront.versions.unsupported.Workattribute), 417

actual_duration (workfront.versions.v40.Approvalattribute), 10

actual_duration (workfront.versions.v40.Task attribute),106

actual_duration (workfront.versions.v40.Work attribute),142

actual_duration_expression (work-front.versions.unsupported.Approval attribute),170

440 Index

Page 445: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

actual_duration_expression (work-front.versions.unsupported.Project attribute),319

actual_duration_expression (work-front.versions.v40.Approval attribute), 10

actual_duration_expression (work-front.versions.v40.Project attribute), 82

actual_duration_minutes (work-front.versions.unsupported.Approval attribute),170

actual_duration_minutes (work-front.versions.unsupported.Baseline attribute),200

actual_duration_minutes (work-front.versions.unsupported.BaselineTaskattribute), 201

actual_duration_minutes (work-front.versions.unsupported.Project attribute),319

actual_duration_minutes (work-front.versions.unsupported.Task attribute),359

actual_duration_minutes (work-front.versions.unsupported.Work attribute),417

actual_duration_minutes (work-front.versions.v40.Approval attribute), 10

actual_duration_minutes (work-front.versions.v40.Baseline attribute), 31

actual_duration_minutes (work-front.versions.v40.BaselineTask attribute),32

actual_duration_minutes (workfront.versions.v40.Projectattribute), 82

actual_duration_minutes (workfront.versions.v40.Taskattribute), 106

actual_duration_minutes (workfront.versions.v40.Workattribute), 142

actual_expense_cost (work-front.versions.unsupported.Approval attribute),170

actual_expense_cost (work-front.versions.unsupported.FinancialDataattribute), 264

actual_expense_cost (work-front.versions.unsupported.Project attribute),319

actual_expense_cost (work-front.versions.unsupported.Task attribute),359

actual_expense_cost (work-front.versions.unsupported.Work attribute),417

actual_expense_cost (workfront.versions.v40.Approval

attribute), 10actual_expense_cost (work-

front.versions.v40.FinancialData attribute),53

actual_expense_cost (workfront.versions.v40.Project at-tribute), 82

actual_expense_cost (workfront.versions.v40.Taskattribute), 106

actual_expense_cost (workfront.versions.v40.Work at-tribute), 142

actual_fixed_revenue (work-front.versions.unsupported.FinancialDataattribute), 264

actual_fixed_revenue (work-front.versions.v40.FinancialData attribute),54

actual_hours_last_month (work-front.versions.unsupported.Approval attribute),170

actual_hours_last_month (work-front.versions.unsupported.Project attribute),319

actual_hours_last_month (work-front.versions.v40.Approval attribute), 10

actual_hours_last_month (workfront.versions.v40.Projectattribute), 82

actual_hours_last_three_months (work-front.versions.unsupported.Approval attribute),170

actual_hours_last_three_months (work-front.versions.unsupported.Project attribute),320

actual_hours_last_three_months (work-front.versions.v40.Approval attribute), 10

actual_hours_last_three_months (work-front.versions.v40.Project attribute), 82

actual_hours_this_month (work-front.versions.unsupported.Approval attribute),170

actual_hours_this_month (work-front.versions.unsupported.Project attribute),320

actual_hours_this_month (work-front.versions.v40.Approval attribute), 10

actual_hours_this_month (work-front.versions.v40.Project attribute), 82

actual_hours_two_months_ago (work-front.versions.unsupported.Approval attribute),170

actual_hours_two_months_ago (work-front.versions.unsupported.Project attribute),320

actual_hours_two_months_ago (work-front.versions.v40.Approval attribute), 10

Index 441

Page 446: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

actual_hours_two_months_ago (work-front.versions.v40.Project attribute), 82

actual_labor_cost (work-front.versions.unsupported.Approval attribute),170

actual_labor_cost (work-front.versions.unsupported.FinancialDataattribute), 264

actual_labor_cost (work-front.versions.unsupported.Project attribute),320

actual_labor_cost (workfront.versions.unsupported.Taskattribute), 359

actual_labor_cost (workfront.versions.unsupported.Workattribute), 417

actual_labor_cost (workfront.versions.v40.Approval at-tribute), 10

actual_labor_cost (workfront.versions.v40.FinancialDataattribute), 54

actual_labor_cost (workfront.versions.v40.Project at-tribute), 82

actual_labor_cost (workfront.versions.v40.Task at-tribute), 106

actual_labor_cost (workfront.versions.v40.Work at-tribute), 142

actual_labor_cost_hours (work-front.versions.unsupported.FinancialDataattribute), 264

actual_labor_cost_hours (work-front.versions.v40.FinancialData attribute),54

actual_labor_revenue (work-front.versions.unsupported.FinancialDataattribute), 264

actual_labor_revenue (work-front.versions.v40.FinancialData attribute),54

actual_revenue (workfront.versions.unsupported.Approvalattribute), 170

actual_revenue (workfront.versions.unsupported.Projectattribute), 320

actual_revenue (workfront.versions.unsupported.Task at-tribute), 359

actual_revenue (workfront.versions.unsupported.Work at-tribute), 417

actual_revenue (workfront.versions.v40.Approval at-tribute), 10

actual_revenue (workfront.versions.v40.Project at-tribute), 82

actual_revenue (workfront.versions.v40.Task attribute),106

actual_revenue (workfront.versions.v40.Work attribute),142

actual_risk_cost (work-

front.versions.unsupported.Approval attribute),170

actual_risk_cost (workfront.versions.unsupported.Projectattribute), 320

actual_risk_cost (workfront.versions.v40.Approvalattribute), 10

actual_risk_cost (workfront.versions.v40.Project at-tribute), 82

actual_start_date (work-front.versions.unsupported.Approval attribute),170

actual_start_date (work-front.versions.unsupported.Baseline attribute),200

actual_start_date (work-front.versions.unsupported.BaselineTaskattribute), 201

actual_start_date (workfront.versions.unsupported.Issueattribute), 271

actual_start_date (work-front.versions.unsupported.Project attribute),320

actual_start_date (workfront.versions.unsupported.Taskattribute), 359

actual_start_date (workfront.versions.unsupported.Workattribute), 417

actual_start_date (workfront.versions.v40.Approval at-tribute), 10

actual_start_date (workfront.versions.v40.Baselineattribute), 31

actual_start_date (workfront.versions.v40.BaselineTaskattribute), 32

actual_start_date (workfront.versions.v40.Issue at-tribute), 58

actual_start_date (workfront.versions.v40.Project at-tribute), 83

actual_start_date (workfront.versions.v40.Task attribute),106

actual_start_date (workfront.versions.v40.Work at-tribute), 142

actual_subject (workfront.versions.unsupported.Announcementattribute), 164

actual_unit_amount (work-front.versions.unsupported.Expense attribute),256

actual_unit_amount (workfront.versions.v40.Expense at-tribute), 50

actual_value (workfront.versions.unsupported.Approvalattribute), 170

actual_value (workfront.versions.unsupported.Project at-tribute), 320

actual_value (workfront.versions.v40.Approval attribute),11

actual_value (workfront.versions.v40.Project attribute),

442 Index

Page 447: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

83actual_work (workfront.versions.unsupported.Approval

attribute), 170actual_work (workfront.versions.unsupported.Task at-

tribute), 359actual_work (workfront.versions.unsupported.Work at-

tribute), 417actual_work (workfront.versions.v40.Approval attribute),

11actual_work (workfront.versions.v40.Task attribute), 106actual_work (workfront.versions.v40.Work attribute),

142actual_work_completed (work-

front.versions.unsupported.Assignment at-tribute), 191

actual_work_per_day_start_date (work-front.versions.unsupported.Assignment at-tribute), 191

actual_work_required (work-front.versions.unsupported.Approval attribute),170

actual_work_required (work-front.versions.unsupported.Baseline attribute),200

actual_work_required (work-front.versions.unsupported.BaselineTaskattribute), 201

actual_work_required (work-front.versions.unsupported.Issue attribute),271

actual_work_required (work-front.versions.unsupported.Project attribute),320

actual_work_required (work-front.versions.unsupported.Task attribute),359

actual_work_required (work-front.versions.unsupported.Work attribute),417

actual_work_required (workfront.versions.v40.Approvalattribute), 11

actual_work_required (workfront.versions.v40.Baselineattribute), 31

actual_work_required (work-front.versions.v40.BaselineTask attribute),32

actual_work_required (workfront.versions.v40.Issue at-tribute), 58

actual_work_required (workfront.versions.v40.Project at-tribute), 83

actual_work_required (workfront.versions.v40.Task at-tribute), 106

actual_work_required (workfront.versions.v40.Work at-tribute), 143

actual_work_required_expression (work-front.versions.unsupported.Approval attribute),171

actual_work_required_expression (work-front.versions.unsupported.Issue attribute),271

actual_work_required_expression (work-front.versions.unsupported.Project attribute),320

actual_work_required_expression (work-front.versions.unsupported.Work attribute),417

actual_work_required_expression (work-front.versions.v40.Approval attribute), 11

actual_work_required_expression (work-front.versions.v40.Issue attribute), 58

actual_work_required_expression (work-front.versions.v40.Project attribute), 83

actual_work_required_expression (work-front.versions.v40.Work attribute), 143

add_comment() (workfront.versions.unsupported.Issuemethod), 271

add_comment() (workfront.versions.unsupported.Notemethod), 297

add_comment() (workfront.versions.unsupported.Taskmethod), 359

add_comment() (workfront.versions.v40.Issue method),58

add_comment() (workfront.versions.v40.Note method),72

add_comment() (workfront.versions.v40.Task method),106

add_customer_feedback_improvement() (work-front.versions.unsupported.User method),399

add_customer_feedback_score_rating() (work-front.versions.unsupported.User method),399

add_document_version() (work-front.versions.unsupported.DocumentVersionmethod), 247

add_early_access() (work-front.versions.unsupported.Company method),214

add_early_access() (work-front.versions.unsupported.Group method),265

add_early_access() (work-front.versions.unsupported.Role method),345

add_early_access() (work-front.versions.unsupported.Team method),371

add_early_access() (work-

Index 443

Page 448: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

front.versions.unsupported.User method),399

add_external_user() (work-front.versions.unsupported.User method),399

add_mobile_device() (work-front.versions.unsupported.User method),399

add_note_to_objects() (work-front.versions.unsupported.Note method),297

add_op_task_style (work-front.versions.unsupported.QueueDef at-tribute), 333

add_op_task_style (workfront.versions.v40.QueueDef at-tribute), 93

add_team_note() (work-front.versions.unsupported.UserNote method),410

add_teams_notes() (work-front.versions.unsupported.UserNote method),410

add_user_note() (work-front.versions.unsupported.UserNote method),411

add_users_notes() (work-front.versions.unsupported.UserNote method),411

address (workfront.versions.unsupported.Customer at-tribute), 219

address (workfront.versions.unsupported.Reseller at-tribute), 341

address (workfront.versions.unsupported.User attribute),399

address (workfront.versions.v40.Customer attribute), 38address (workfront.versions.v40.User attribute), 135address2 (workfront.versions.unsupported.Customer at-

tribute), 219address2 (workfront.versions.unsupported.Reseller

attribute), 341address2 (workfront.versions.unsupported.User at-

tribute), 399address2 (workfront.versions.v40.Customer attribute), 38address2 (workfront.versions.v40.User attribute), 135adhoc_team (workfront.versions.unsupported.TeamMember

attribute), 373admin_acct_name (work-

front.versions.unsupported.Customer attribute),219

admin_acct_name (workfront.versions.v40.Customer at-tribute), 38

admin_acct_password (work-front.versions.unsupported.Customer attribute),219

admin_acct_password (workfront.versions.v40.Customerattribute), 38

admin_level (workfront.versions.unsupported.AccountRepattribute), 163

admin_user (workfront.versions.unsupported.Customerattribute), 219

admin_user_id (workfront.versions.unsupported.Customerattribute), 219

advanced_copy() (work-front.versions.unsupported.PortalTab method),313

advanced_proofing_options (work-front.versions.unsupported.Document at-tribute), 230

advanced_proofing_options (work-front.versions.unsupported.DocumentVersionattribute), 247

age_range_as_string (work-front.versions.unsupported.Approval attribute),171

age_range_as_string (work-front.versions.unsupported.Issue attribute),271

age_range_as_string (work-front.versions.unsupported.Work attribute),417

age_range_as_string (workfront.versions.v40.Approvalattribute), 11

age_range_as_string (workfront.versions.v40.Issue at-tribute), 58

age_range_as_string (workfront.versions.v40.Work at-tribute), 143

aligned (workfront.versions.unsupported.Portfolioattribute), 315

aligned (workfront.versions.v40.Portfolio attribute), 78alignment (workfront.versions.unsupported.Approval at-

tribute), 171alignment (workfront.versions.unsupported.Project at-

tribute), 320alignment (workfront.versions.v40.Approval attribute),

11alignment (workfront.versions.v40.Project attribute), 83alignment_score_card (work-

front.versions.unsupported.Approval attribute),171

alignment_score_card (work-front.versions.unsupported.Portfolio attribute),315

alignment_score_card (work-front.versions.unsupported.Project attribute),320

alignment_score_card (workfront.versions.v40.Approvalattribute), 11

alignment_score_card (workfront.versions.v40.Portfolio

444 Index

Page 449: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

attribute), 78alignment_score_card (workfront.versions.v40.Project

attribute), 83alignment_score_card_id (work-

front.versions.unsupported.Approval attribute),171

alignment_score_card_id (work-front.versions.unsupported.Portfolio attribute),315

alignment_score_card_id (work-front.versions.unsupported.Project attribute),320

alignment_score_card_id (work-front.versions.v40.Approval attribute), 11

alignment_score_card_id (work-front.versions.v40.Portfolio attribute), 78

alignment_score_card_id (work-front.versions.v40.Project attribute), 83

alignment_values (work-front.versions.unsupported.Approval attribute),171

alignment_values (work-front.versions.unsupported.Project attribute),320

alignment_values (workfront.versions.v40.Approval at-tribute), 11

alignment_values (workfront.versions.v40.Project at-tribute), 83

all_accessed_users() (work-front.versions.unsupported.AuditLoginAsSessionmethod), 192

all_admins() (workfront.versions.unsupported.AuditLoginAsSessionmethod), 192

all_approved_hours (work-front.versions.unsupported.Approval attribute),171

all_approved_hours (work-front.versions.unsupported.Project attribute),320

all_approved_hours (workfront.versions.v40.Approval at-tribute), 11

all_approved_hours (workfront.versions.v40.Project at-tribute), 83

all_hours (workfront.versions.unsupported.Approval at-tribute), 171

all_hours (workfront.versions.unsupported.Projectattribute), 320

all_hours (workfront.versions.v40.Approval attribute), 11all_hours (workfront.versions.v40.Project attribute), 83all_priorities (workfront.versions.unsupported.Approval

attribute), 171all_priorities (workfront.versions.unsupported.Issue at-

tribute), 271all_priorities (workfront.versions.unsupported.Project at-

tribute), 320all_priorities (workfront.versions.unsupported.Task at-

tribute), 359all_priorities (workfront.versions.unsupported.Work at-

tribute), 418all_priorities (workfront.versions.v40.Approval at-

tribute), 11all_priorities (workfront.versions.v40.Issue attribute), 58all_priorities (workfront.versions.v40.Project attribute),

83all_priorities (workfront.versions.v40.Task attribute), 106all_priorities (workfront.versions.v40.Work attribute),

143all_severities (workfront.versions.unsupported.Approval

attribute), 171all_severities (workfront.versions.unsupported.Issue at-

tribute), 271all_severities (workfront.versions.unsupported.Work at-

tribute), 418all_severities (workfront.versions.v40.Approval at-

tribute), 11all_severities (workfront.versions.v40.Issue attribute), 58all_severities (workfront.versions.v40.Work attribute),

143all_statuses (workfront.versions.unsupported.Approval

attribute), 171all_statuses (workfront.versions.unsupported.Issue

attribute), 271all_statuses (workfront.versions.unsupported.Project at-

tribute), 320all_statuses (workfront.versions.unsupported.Task at-

tribute), 359all_statuses (workfront.versions.unsupported.Work at-

tribute), 418all_statuses (workfront.versions.v40.Approval attribute),

11all_statuses (workfront.versions.v40.Issue attribute), 58all_statuses (workfront.versions.v40.Project attribute), 83all_statuses (workfront.versions.v40.Task attribute), 106all_statuses (workfront.versions.v40.Work attribute), 143all_unapproved_hours (work-

front.versions.unsupported.Approval attribute),171

all_unapproved_hours (work-front.versions.unsupported.Project attribute),320

all_unapproved_hours (workfront.versions.v40.Approvalattribute), 11

all_unapproved_hours (workfront.versions.v40.Projectattribute), 83

allocation_date (workfront.versions.unsupported.ResourceAllocationattribute), 342

allocation_date (workfront.versions.v40.ResourceAllocationattribute), 97

Index 445

Page 450: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

allocation_percentage (work-front.versions.unsupported.UserResourceattribute), 414

allocationdate (workfront.versions.unsupported.FinancialDataattribute), 264

allocationdate (workfront.versions.v40.FinancialData at-tribute), 54

allow_non_view_external (work-front.versions.unsupported.AccessScopeattribute), 161

allow_non_view_hd (work-front.versions.unsupported.AccessScopeattribute), 161

allow_non_view_review (work-front.versions.unsupported.AccessScopeattribute), 161

allow_non_view_team (work-front.versions.unsupported.AccessScopeattribute), 161

allow_non_view_ts (work-front.versions.unsupported.AccessScopeattribute), 161

allowed_actions (work-front.versions.unsupported.ApprovalProcessAttachableattribute), 188

allowed_actions (workfront.versions.unsupported.Avatarattribute), 195

allowed_actions (work-front.versions.unsupported.CalendarFeedEntryattribute), 205

allowed_actions (work-front.versions.unsupported.ExternalDocumentattribute), 259

allowed_actions (work-front.versions.unsupported.MessageArgattribute), 294

allowed_actions (work-front.versions.unsupported.RecentMenuItemattribute), 338

allowed_actions (workfront.versions.unsupported.Updateattribute), 396

allowed_actions (work-front.versions.unsupported.UserResourceattribute), 414

allowed_actions (workfront.versions.v40.Avatar at-tribute), 29

allowed_actions (workfront.versions.v40.MessageArg at-tribute), 71

allowed_actions (workfront.versions.v40.Update at-tribute), 133

allowed_legacy_queue_topic_ids (work-front.versions.unsupported.QueueDef at-tribute), 333

allowed_op_task_types (work-

front.versions.unsupported.QueueDef at-tribute), 333

allowed_op_task_types (work-front.versions.unsupported.QueueTopic at-tribute), 335

allowed_op_task_types (work-front.versions.v40.QueueDef attribute), 93

allowed_op_task_types (work-front.versions.v40.QueueTopic attribute),95

allowed_op_task_types_pretty_print (work-front.versions.unsupported.QueueTopic at-tribute), 335

allowed_queue_topic_ids (work-front.versions.unsupported.QueueDef at-tribute), 333

allowed_queue_topic_ids (work-front.versions.v40.QueueDef attribute), 93

always_active (workfront.versions.unsupported.EventHandlerattribute), 254

amount (workfront.versions.unsupported.BillingRecordattribute), 203

amount (workfront.versions.v40.BillingRecord attribute),33

ancestor_id (workfront.versions.unsupported.AccessRuleattribute), 159

ancestor_id (workfront.versions.unsupported.SecurityAncestorattribute), 357

ancestor_id (workfront.versions.v40.AccessRule at-tribute), 9

ancestor_obj_code (work-front.versions.unsupported.AccessRule at-tribute), 159

ancestor_obj_code (work-front.versions.unsupported.SecurityAncestorattribute), 357

ancestor_obj_code (workfront.versions.v40.AccessRuleattribute), 9

Announcement (class in work-front.versions.unsupported), 164

announcement (workfront.versions.unsupported.AnnouncementAttachmentattribute), 166

announcement (workfront.versions.unsupported.AnnouncementRecipientattribute), 167

announcement (workfront.versions.unsupported.UserNoteattribute), 411

announcement_favorite_id (work-front.versions.unsupported.UserNote attribute),411

announcement_id (work-front.versions.unsupported.AnnouncementAttachmentattribute), 166

announcement_id (work-front.versions.unsupported.AnnouncementRecipient

446 Index

Page 451: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

attribute), 167announcement_id (work-

front.versions.unsupported.UserNote attribute),411

announcement_opt_out() (work-front.versions.unsupported.AnnouncementOptOutmethod), 166

announcement_recipients (work-front.versions.unsupported.Announcementattribute), 164

announcement_type (work-front.versions.unsupported.Announcementattribute), 164

announcement_type (work-front.versions.unsupported.AnnouncementOptOutattribute), 166

AnnouncementAttachment (class in work-front.versions.unsupported), 166

AnnouncementOptOut (class in work-front.versions.unsupported), 166

AnnouncementRecipient (class in work-front.versions.unsupported), 167

api_concurrency_limit (work-front.versions.unsupported.Customer attribute),219

api_concurrency_limit (work-front.versions.v40.Customer attribute), 38

api_url() (workfront.meta.Object method), 9api_version (workfront.Session attribute), 6APIVersion (class in workfront.meta), 8app_events (workfront.versions.unsupported.AppGlobal

attribute), 169app_events (workfront.versions.unsupported.Customer

attribute), 219app_events (workfront.versions.unsupported.EventHandler

attribute), 254app_global (workfront.versions.unsupported.AccessLevel

attribute), 154app_global (workfront.versions.unsupported.AccessScope

attribute), 161app_global (workfront.versions.unsupported.AppEvent

attribute), 168app_global (workfront.versions.unsupported.ExpenseType

attribute), 259app_global (workfront.versions.unsupported.ExternalSection

attribute), 261app_global (workfront.versions.unsupported.Feature at-

tribute), 263app_global (workfront.versions.unsupported.HourType

attribute), 268app_global (workfront.versions.unsupported.LayoutTemplate

attribute), 285app_global (workfront.versions.unsupported.PortalProfile

attribute), 307

app_global (workfront.versions.unsupported.PortalSectionattribute), 308

app_global (workfront.versions.unsupported.Preferenceattribute), 317

app_global (workfront.versions.unsupported.UIFilter at-tribute), 391

app_global (workfront.versions.unsupported.UIGroupByattribute), 393

app_global (workfront.versions.unsupported.UIView at-tribute), 394

app_global_id (workfront.versions.unsupported.AccessLevelattribute), 154

app_global_id (workfront.versions.unsupported.AccessScopeattribute), 161

app_global_id (workfront.versions.unsupported.AppEventattribute), 168

app_global_id (workfront.versions.unsupported.ExpenseTypeattribute), 259

app_global_id (workfront.versions.unsupported.ExternalSectionattribute), 261

app_global_id (workfront.versions.unsupported.Featureattribute), 263

app_global_id (workfront.versions.unsupported.HourTypeattribute), 268

app_global_id (workfront.versions.unsupported.LayoutTemplateattribute), 286

app_global_id (workfront.versions.unsupported.PortalProfileattribute), 307

app_global_id (workfront.versions.unsupported.PortalSectionattribute), 308

app_global_id (workfront.versions.unsupported.Preferenceattribute), 317

app_global_id (workfront.versions.unsupported.UIFilterattribute), 391

app_global_id (workfront.versions.unsupported.UIGroupByattribute), 393

app_global_id (workfront.versions.unsupported.UIViewattribute), 394

app_global_id (workfront.versions.v40.ExpenseType at-tribute), 52

app_global_id (workfront.versions.v40.HourType at-tribute), 57

app_global_id (workfront.versions.v40.LayoutTemplateattribute), 69

app_global_id (workfront.versions.v40.UIFilter at-tribute), 129

app_global_id (workfront.versions.v40.UIGroupBy at-tribute), 130

app_global_id (workfront.versions.v40.UIView at-tribute), 132

AppBuild (class in workfront.versions.unsupported), 168AppEvent (class in workfront.versions.unsupported), 168AppGlobal (class in workfront.versions.unsupported),

168

Index 447

Page 452: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

AppInfo (class in workfront.versions.unsupported), 169apply_date (workfront.versions.unsupported.BurndownEvent

attribute), 204approvable_id (workfront.versions.unsupported.AwaitingApproval

attribute), 197approvable_obj_code (work-

front.versions.unsupported.ApproverStatusattribute), 189

approvable_obj_code (work-front.versions.v40.ApproverStatus attribute),27

approvable_obj_id (work-front.versions.unsupported.ApproverStatusattribute), 190

approvable_obj_id (work-front.versions.v40.ApproverStatus attribute),27

Approval (class in workfront.versions.unsupported), 170Approval (class in workfront.versions.v40), 10approval_date (workfront.versions.unsupported.DocumentApproval

attribute), 238approval_date (workfront.versions.v40.DocumentApproval

attribute), 46approval_est_start_date (work-

front.versions.unsupported.Approval attribute),171

approval_est_start_date (work-front.versions.unsupported.ApprovalProcessAttachableattribute), 188

approval_est_start_date (work-front.versions.unsupported.Issue attribute),271

approval_est_start_date (work-front.versions.unsupported.Project attribute),320

approval_est_start_date (work-front.versions.unsupported.Task attribute),359

approval_est_start_date (work-front.versions.unsupported.Work attribute),418

approval_est_start_date (work-front.versions.v40.Approval attribute), 11

approval_est_start_date (workfront.versions.v40.Issue at-tribute), 59

approval_est_start_date (workfront.versions.v40.Projectattribute), 83

approval_est_start_date (workfront.versions.v40.Task at-tribute), 106

approval_est_start_date (workfront.versions.v40.Work at-tribute), 143

approval_obj_code (work-front.versions.unsupported.ApprovalProcessattribute), 187

approval_obj_code (work-front.versions.v40.ApprovalProcess attribute),26

approval_path (workfront.versions.unsupported.ApprovalStepattribute), 189

approval_path (workfront.versions.v40.ApprovalStep at-tribute), 27

approval_path_id (work-front.versions.unsupported.ApprovalStepattribute), 189

approval_path_id (workfront.versions.v40.ApprovalStepattribute), 27

approval_paths (workfront.versions.unsupported.ApprovalProcessattribute), 187

approval_paths (workfront.versions.v40.ApprovalProcessattribute), 26

approval_planned_start_date (work-front.versions.unsupported.Approval attribute),171

approval_planned_start_date (work-front.versions.unsupported.ApprovalProcessAttachableattribute), 188

approval_planned_start_date (work-front.versions.unsupported.Issue attribute),271

approval_planned_start_date (work-front.versions.unsupported.Project attribute),320

approval_planned_start_date (work-front.versions.unsupported.Task attribute),360

approval_planned_start_date (work-front.versions.unsupported.Work attribute),418

approval_planned_start_date (work-front.versions.v40.Approval attribute), 11

approval_planned_start_date (work-front.versions.v40.Issue attribute), 59

approval_planned_start_date (work-front.versions.v40.Project attribute), 83

approval_planned_start_date (work-front.versions.v40.Task attribute), 106

approval_planned_start_date (work-front.versions.v40.Work attribute), 143

approval_planned_start_day (work-front.versions.unsupported.Approval attribute),171

approval_planned_start_day (work-front.versions.unsupported.ApprovalProcessAttachableattribute), 188

approval_planned_start_day (work-front.versions.unsupported.Issue attribute),271

approval_planned_start_day (work-

448 Index

Page 453: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

front.versions.unsupported.Project attribute),321

approval_planned_start_day (work-front.versions.unsupported.Task attribute),360

approval_planned_start_day (work-front.versions.unsupported.Work attribute),418

approval_planned_start_day (work-front.versions.v40.Approval attribute), 11

approval_planned_start_day (work-front.versions.v40.Issue attribute), 59

approval_planned_start_day (work-front.versions.v40.Project attribute), 83

approval_planned_start_day (work-front.versions.v40.Task attribute), 106

approval_planned_start_day (work-front.versions.v40.Work attribute), 143

approval_process (work-front.versions.unsupported.Approval attribute),171

approval_process (work-front.versions.unsupported.ApprovalPathattribute), 186

approval_process (work-front.versions.unsupported.ApprovalProcessAttachableattribute), 188

approval_process (workfront.versions.unsupported.Issueattribute), 271

approval_process (work-front.versions.unsupported.Project attribute),321

approval_process (workfront.versions.unsupported.Taskattribute), 360

approval_process (work-front.versions.unsupported.Template attribute),374

approval_process (work-front.versions.unsupported.TemplateTaskattribute), 380

approval_process (workfront.versions.unsupported.Workattribute), 418

approval_process (workfront.versions.v40.Approval at-tribute), 11

approval_process (workfront.versions.v40.ApprovalPathattribute), 25

approval_process (workfront.versions.v40.Issue at-tribute), 59

approval_process (workfront.versions.v40.Project at-tribute), 83

approval_process (workfront.versions.v40.Task at-tribute), 106

approval_process (workfront.versions.v40.Template at-tribute), 118

approval_process (workfront.versions.v40.TemplateTaskattribute), 123

approval_process (workfront.versions.v40.Work at-tribute), 143

approval_process_id (work-front.versions.unsupported.Approval attribute),171

approval_process_id (work-front.versions.unsupported.ApprovalPathattribute), 187

approval_process_id (work-front.versions.unsupported.ApprovalProcessAttachableattribute), 188

approval_process_id (work-front.versions.unsupported.Issue attribute),271

approval_process_id (work-front.versions.unsupported.Project attribute),321

approval_process_id (work-front.versions.unsupported.Task attribute),360

approval_process_id (work-front.versions.unsupported.Template attribute),374

approval_process_id (work-front.versions.unsupported.TemplateTaskattribute), 380

approval_process_id (work-front.versions.unsupported.Work attribute),418

approval_process_id (workfront.versions.v40.Approvalattribute), 11

approval_process_id (work-front.versions.v40.ApprovalPath attribute),25

approval_process_id (workfront.versions.v40.Issue at-tribute), 59

approval_process_id (workfront.versions.v40.Project at-tribute), 83

approval_process_id (workfront.versions.v40.Taskattribute), 107

approval_process_id (workfront.versions.v40.Templateattribute), 118

approval_process_id (work-front.versions.v40.TemplateTask attribute),123

approval_process_id (workfront.versions.v40.Work at-tribute), 143

approval_processes (work-front.versions.unsupported.Customer attribute),220

approval_processes (workfront.versions.v40.Customerattribute), 38

Index 449

Page 454: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

approval_projected_start_date (work-front.versions.unsupported.Approval attribute),171

approval_projected_start_date (work-front.versions.unsupported.ApprovalProcessAttachableattribute), 188

approval_projected_start_date (work-front.versions.unsupported.Issue attribute),271

approval_projected_start_date (work-front.versions.unsupported.Project attribute),321

approval_projected_start_date (work-front.versions.unsupported.Task attribute),360

approval_projected_start_date (work-front.versions.unsupported.Work attribute),418

approval_projected_start_date (work-front.versions.v40.Approval attribute), 11

approval_projected_start_date (work-front.versions.v40.Issue attribute), 59

approval_projected_start_date (work-front.versions.v40.Project attribute), 83

approval_projected_start_date (work-front.versions.v40.Task attribute), 107

approval_projected_start_date (work-front.versions.v40.Work attribute), 143

approval_statuses (work-front.versions.unsupported.ApprovalProcessattribute), 187

approval_statuses (work-front.versions.v40.ApprovalProcess attribute),26

approval_step (workfront.versions.unsupported.ApproverStatusattribute), 190

approval_step (workfront.versions.unsupported.StepApproverattribute), 358

approval_step (workfront.versions.v40.ApproverStatusattribute), 27

approval_step (workfront.versions.v40.StepApprover at-tribute), 105

approval_step_id (work-front.versions.unsupported.ApproverStatusattribute), 190

approval_step_id (work-front.versions.unsupported.StepApproverattribute), 358

approval_step_id (work-front.versions.v40.ApproverStatus attribute),27

approval_step_id (workfront.versions.v40.StepApproverattribute), 105

approval_steps (workfront.versions.unsupported.ApprovalPath

attribute), 187approval_steps (workfront.versions.v40.ApprovalPath at-

tribute), 25approval_type (workfront.versions.unsupported.ApprovalStep

attribute), 189approval_type (workfront.versions.v40.ApprovalStep at-

tribute), 27ApprovalPath (class in workfront.versions.unsupported),

186ApprovalPath (class in workfront.versions.v40), 25ApprovalProcess (class in work-

front.versions.unsupported), 187ApprovalProcess (class in workfront.versions.v40), 26ApprovalProcessAttachable (class in work-

front.versions.unsupported), 188approvals (workfront.versions.unsupported.Document at-

tribute), 230approvals (workfront.versions.v40.Document attribute),

43ApprovalStep (class in workfront.versions.unsupported),

189ApprovalStep (class in workfront.versions.v40), 26approve() (workfront.versions.unsupported.Hour

method), 266approve_approval() (work-

front.versions.unsupported.Issue method),271

approve_approval() (work-front.versions.unsupported.Project method),321

approve_approval() (work-front.versions.unsupported.Task method),360

approve_approval() (workfront.versions.v40.Issuemethod), 59

approve_approval() (workfront.versions.v40.Projectmethod), 83

approve_approval() (workfront.versions.v40.Taskmethod), 107

approved_by (workfront.versions.unsupported.ApproverStatusattribute), 190

approved_by (workfront.versions.unsupported.Hour at-tribute), 267

approved_by (workfront.versions.v40.ApproverStatus at-tribute), 27

approved_by (workfront.versions.v40.Hour attribute), 55approved_by_id (work-

front.versions.unsupported.ApproverStatusattribute), 190

approved_by_id (workfront.versions.unsupported.Hourattribute), 267

approved_by_id (workfront.versions.v40.ApproverStatusattribute), 27

approved_by_id (workfront.versions.v40.Hour attribute),

450 Index

Page 455: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

55approved_on_date (workfront.versions.unsupported.Hour

attribute), 267approved_on_date (workfront.versions.v40.Hour at-

tribute), 55approver (workfront.versions.unsupported.DocumentApproval

attribute), 238approver (workfront.versions.unsupported.Timesheet at-

tribute), 387approver (workfront.versions.unsupported.TimesheetProfile

attribute), 389approver (workfront.versions.v40.DocumentApproval at-

tribute), 46approver (workfront.versions.v40.Timesheet attribute),

128approver_can_edit_hours (work-

front.versions.unsupported.Timesheet at-tribute), 387

approver_can_edit_hours (work-front.versions.unsupported.TimesheetProfileattribute), 389

approver_id (workfront.versions.unsupported.AwaitingApprovalattribute), 197

approver_id (workfront.versions.unsupported.DocumentApprovalattribute), 238

approver_id (workfront.versions.unsupported.Timesheetattribute), 387

approver_id (workfront.versions.unsupported.TimesheetProfileattribute), 389

approver_id (workfront.versions.v40.DocumentApprovalattribute), 46

approver_id (workfront.versions.v40.Timesheet at-tribute), 128

approver_status (workfront.versions.unsupported.JournalEntryattribute), 281

approver_status_id (work-front.versions.unsupported.JournalEntryattribute), 281

approver_statuses (work-front.versions.unsupported.Approval attribute),171

approver_statuses (work-front.versions.unsupported.ApprovalProcessAttachableattribute), 188

approver_statuses (workfront.versions.unsupported.Issueattribute), 272

approver_statuses (work-front.versions.unsupported.Project attribute),321

approver_statuses (workfront.versions.unsupported.Taskattribute), 360

approver_statuses (workfront.versions.unsupported.Workattribute), 418

approver_statuses (workfront.versions.v40.Approval at-

tribute), 12approver_statuses (workfront.versions.v40.Issue at-

tribute), 59approver_statuses (workfront.versions.v40.Project

attribute), 84approver_statuses (workfront.versions.v40.Task at-

tribute), 107approver_statuses (workfront.versions.v40.Work at-

tribute), 143approvers (workfront.versions.unsupported.Timesheet at-

tribute), 387approvers (workfront.versions.unsupported.TimesheetProfile

attribute), 389approvers_list_string (work-

front.versions.unsupported.Timesheet at-tribute), 387

approvers_list_string (work-front.versions.unsupported.TimesheetProfileattribute), 389

approvers_string (work-front.versions.unsupported.Approval attribute),171

approvers_string (workfront.versions.unsupported.Issueattribute), 272

approvers_string (work-front.versions.unsupported.Project attribute),321

approvers_string (workfront.versions.unsupported.Taskattribute), 360

approvers_string (workfront.versions.unsupported.Workattribute), 418

approvers_string (workfront.versions.v40.Approval at-tribute), 12

approvers_string (workfront.versions.v40.Issue attribute),59

approvers_string (workfront.versions.v40.Project at-tribute), 84

approvers_string (workfront.versions.v40.Task attribute),107

approvers_string (workfront.versions.v40.Work at-tribute), 143

ApproverStatus (class in work-front.versions.unsupported), 189

ApproverStatus (class in workfront.versions.v40), 27area (workfront.versions.unsupported.PortalTabSection

attribute), 314assign() (workfront.versions.unsupported.Issue method),

272assign() (workfront.versions.unsupported.Task method),

360assign() (workfront.versions.v40.Issue method), 59assign() (workfront.versions.v40.Task method), 107assign_categories() (work-

front.versions.unsupported.Category method),

Index 451

Page 456: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

209assign_category() (work-

front.versions.unsupported.Category method),209

assign_iteration_to_descendants() (work-front.versions.unsupported.Iteration method),279

assign_multiple() (workfront.versions.unsupported.Issuemethod), 272

assign_multiple() (workfront.versions.unsupported.Taskmethod), 360

assign_multiple() (work-front.versions.unsupported.TemplateTaskmethod), 380

assign_user_token() (work-front.versions.unsupported.User method),399

assign_user_token() (workfront.versions.v40.Usermethod), 135

assigned_by (workfront.versions.unsupported.Assignmentattribute), 191

assigned_by (workfront.versions.v40.Assignment at-tribute), 28

assigned_by_id (workfront.versions.unsupported.Assignmentattribute), 191

assigned_by_id (workfront.versions.v40.Assignment at-tribute), 28

assigned_to (workfront.versions.unsupported.Approvalattribute), 171

assigned_to (workfront.versions.unsupported.Assignmentattribute), 191

assigned_to (workfront.versions.unsupported.Issueattribute), 272

assigned_to (workfront.versions.unsupported.MasterTaskattribute), 291

assigned_to (workfront.versions.unsupported.Taskattribute), 360

assigned_to (workfront.versions.unsupported.TemplateAssignmentattribute), 379

assigned_to (workfront.versions.unsupported.TemplateTaskattribute), 380

assigned_to (workfront.versions.unsupported.Work at-tribute), 418

assigned_to (workfront.versions.v40.Approval attribute),12

assigned_to (workfront.versions.v40.Assignment at-tribute), 28

assigned_to (workfront.versions.v40.Issue attribute), 59assigned_to (workfront.versions.v40.Task attribute), 107assigned_to (workfront.versions.v40.TemplateAssignment

attribute), 121assigned_to (workfront.versions.v40.TemplateTask at-

tribute), 123assigned_to (workfront.versions.v40.Work attribute), 143

assigned_to_id (workfront.versions.unsupported.Approvalattribute), 172

assigned_to_id (workfront.versions.unsupported.Assignmentattribute), 191

assigned_to_id (workfront.versions.unsupported.CalendarFeedEntryattribute), 205

assigned_to_id (workfront.versions.unsupported.Issue at-tribute), 272

assigned_to_id (workfront.versions.unsupported.MasterTaskattribute), 291

assigned_to_id (workfront.versions.unsupported.Task at-tribute), 360

assigned_to_id (workfront.versions.unsupported.TemplateAssignmentattribute), 379

assigned_to_id (workfront.versions.unsupported.TemplateTaskattribute), 381

assigned_to_id (workfront.versions.unsupported.Work at-tribute), 418

assigned_to_id (workfront.versions.v40.Approval at-tribute), 12

assigned_to_id (workfront.versions.v40.Assignment at-tribute), 28

assigned_to_id (workfront.versions.v40.Issue attribute),59

assigned_to_id (workfront.versions.v40.Task attribute),107

assigned_to_id (workfront.versions.v40.TemplateAssignmentattribute), 121

assigned_to_id (workfront.versions.v40.TemplateTask at-tribute), 123

assigned_to_id (workfront.versions.v40.Work attribute),143

assigned_to_name (work-front.versions.unsupported.CalendarFeedEntryattribute), 205

assigned_to_title (work-front.versions.unsupported.CalendarFeedEntryattribute), 205

Assignment (class in workfront.versions.unsupported),191

Assignment (class in workfront.versions.v40), 28assignment (workfront.versions.unsupported.JournalEntry

attribute), 281assignment (workfront.versions.unsupported.WorkItem

attribute), 429assignment (workfront.versions.v40.JournalEntry at-

tribute), 66assignment (workfront.versions.v40.WorkItem attribute),

152assignment_id (workfront.versions.unsupported.JournalEntry

attribute), 281assignment_id (workfront.versions.unsupported.WorkItem

attribute), 429assignment_id (workfront.versions.v40.JournalEntry at-

452 Index

Page 457: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

tribute), 66assignment_id (workfront.versions.v40.WorkItem at-

tribute), 152assignment_percent (work-

front.versions.unsupported.Assignment at-tribute), 191

assignment_percent (work-front.versions.unsupported.TemplateAssignmentattribute), 379

assignment_percent (workfront.versions.v40.Assignmentattribute), 28

assignment_percent (work-front.versions.v40.TemplateAssignmentattribute), 121

assignments (workfront.versions.unsupported.Approvalattribute), 172

assignments (workfront.versions.unsupported.Issue at-tribute), 272

assignments (workfront.versions.unsupported.MasterTaskattribute), 291

assignments (workfront.versions.unsupported.Taskattribute), 360

assignments (workfront.versions.unsupported.TemplateTaskattribute), 381

assignments (workfront.versions.unsupported.UserResourceattribute), 414

assignments (workfront.versions.unsupported.Work at-tribute), 418

assignments (workfront.versions.v40.Approval attribute),12

assignments (workfront.versions.v40.Issue attribute), 59assignments (workfront.versions.v40.Task attribute), 107assignments (workfront.versions.v40.TemplateTask at-

tribute), 123assignments (workfront.versions.v40.Work attribute), 143assignments_list_string (work-

front.versions.unsupported.Approval attribute),172

assignments_list_string (work-front.versions.unsupported.Task attribute),361

assignments_list_string (work-front.versions.unsupported.TemplateTaskattribute), 381

assignments_list_string (work-front.versions.unsupported.Work attribute),418

assignments_list_string (work-front.versions.v40.Approval attribute), 12

assignments_list_string (workfront.versions.v40.Task at-tribute), 107

assignments_list_string (workfront.versions.v40.Work at-tribute), 143

associated_topics (work-

front.versions.unsupported.QueueTopicGroupattribute), 336

async_delete() (workfront.versions.unsupported.Projectmethod), 321

attach_document (workfront.versions.unsupported.Noteattribute), 297

attach_document (workfront.versions.v40.Note attribute),72

attach_document_id (work-front.versions.unsupported.Note attribute),297

attach_document_id (workfront.versions.v40.Noteattribute), 73

attach_obj_code (workfront.versions.unsupported.Noteattribute), 297

attach_obj_code (workfront.versions.v40.Note attribute),73

attach_obj_id (workfront.versions.unsupported.Note at-tribute), 297

attach_obj_id (workfront.versions.v40.Note attribute), 73attach_op_task (workfront.versions.unsupported.Note at-

tribute), 297attach_op_task (workfront.versions.v40.Note attribute),

73attach_op_task_id (workfront.versions.unsupported.Note

attribute), 297attach_op_task_id (workfront.versions.v40.Note at-

tribute), 73attach_template() (work-

front.versions.unsupported.Project method),321

attach_template() (workfront.versions.v40.Projectmethod), 84

attach_template_with_parameter_values() (work-front.versions.unsupported.Project method),321

attach_work_id (workfront.versions.unsupported.Note at-tribute), 297

attach_work_name (work-front.versions.unsupported.Note attribute),297

attach_work_obj_code (work-front.versions.unsupported.Note attribute),297

attach_work_user (workfront.versions.unsupported.Noteattribute), 297

attach_work_user_id (work-front.versions.unsupported.Note attribute),298

attachments (workfront.versions.unsupported.Announcementattribute), 165

attask_attribute (workfront.versions.unsupported.SSOMappingattribute), 347

attask_attribute (workfront.versions.unsupported.SSOMappingRule

Index 453

Page 458: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

attribute), 347attask_version (workfront.versions.unsupported.AppInfo

attribute), 169audit_note (workfront.versions.unsupported.Approval at-

tribute), 172audit_note (workfront.versions.unsupported.Task at-

tribute), 361audit_note (workfront.versions.unsupported.Work at-

tribute), 418audit_note (workfront.versions.v40.Approval attribute),

12audit_note (workfront.versions.v40.Task attribute), 107audit_note (workfront.versions.v40.Work attribute), 143audit_record (workfront.versions.unsupported.JournalEntry

attribute), 281audit_record (workfront.versions.unsupported.Note at-

tribute), 298audit_record (workfront.versions.unsupported.Update at-

tribute), 396audit_record_id (workfront.versions.unsupported.JournalEntry

attribute), 281audit_record_id (workfront.versions.unsupported.Note

attribute), 298audit_record_id (workfront.versions.unsupported.Update

attribute), 396audit_session() (workfront.versions.unsupported.AuditLoginAsSession

method), 193audit_session_count() (work-

front.versions.unsupported.Update method),396

audit_text (workfront.versions.unsupported.Note at-tribute), 298

audit_text (workfront.versions.v40.Note attribute), 73audit_type (workfront.versions.unsupported.Note at-

tribute), 298audit_type (workfront.versions.v40.Note attribute), 73audit_types (workfront.versions.unsupported.Approval

attribute), 172audit_types (workfront.versions.unsupported.Issue

attribute), 272audit_types (workfront.versions.unsupported.MasterTask

attribute), 291audit_types (workfront.versions.unsupported.Portfolio at-

tribute), 315audit_types (workfront.versions.unsupported.Program at-

tribute), 317audit_types (workfront.versions.unsupported.Project at-

tribute), 322audit_types (workfront.versions.unsupported.Task at-

tribute), 361audit_types (workfront.versions.unsupported.TemplateTask

attribute), 381audit_types (workfront.versions.unsupported.Work at-

tribute), 418

audit_types (workfront.versions.v40.Approval attribute),12

audit_types (workfront.versions.v40.Issue attribute), 59audit_types (workfront.versions.v40.Portfolio attribute),

78audit_types (workfront.versions.v40.Program attribute),

80audit_types (workfront.versions.v40.Project attribute), 84audit_types (workfront.versions.v40.Task attribute), 107audit_types (workfront.versions.v40.TemplateTask

attribute), 123audit_types (workfront.versions.v40.Work attribute), 143audit_user_ids (workfront.versions.unsupported.Approval

attribute), 172audit_user_ids (workfront.versions.unsupported.Task at-

tribute), 361audit_user_ids (workfront.versions.unsupported.Work at-

tribute), 418audit_user_ids (workfront.versions.v40.Approval at-

tribute), 12audit_user_ids (workfront.versions.v40.Task attribute),

107audit_user_ids (workfront.versions.v40.Work attribute),

143AuditLoginAsSession (class in work-

front.versions.unsupported), 192Authentication (class in workfront.versions.unsupported),

194authentication_type (work-

front.versions.unsupported.SSOOption at-tribute), 348

author_id (workfront.versions.unsupported.RecentUpdateattribute), 339

author_name (workfront.versions.unsupported.RecentUpdateattribute), 339

auto_baseline_recur_on (work-front.versions.unsupported.Approval attribute),172

auto_baseline_recur_on (work-front.versions.unsupported.Project attribute),322

auto_baseline_recur_on (work-front.versions.unsupported.Template attribute),374

auto_baseline_recur_on (work-front.versions.v40.Approval attribute), 12

auto_baseline_recur_on (workfront.versions.v40.Projectattribute), 84

auto_baseline_recur_on (work-front.versions.v40.Template attribute), 118

auto_baseline_recurrence_type (work-front.versions.unsupported.Approval attribute),172

auto_baseline_recurrence_type (work-

454 Index

Page 459: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

front.versions.unsupported.Project attribute),322

auto_baseline_recurrence_type (work-front.versions.unsupported.Template attribute),374

auto_baseline_recurrence_type (work-front.versions.v40.Approval attribute), 12

auto_baseline_recurrence_type (work-front.versions.v40.Project attribute), 84

auto_baseline_recurrence_type (work-front.versions.v40.Template attribute), 118

auto_closure_date (work-front.versions.unsupported.Approval attribute),172

auto_closure_date (workfront.versions.unsupported.Issueattribute), 272

auto_closure_date (work-front.versions.unsupported.Work attribute),418

auto_closure_date (workfront.versions.v40.Approval at-tribute), 12

auto_closure_date (workfront.versions.v40.Issue at-tribute), 59

auto_closure_date (workfront.versions.v40.Work at-tribute), 144

auto_document_share (work-front.versions.unsupported.DocumentApprovalattribute), 238

auto_document_share_id (work-front.versions.unsupported.DocumentApprovalattribute), 238

auto_document_share_id (work-front.versions.v40.DocumentApproval at-tribute), 46

auto_generated (workfront.versions.unsupported.AccessRequestattribute), 158

auto_generated (workfront.versions.unsupported.Baselineattribute), 200

auto_generated (workfront.versions.v40.Baseline at-tribute), 31

auto_share_action (work-front.versions.unsupported.AccessRequestattribute), 158

aux1 (workfront.versions.unsupported.JournalEntry at-tribute), 281

aux1 (workfront.versions.v40.JournalEntry attribute), 67aux2 (workfront.versions.unsupported.JournalEntry at-

tribute), 281aux2 (workfront.versions.v40.JournalEntry attribute), 67aux3 (workfront.versions.unsupported.JournalEntry at-

tribute), 281aux3 (workfront.versions.v40.JournalEntry attribute), 67availability_date (work-

front.versions.unsupported.UserAvailability

attribute), 408available_actions (work-

front.versions.unsupported.Timesheet at-tribute), 387

available_actions (workfront.versions.v40.Timesheet at-tribute), 128

available_number_of_hours (work-front.versions.unsupported.UserResourceattribute), 414

available_time_per_day (work-front.versions.unsupported.UserResourceattribute), 414

Avatar (class in workfront.versions.unsupported), 195Avatar (class in workfront.versions.v40), 29avatar_date (workfront.versions.unsupported.Avatar at-

tribute), 195avatar_date (workfront.versions.unsupported.User at-

tribute), 399avatar_date (workfront.versions.v40.Avatar attribute), 29avatar_date (workfront.versions.v40.User attribute), 135avatar_download_url (work-

front.versions.unsupported.Avatar attribute),195

avatar_download_url (work-front.versions.unsupported.User attribute),400

avatar_download_url (workfront.versions.v40.Avatar at-tribute), 30

avatar_download_url (workfront.versions.v40.User at-tribute), 135

avatar_size (workfront.versions.unsupported.Avatar at-tribute), 195

avatar_size (workfront.versions.unsupported.User at-tribute), 400

avatar_size (workfront.versions.v40.Avatar attribute), 30avatar_size (workfront.versions.v40.User attribute), 135avatar_x (workfront.versions.unsupported.Avatar at-

tribute), 195avatar_x (workfront.versions.unsupported.User attribute),

400avatar_x (workfront.versions.v40.Avatar attribute), 30avatar_x (workfront.versions.v40.User attribute), 135avatar_y (workfront.versions.unsupported.Avatar at-

tribute), 196avatar_y (workfront.versions.unsupported.User attribute),

400avatar_y (workfront.versions.v40.Avatar attribute), 30avatar_y (workfront.versions.v40.User attribute), 135average_actual_number_of_hours (work-

front.versions.unsupported.UserResourceattribute), 414

average_number_of_hours (work-front.versions.unsupported.UserResourceattribute), 415

Index 455

Page 460: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

average_projected_number_of_hours (work-front.versions.unsupported.UserResourceattribute), 415

avg_work_per_day (work-front.versions.unsupported.Assignment at-tribute), 191

avg_work_per_day (workfront.versions.v40.Assignmentattribute), 28

awaiting_approvals (work-front.versions.unsupported.AccessRequestattribute), 158

awaiting_approvals (work-front.versions.unsupported.Approval attribute),172

awaiting_approvals (work-front.versions.unsupported.Document at-tribute), 230

awaiting_approvals (work-front.versions.unsupported.Issue attribute),272

awaiting_approvals (work-front.versions.unsupported.Project attribute),322

awaiting_approvals (work-front.versions.unsupported.Task attribute),361

awaiting_approvals (work-front.versions.unsupported.Timesheet at-tribute), 387

awaiting_approvals (work-front.versions.unsupported.Work attribute),418

AwaitingApproval (class in work-front.versions.unsupported), 197

BBackgroundJob (class in work-

front.versions.unsupported), 198BackgroundJob (class in workfront.versions.v40), 30backlog_order (workfront.versions.unsupported.Approval

attribute), 172backlog_order (workfront.versions.unsupported.Task at-

tribute), 361backlog_order (workfront.versions.unsupported.Work at-

tribute), 418backlog_order (workfront.versions.v40.Approval at-

tribute), 12backlog_order (workfront.versions.v40.Task attribute),

107backlog_order (workfront.versions.v40.Work attribute),

144backlog_tasks (workfront.versions.unsupported.Team at-

tribute), 371

backlog_tasks (workfront.versions.v40.Team attribute),116

Baseline (class in workfront.versions.unsupported), 200Baseline (class in workfront.versions.v40), 30baseline (workfront.versions.unsupported.BaselineTask

attribute), 201baseline (workfront.versions.unsupported.JournalEntry

attribute), 281baseline (workfront.versions.v40.BaselineTask attribute),

32baseline_id (workfront.versions.unsupported.BaselineTask

attribute), 202baseline_id (workfront.versions.unsupported.JournalEntry

attribute), 281baseline_id (workfront.versions.v40.BaselineTask at-

tribute), 32baseline_tasks (workfront.versions.unsupported.Baseline

attribute), 200baseline_tasks (workfront.versions.v40.Baseline at-

tribute), 31baselines (workfront.versions.unsupported.Approval at-

tribute), 172baselines (workfront.versions.unsupported.Project

attribute), 322baselines (workfront.versions.v40.Approval attribute), 12baselines (workfront.versions.v40.Project attribute), 84BaselineTask (class in workfront.versions.unsupported),

201BaselineTask (class in workfront.versions.v40), 32bccompletion_state (work-

front.versions.unsupported.Approval attribute),172

bccompletion_state (work-front.versions.unsupported.Project attribute),322

bccompletion_state (workfront.versions.v40.Approval at-tribute), 12

bccompletion_state (workfront.versions.v40.Project at-tribute), 84

bean_classname (work-front.versions.unsupported.MetaRecord at-tribute), 294

begin_at_row (workfront.versions.unsupported.ImportTemplateattribute), 270

billable_tasks (workfront.versions.unsupported.BillingRecordattribute), 203

billable_tasks (workfront.versions.v40.BillingRecord at-tribute), 34

billed_revenue (workfront.versions.unsupported.Approvalattribute), 172

billed_revenue (workfront.versions.unsupported.Projectattribute), 322

billed_revenue (workfront.versions.v40.Approval at-tribute), 12

456 Index

Page 461: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

billed_revenue (workfront.versions.v40.Project attribute),84

billing_amount (workfront.versions.unsupported.Approvalattribute), 172

billing_amount (workfront.versions.unsupported.MasterTaskattribute), 291

billing_amount (workfront.versions.unsupported.Task at-tribute), 361

billing_amount (workfront.versions.unsupported.TemplateTaskattribute), 381

billing_amount (workfront.versions.unsupported.Workattribute), 419

billing_amount (workfront.versions.v40.Approval at-tribute), 12

billing_amount (workfront.versions.v40.Task attribute),107

billing_amount (workfront.versions.v40.TemplateTaskattribute), 123

billing_amount (workfront.versions.v40.Work attribute),144

billing_date (workfront.versions.unsupported.BillingRecordattribute), 203

billing_date (workfront.versions.v40.BillingRecord at-tribute), 34

billing_per_hour (workfront.versions.unsupported.Roleattribute), 345

billing_per_hour (workfront.versions.unsupported.Userattribute), 400

billing_per_hour (workfront.versions.v40.Role attribute),99

billing_per_hour (workfront.versions.v40.User attribute),135

billing_record (workfront.versions.unsupported.Approvalattribute), 172

billing_record (workfront.versions.unsupported.Expenseattribute), 256

billing_record (workfront.versions.unsupported.Hour at-tribute), 267

billing_record (workfront.versions.unsupported.JournalEntryattribute), 281

billing_record (workfront.versions.unsupported.Task at-tribute), 361

billing_record (workfront.versions.unsupported.Work at-tribute), 419

billing_record (workfront.versions.v40.Approval at-tribute), 12

billing_record (workfront.versions.v40.Expense at-tribute), 50

billing_record (workfront.versions.v40.Hour attribute),55

billing_record (workfront.versions.v40.JournalEntry at-tribute), 67

billing_record (workfront.versions.v40.Task attribute),108

billing_record (workfront.versions.v40.Work attribute),144

billing_record_id (work-front.versions.unsupported.Approval attribute),172

billing_record_id (work-front.versions.unsupported.Expense attribute),256

billing_record_id (workfront.versions.unsupported.Hourattribute), 267

billing_record_id (work-front.versions.unsupported.JournalEntryattribute), 281

billing_record_id (workfront.versions.unsupported.Taskattribute), 361

billing_record_id (workfront.versions.unsupported.Workattribute), 419

billing_record_id (workfront.versions.v40.Approval at-tribute), 12

billing_record_id (workfront.versions.v40.Expense at-tribute), 50

billing_record_id (workfront.versions.v40.Hour at-tribute), 55

billing_record_id (workfront.versions.v40.JournalEntryattribute), 67

billing_record_id (workfront.versions.v40.Task attribute),108

billing_record_id (workfront.versions.v40.Work at-tribute), 144

billing_records (workfront.versions.unsupported.Approvalattribute), 172

billing_records (workfront.versions.unsupported.Projectattribute), 322

billing_records (workfront.versions.v40.Approval at-tribute), 12

billing_records (workfront.versions.v40.Project at-tribute), 84

BillingRecord (class in workfront.versions.unsupported),203

BillingRecord (class in workfront.versions.v40), 33binding_type (workfront.versions.unsupported.SSOOption

attribute), 348biz_rule_exclusions (work-

front.versions.unsupported.Customer attribute),220

biz_rule_exclusions (workfront.versions.v40.Customerattribute), 38

Branding (class in workfront.versions.unsupported), 204browse_list_with_link_action() (work-

front.versions.unsupported.ExternalDocumentmethod), 259

budget (workfront.versions.unsupported.Approval at-tribute), 172

budget (workfront.versions.unsupported.Baseline at-

Index 457

Page 462: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

tribute), 200budget (workfront.versions.unsupported.Portfolio at-

tribute), 315budget (workfront.versions.unsupported.Project at-

tribute), 322budget (workfront.versions.unsupported.Template at-

tribute), 374budget (workfront.versions.v40.Approval attribute), 12budget (workfront.versions.v40.Baseline attribute), 31budget (workfront.versions.v40.Portfolio attribute), 78budget (workfront.versions.v40.Project attribute), 84budget_status (workfront.versions.unsupported.Approval

attribute), 172budget_status (workfront.versions.unsupported.Project

attribute), 322budget_status (workfront.versions.v40.Approval at-

tribute), 13budget_status (workfront.versions.v40.Project attribute),

84budgeted_completion_date (work-

front.versions.unsupported.Approval attribute),172

budgeted_completion_date (work-front.versions.unsupported.Project attribute),322

budgeted_completion_date (work-front.versions.v40.Approval attribute), 13

budgeted_completion_date (work-front.versions.v40.Project attribute), 84

budgeted_cost (workfront.versions.unsupported.Approvalattribute), 173

budgeted_cost (workfront.versions.unsupported.Projectattribute), 322

budgeted_cost (workfront.versions.v40.Approval at-tribute), 13

budgeted_cost (workfront.versions.v40.Project attribute),84

budgeted_hours (work-front.versions.unsupported.Approval attribute),173

budgeted_hours (workfront.versions.unsupported.Projectattribute), 322

budgeted_hours (work-front.versions.unsupported.ResourceAllocationattribute), 342

budgeted_hours (workfront.versions.v40.Approvalattribute), 13

budgeted_hours (workfront.versions.v40.Project at-tribute), 85

budgeted_hours (work-front.versions.v40.ResourceAllocation at-tribute), 97

budgeted_labor_cost (work-front.versions.unsupported.Approval attribute),

173budgeted_labor_cost (work-

front.versions.unsupported.Project attribute),322

budgeted_labor_cost (workfront.versions.v40.Approvalattribute), 13

budgeted_labor_cost (workfront.versions.v40.Project at-tribute), 85

budgeted_start_date (work-front.versions.unsupported.Approval attribute),173

budgeted_start_date (work-front.versions.unsupported.Project attribute),322

budgeted_start_date (workfront.versions.v40.Approvalattribute), 13

budgeted_start_date (workfront.versions.v40.Project at-tribute), 85

build_download_manifest() (work-front.versions.unsupported.Document method),230

build_id (workfront.versions.unsupported.AppBuild at-tribute), 168

build_number (workfront.versions.unsupported.AppBuildattribute), 168

build_number (workfront.versions.unsupported.AppInfoattribute), 169

bulk_copy() (workfront.versions.unsupported.Taskmethod), 361

bulk_copy() (workfront.versions.unsupported.TemplateTaskmethod), 381

bulk_copy() (workfront.versions.v40.Task method), 108bulk_delete_recent() (work-

front.versions.unsupported.RecentMenuItemmethod), 338

bulk_move() (workfront.versions.unsupported.Taskmethod), 361

bulk_move() (workfront.versions.unsupported.TemplateTaskmethod), 381

bulk_move() (workfront.versions.v40.Task method), 108burndown_obj_code (work-

front.versions.unsupported.BurndownEventattribute), 204

burndown_obj_id (work-front.versions.unsupported.BurndownEventattribute), 204

BurndownEvent (class in work-front.versions.unsupported), 204

business_case_status_label (work-front.versions.unsupported.Approval attribute),173

business_case_status_label (work-front.versions.unsupported.Project attribute),322

458 Index

Page 463: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

business_case_status_label (work-front.versions.v40.Approval attribute), 13

business_case_status_label (work-front.versions.v40.Project attribute), 85

Ccache_key (workfront.versions.unsupported.BackgroundJob

attribute), 198cal_events (workfront.versions.unsupported.CalendarSection

attribute), 208calculate_data_extension() (work-

front.versions.unsupported.Category method),209

calculate_data_extension() (work-front.versions.unsupported.Company method),214

calculate_data_extension() (work-front.versions.unsupported.Document method),230

calculate_data_extension() (work-front.versions.unsupported.Expense method),256

calculate_data_extension() (work-front.versions.unsupported.Issue method),272

calculate_data_extension() (work-front.versions.unsupported.MasterTaskmethod), 291

calculate_data_extension() (work-front.versions.unsupported.Portfolio method),315

calculate_data_extension() (work-front.versions.unsupported.Program method),318

calculate_data_extension() (work-front.versions.unsupported.Project method),323

calculate_data_extension() (work-front.versions.unsupported.Task method),361

calculate_data_extension() (work-front.versions.unsupported.Template method),374

calculate_data_extension() (work-front.versions.unsupported.TemplateTaskmethod), 381

calculate_data_extension() (work-front.versions.unsupported.User method),400

calculate_data_extension() (work-front.versions.v40.Company method), 36

calculate_data_extension() (work-front.versions.v40.Document method), 43

calculate_data_extension() (work-front.versions.v40.Expense method), 50

calculate_data_extension() (workfront.versions.v40.Issuemethod), 60

calculate_data_extension() (work-front.versions.v40.Portfolio method), 78

calculate_data_extension() (work-front.versions.v40.Program method), 81

calculate_data_extension() (work-front.versions.v40.Project method), 85

calculate_data_extension() (workfront.versions.v40.Taskmethod), 108

calculate_data_extension() (work-front.versions.v40.Template method), 118

calculate_data_extension() (work-front.versions.v40.TemplateTask method),123

calculate_data_extension() (workfront.versions.v40.Usermethod), 135

calculate_data_extensions() (work-front.versions.unsupported.Task method),361

calculate_finance() (work-front.versions.unsupported.Project method),323

calculate_finance() (workfront.versions.v40.Projectmethod), 85

calculate_project_score_values() (work-front.versions.unsupported.Project method),323

calculate_sharing() (work-front.versions.unsupported.AccessLevelmethod), 154

calculate_timeline() (work-front.versions.unsupported.Project method),323

calculate_timeline() (work-front.versions.unsupported.Template method),374

calculate_timeline() (workfront.versions.v40.Projectmethod), 85

calculate_url() (workfront.versions.unsupported.ExternalSectionmethod), 261

calculate_urls() (workfront.versions.unsupported.ExternalSectionmethod), 262

calculated_url (workfront.versions.unsupported.ExternalSectionattribute), 262

calendar (workfront.versions.unsupported.AccessTokenattribute), 162

calendar (workfront.versions.unsupported.CalendarSectionattribute), 208

calendar_event (workfront.versions.unsupported.CalendarFeedEntryattribute), 205

calendar_event_id (work-

Index 459

Page 464: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

front.versions.unsupported.CalendarFeedEntryattribute), 205

calendar_events (work-front.versions.unsupported.CalendarSectionattribute), 208

calendar_id (workfront.versions.unsupported.AccessTokenattribute), 162

calendar_id (workfront.versions.unsupported.CalendarSectionattribute), 208

calendar_info (workfront.versions.unsupported.CalendarPortalSectionattribute), 207

calendar_info_id (work-front.versions.unsupported.CalendarPortalSectionattribute), 207

calendar_portal_section (work-front.versions.unsupported.PortalTabSectionattribute), 314

calendar_portal_section_id (work-front.versions.unsupported.PortalTabSectionattribute), 314

calendar_section (work-front.versions.unsupported.CalendarEventattribute), 204

calendar_section_id (work-front.versions.unsupported.CalendarEventattribute), 204

calendar_section_ids (work-front.versions.unsupported.CalendarFeedEntryattribute), 205

calendar_sections (work-front.versions.unsupported.CalendarInfoattribute), 206

CalendarEvent (class in workfront.versions.unsupported),204

CalendarFeedEntry (class in work-front.versions.unsupported), 205

CalendarInfo (class in workfront.versions.unsupported),206

CalendarPortalSection (class in work-front.versions.unsupported), 207

CalendarSection (class in work-front.versions.unsupported), 208

callable_expressions (work-front.versions.unsupported.CalendarSectionattribute), 208

CallableExpression (class in work-front.versions.unsupported), 209

can_enqueue_export() (work-front.versions.unsupported.BackgroundJobmethod), 198

can_start (workfront.versions.unsupported.Approval at-tribute), 173

can_start (workfront.versions.unsupported.Issue at-tribute), 272

can_start (workfront.versions.unsupported.Task at-tribute), 361

can_start (workfront.versions.unsupported.Work at-tribute), 419

can_start (workfront.versions.v40.Approval attribute), 13can_start (workfront.versions.v40.Issue attribute), 60can_start (workfront.versions.v40.Task attribute), 108can_start (workfront.versions.v40.Work attribute), 144cancel_document_proof() (work-

front.versions.unsupported.Document method),230

cancel_scheduled_migration() (work-front.versions.unsupported.SandboxMigrationmethod), 349

capacity (workfront.versions.unsupported.Iterationattribute), 279

capacity (workfront.versions.v40.Iteration attribute), 65card_location (workfront.versions.unsupported.LayoutTemplateCard

attribute), 288card_location (workfront.versions.unsupported.LayoutTemplateDatePreference

attribute), 288card_type (workfront.versions.unsupported.LayoutTemplateCard

attribute), 288card_type (workfront.versions.unsupported.LayoutTemplateDatePreference

attribute), 288cat_obj_code (workfront.versions.unsupported.Category

attribute), 209cat_obj_code (workfront.versions.v40.Category at-

tribute), 34categories (workfront.versions.unsupported.Customer at-

tribute), 220categories (workfront.versions.v40.Customer attribute),

38Category (class in workfront.versions.unsupported), 209Category (class in workfront.versions.v40), 34category (workfront.versions.unsupported.Approval at-

tribute), 173category (workfront.versions.unsupported.ApprovalProcessAttachable

attribute), 188category (workfront.versions.unsupported.CategoryAccessRule

attribute), 212category (workfront.versions.unsupported.CategoryCascadeRule

attribute), 212category (workfront.versions.unsupported.CategoryParameter

attribute), 213category (workfront.versions.unsupported.Company at-

tribute), 214category (workfront.versions.unsupported.Document at-

tribute), 230category (workfront.versions.unsupported.Expense at-

tribute), 256category (workfront.versions.unsupported.Issue at-

tribute), 272category (workfront.versions.unsupported.Iteration at-

460 Index

Page 465: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

tribute), 279category (workfront.versions.unsupported.MasterTask at-

tribute), 291category (workfront.versions.unsupported.ObjectCategory

attribute), 303category (workfront.versions.unsupported.Portfolio at-

tribute), 315category (workfront.versions.unsupported.Program at-

tribute), 318category (workfront.versions.unsupported.Project at-

tribute), 323category (workfront.versions.unsupported.Task attribute),

362category (workfront.versions.unsupported.Template at-

tribute), 374category (workfront.versions.unsupported.TemplateTask

attribute), 381category (workfront.versions.unsupported.User attribute),

400category (workfront.versions.unsupported.Work at-

tribute), 419category (workfront.versions.v40.Approval attribute), 13category (workfront.versions.v40.CategoryParameter at-

tribute), 35category (workfront.versions.v40.Company attribute), 36category (workfront.versions.v40.Document attribute), 43category (workfront.versions.v40.Expense attribute), 50category (workfront.versions.v40.Issue attribute), 60category (workfront.versions.v40.Iteration attribute), 65category (workfront.versions.v40.Portfolio attribute), 78category (workfront.versions.v40.Program attribute), 81category (workfront.versions.v40.Project attribute), 85category (workfront.versions.v40.Task attribute), 108category (workfront.versions.v40.Template attribute),

118category (workfront.versions.v40.TemplateTask at-

tribute), 123category (workfront.versions.v40.User attribute), 135category (workfront.versions.v40.Work attribute), 144category_access_rules (work-

front.versions.unsupported.Category attribute),210

category_cascade_rule (work-front.versions.unsupported.CategoryCascadeRuleMatchattribute), 213

category_cascade_rule_id (work-front.versions.unsupported.CategoryCascadeRuleMatchattribute), 213

category_cascade_rule_matches (work-front.versions.unsupported.CategoryCascadeRuleattribute), 212

category_cascade_rules (work-front.versions.unsupported.Category attribute),210

category_id (workfront.versions.unsupported.Approvalattribute), 173

category_id (workfront.versions.unsupported.ApprovalProcessAttachableattribute), 188

category_id (workfront.versions.unsupported.CategoryAccessRuleattribute), 212

category_id (workfront.versions.unsupported.CategoryCascadeRuleattribute), 212

category_id (workfront.versions.unsupported.CategoryParameterattribute), 213

category_id (workfront.versions.unsupported.Companyattribute), 214

category_id (workfront.versions.unsupported.Documentattribute), 230

category_id (workfront.versions.unsupported.Expense at-tribute), 256

category_id (workfront.versions.unsupported.Issueattribute), 273

category_id (workfront.versions.unsupported.Iteration at-tribute), 279

category_id (workfront.versions.unsupported.MasterTaskattribute), 291

category_id (workfront.versions.unsupported.ObjectCategoryattribute), 303

category_id (workfront.versions.unsupported.Portfolioattribute), 315

category_id (workfront.versions.unsupported.Program at-tribute), 318

category_id (workfront.versions.unsupported.Project at-tribute), 323

category_id (workfront.versions.unsupported.Taskattribute), 362

category_id (workfront.versions.unsupported.Templateattribute), 374

category_id (workfront.versions.unsupported.TemplateTaskattribute), 381

category_id (workfront.versions.unsupported.Userattribute), 400

category_id (workfront.versions.unsupported.Work at-tribute), 419

category_id (workfront.versions.v40.Approval attribute),13

category_id (workfront.versions.v40.CategoryParameterattribute), 35

category_id (workfront.versions.v40.Company attribute),36

category_id (workfront.versions.v40.Document at-tribute), 43

category_id (workfront.versions.v40.Expense attribute),50

category_id (workfront.versions.v40.Issue attribute), 60category_id (workfront.versions.v40.Iteration attribute),

65category_id (workfront.versions.v40.Portfolio attribute),

Index 461

Page 466: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

79category_id (workfront.versions.v40.Program attribute),

81category_id (workfront.versions.v40.Project attribute), 85category_id (workfront.versions.v40.Task attribute), 108category_id (workfront.versions.v40.Template attribute),

118category_id (workfront.versions.v40.TemplateTask at-

tribute), 123category_id (workfront.versions.v40.User attribute), 135category_id (workfront.versions.v40.Work attribute), 144category_order (workfront.versions.unsupported.ObjectCategory

attribute), 303category_parameter (work-

front.versions.unsupported.CategoryParameterExpressionattribute), 214

category_parameter (work-front.versions.v40.CategoryParameterExpressionattribute), 36

category_parameter_expression (work-front.versions.unsupported.CategoryParameterattribute), 213

category_parameter_expression (work-front.versions.v40.CategoryParameter at-tribute), 35

category_parameters (work-front.versions.unsupported.Category attribute),210

category_parameters (workfront.versions.v40.Categoryattribute), 34

CategoryAccessRule (class in work-front.versions.unsupported), 212

CategoryCascadeRule (class in work-front.versions.unsupported), 212

CategoryCascadeRuleMatch (class in work-front.versions.unsupported), 213

CategoryParameter (class in work-front.versions.unsupported), 213

CategoryParameter (class in workfront.versions.v40), 35CategoryParameterExpression (class in work-

front.versions.unsupported), 214CategoryParameterExpression (class in work-

front.versions.v40), 36certificate (workfront.versions.unsupported.SSOOption

attribute), 348change_password_url (work-

front.versions.unsupported.SSOOption at-tribute), 348

change_type (workfront.versions.unsupported.JournalEntryattribute), 281

change_type (workfront.versions.v40.JournalEntryattribute), 67

changed_objects (work-front.versions.unsupported.BackgroundJob

attribute), 198changed_objects (work-

front.versions.v40.BackgroundJob attribute),30

check_delete() (workfront.versions.unsupported.Groupmethod), 265

check_document_tasks() (work-front.versions.unsupported.Document method),230

check_in() (workfront.versions.unsupported.Documentmethod), 230

check_license_expiration() (work-front.versions.unsupported.Customer method),220

check_other_user_early_access() (work-front.versions.unsupported.User method),400

check_out() (workfront.versions.unsupported.Documentmethod), 230

checked_out_by (work-front.versions.unsupported.Document at-tribute), 230

checked_out_by (workfront.versions.v40.Document at-tribute), 43

checked_out_by_id (work-front.versions.unsupported.Document at-tribute), 230

checked_out_by_id (workfront.versions.v40.Documentattribute), 43

child (workfront.versions.unsupported.CustomMenuCustomMenuattribute), 218

child_id (workfront.versions.unsupported.CustomMenuCustomMenuattribute), 218

children (workfront.versions.unsupported.Approval at-tribute), 173

children (workfront.versions.unsupported.DocumentFolderattribute), 239

children (workfront.versions.unsupported.Group at-tribute), 265

children (workfront.versions.unsupported.Task attribute),362

children (workfront.versions.unsupported.TemplateTaskattribute), 381

children (workfront.versions.unsupported.Work at-tribute), 419

children (workfront.versions.v40.Approval attribute), 13children (workfront.versions.v40.DocumentFolder

attribute), 47children (workfront.versions.v40.Task attribute), 108children (workfront.versions.v40.TemplateTask at-

tribute), 123children (workfront.versions.v40.Work attribute), 144children_menus (work-

front.versions.unsupported.CustomMenu

462 Index

Page 467: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

attribute), 217city (workfront.versions.unsupported.Customer at-

tribute), 220city (workfront.versions.unsupported.Reseller attribute),

341city (workfront.versions.unsupported.User attribute), 400city (workfront.versions.v40.Customer attribute), 38city (workfront.versions.v40.User attribute), 135classname (workfront.versions.unsupported.MetaRecord

attribute), 294clear_access_rule_preferences() (work-

front.versions.unsupported.AccessLevelmethod), 154

clear_access_rule_preferences() (work-front.versions.unsupported.User method),400

clear_all_custom_tabs() (work-front.versions.unsupported.LayoutTemplatemethod), 286

clear_all_user_custom_tabs() (work-front.versions.unsupported.LayoutTemplatemethod), 286

clear_api_key() (workfront.versions.unsupported.Usermethod), 400

clear_ppmigration_flag() (work-front.versions.unsupported.LayoutTemplatemethod), 286

clear_user_custom_tabs() (work-front.versions.unsupported.LayoutTemplatemethod), 286

cloneable (workfront.versions.unsupported.Customer at-tribute), 220

cloneable (workfront.versions.v40.Customer attribute),38

code (workfront.session.WorkfrontAPIError attribute), 8Collection (class in workfront.meta), 8color (workfront.versions.unsupported.Approval at-

tribute), 173color (workfront.versions.unsupported.CalendarEvent at-

tribute), 205color (workfront.versions.unsupported.CalendarFeedEntry

attribute), 205color (workfront.versions.unsupported.CalendarSection

attribute), 208color (workfront.versions.unsupported.CustomEnum at-

tribute), 215color (workfront.versions.unsupported.MessageArg at-

tribute), 294color (workfront.versions.unsupported.Milestone at-

tribute), 295color (workfront.versions.unsupported.Task attribute),

362color (workfront.versions.unsupported.Work attribute),

419

color (workfront.versions.v40.Approval attribute), 13color (workfront.versions.v40.CustomEnum attribute), 37color (workfront.versions.v40.MessageArg attribute), 71color (workfront.versions.v40.Milestone attribute), 71color (workfront.versions.v40.Task attribute), 108color (workfront.versions.v40.Work attribute), 144column_number (work-

front.versions.unsupported.ImportRow at-tribute), 270

combined_updates (work-front.versions.unsupported.Update attribute),397

combined_updates (workfront.versions.v40.Update at-tribute), 133

comment (workfront.versions.unsupported.CustomerFeedbackattribute), 228

commit_date (workfront.versions.unsupported.Approvalattribute), 173

commit_date (workfront.versions.unsupported.Issue at-tribute), 273

commit_date (workfront.versions.unsupported.Task at-tribute), 362

commit_date (workfront.versions.unsupported.Work at-tribute), 419

commit_date (workfront.versions.v40.Approval at-tribute), 13

commit_date (workfront.versions.v40.Issue attribute), 60commit_date (workfront.versions.v40.Task attribute), 108commit_date (workfront.versions.v40.Work attribute),

144commit_date_range (work-

front.versions.unsupported.Approval attribute),173

commit_date_range (work-front.versions.unsupported.Issue attribute),273

commit_date_range (work-front.versions.unsupported.Task attribute),362

commit_date_range (work-front.versions.unsupported.Work attribute),419

commit_date_range (workfront.versions.v40.Approvalattribute), 13

commit_date_range (workfront.versions.v40.Issueattribute), 60

commit_date_range (workfront.versions.v40.Task at-tribute), 108

commit_date_range (workfront.versions.v40.Workattribute), 144

common_display_order (work-front.versions.unsupported.MetaRecord at-tribute), 294

Company (class in workfront.versions.unsupported), 214

Index 463

Page 468: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

Company (class in workfront.versions.v40), 36company (workfront.versions.unsupported.AnnouncementRecipient

attribute), 167company (workfront.versions.unsupported.Approval at-

tribute), 173company (workfront.versions.unsupported.ParameterValue

attribute), 305company (workfront.versions.unsupported.Project

attribute), 323company (workfront.versions.unsupported.Rate at-

tribute), 337company (workfront.versions.unsupported.Template at-

tribute), 374company (workfront.versions.unsupported.User at-

tribute), 400company (workfront.versions.v40.Approval attribute), 13company (workfront.versions.v40.Project attribute), 85company (workfront.versions.v40.Rate attribute), 96company (workfront.versions.v40.User attribute), 135company_id (workfront.versions.unsupported.AnnouncementRecipient

attribute), 167company_id (workfront.versions.unsupported.Approval

attribute), 173company_id (workfront.versions.unsupported.ParameterValue

attribute), 305company_id (workfront.versions.unsupported.Project at-

tribute), 323company_id (workfront.versions.unsupported.Rate

attribute), 337company_id (workfront.versions.unsupported.Template

attribute), 374company_id (workfront.versions.unsupported.User at-

tribute), 400company_id (workfront.versions.v40.Approval attribute),

13company_id (workfront.versions.v40.Project attribute),

85company_id (workfront.versions.v40.Rate attribute), 96company_id (workfront.versions.v40.User attribute), 135complete_external_user_registration() (work-

front.versions.unsupported.User method),400

complete_user_registration() (work-front.versions.unsupported.User method),400

complete_user_registration() (work-front.versions.v40.User method), 135

completion_date (work-front.versions.unsupported.DocumentRequestattribute), 244

completion_day (work-front.versions.unsupported.Template attribute),374

completion_day (work-

front.versions.unsupported.TemplateTaskattribute), 381

completion_day (workfront.versions.v40.Templateattribute), 118

completion_day (workfront.versions.v40.TemplateTaskattribute), 123

completion_pending_date (work-front.versions.unsupported.Approval attribute),173

completion_pending_date (work-front.versions.unsupported.Task attribute),362

completion_pending_date (work-front.versions.unsupported.Work attribute),419

completion_pending_date (work-front.versions.v40.Approval attribute), 13

completion_pending_date (workfront.versions.v40.Taskattribute), 108

completion_pending_date (workfront.versions.v40.Workattribute), 144

completion_type (work-front.versions.unsupported.Approval attribute),173

completion_type (work-front.versions.unsupported.Project attribute),323

completion_type (work-front.versions.unsupported.Template attribute),374

completion_type (workfront.versions.v40.Approval at-tribute), 13

completion_type (workfront.versions.v40.Project at-tribute), 85

completion_type (workfront.versions.v40.Template at-tribute), 118

component_key (work-front.versions.unsupported.ComponentKeyattribute), 215

ComponentKey (class in work-front.versions.unsupported), 215

condition (workfront.versions.unsupported.Approval at-tribute), 173

condition (workfront.versions.unsupported.Baseline at-tribute), 200

condition (workfront.versions.unsupported.Issue at-tribute), 273

condition (workfront.versions.unsupported.Projectattribute), 323

condition (workfront.versions.unsupported.Task at-tribute), 362

condition (workfront.versions.unsupported.Work at-tribute), 419

condition (workfront.versions.v40.Approval attribute), 13

464 Index

Page 469: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

condition (workfront.versions.v40.Baseline attribute), 31condition (workfront.versions.v40.Issue attribute), 60condition (workfront.versions.v40.Project attribute), 85condition (workfront.versions.v40.Task attribute), 108condition (workfront.versions.v40.Work attribute), 144condition_type (workfront.versions.unsupported.Approval

attribute), 173condition_type (workfront.versions.unsupported.Project

attribute), 323condition_type (workfront.versions.unsupported.Template

attribute), 374condition_type (workfront.versions.v40.Approval at-

tribute), 13condition_type (workfront.versions.v40.Project at-

tribute), 85configuration (workfront.versions.unsupported.DocumentProvider

attribute), 242configuration (workfront.versions.unsupported.DocumentProviderConfig

attribute), 243constraint_date (workfront.versions.unsupported.Approval

attribute), 173constraint_date (workfront.versions.unsupported.Task at-

tribute), 362constraint_date (workfront.versions.unsupported.Work

attribute), 419constraint_date (workfront.versions.v40.Approval at-

tribute), 13constraint_date (workfront.versions.v40.Task attribute),

108constraint_date (workfront.versions.v40.Work attribute),

144constraint_day (workfront.versions.unsupported.TemplateTask

attribute), 381constraint_day (workfront.versions.v40.TemplateTask at-

tribute), 123content (workfront.versions.unsupported.Announcement

attribute), 165content (workfront.versions.unsupported.EmailTemplate

attribute), 250controller_class (workfront.versions.unsupported.PortalSection

attribute), 308convert_to_project() (work-

front.versions.unsupported.Issue method),273

convert_to_project() (work-front.versions.unsupported.Task method),362

convert_to_task() (workfront.versions.unsupported.Issuemethod), 273

convert_to_task() (workfront.versions.v40.Issue method),60

converted_op_task_entry_date (work-front.versions.unsupported.Approval attribute),173

converted_op_task_entry_date (work-front.versions.unsupported.Project attribute),323

converted_op_task_entry_date (work-front.versions.unsupported.Task attribute),362

converted_op_task_entry_date (work-front.versions.unsupported.Work attribute),419

converted_op_task_entry_date (work-front.versions.v40.Approval attribute), 14

converted_op_task_entry_date (work-front.versions.v40.Project attribute), 85

converted_op_task_entry_date (work-front.versions.v40.Task attribute), 109

converted_op_task_entry_date (work-front.versions.v40.Work attribute), 144

converted_op_task_name (work-front.versions.unsupported.Approval attribute),173

converted_op_task_name (work-front.versions.unsupported.Project attribute),323

converted_op_task_name (work-front.versions.unsupported.Task attribute),362

converted_op_task_name (work-front.versions.unsupported.Work attribute),419

converted_op_task_name (work-front.versions.v40.Approval attribute), 14

converted_op_task_name (work-front.versions.v40.Project attribute), 85

converted_op_task_name (workfront.versions.v40.Taskattribute), 109

converted_op_task_name (workfront.versions.v40.Workattribute), 144

converted_op_task_originator (work-front.versions.unsupported.Approval attribute),174

converted_op_task_originator (work-front.versions.unsupported.Project attribute),323

converted_op_task_originator (work-front.versions.unsupported.Task attribute),362

converted_op_task_originator (work-front.versions.unsupported.Work attribute),419

converted_op_task_originator (work-front.versions.v40.Approval attribute), 14

converted_op_task_originator (work-front.versions.v40.Project attribute), 85

converted_op_task_originator (work-

Index 465

Page 470: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

front.versions.v40.Task attribute), 109converted_op_task_originator (work-

front.versions.v40.Work attribute), 144converted_op_task_originator_id (work-

front.versions.unsupported.Approval attribute),174

converted_op_task_originator_id (work-front.versions.unsupported.Project attribute),323

converted_op_task_originator_id (work-front.versions.unsupported.Task attribute),362

converted_op_task_originator_id (work-front.versions.unsupported.Work attribute),419

converted_op_task_originator_id (work-front.versions.v40.Approval attribute), 14

converted_op_task_originator_id (work-front.versions.v40.Project attribute), 85

converted_op_task_originator_id (work-front.versions.v40.Task attribute), 109

converted_op_task_originator_id (work-front.versions.v40.Work attribute), 144

copy_document_to_temp_dir() (work-front.versions.unsupported.Document method),230

core_action (workfront.versions.unsupported.AccessLevelPermissionsattribute), 157

core_action (workfront.versions.unsupported.AccessRuleattribute), 159

core_action (workfront.versions.unsupported.AccessRulePreferenceattribute), 160

core_action (workfront.versions.v40.AccessRule at-tribute), 9

cost_amount (workfront.versions.unsupported.Approvalattribute), 174

cost_amount (workfront.versions.unsupported.MasterTaskattribute), 291

cost_amount (workfront.versions.unsupported.Task at-tribute), 362

cost_amount (workfront.versions.unsupported.TemplateTaskattribute), 381

cost_amount (workfront.versions.unsupported.Work at-tribute), 419

cost_amount (workfront.versions.v40.Approval at-tribute), 14

cost_amount (workfront.versions.v40.Task attribute), 109cost_amount (workfront.versions.v40.TemplateTask at-

tribute), 123cost_amount (workfront.versions.v40.Work attribute),

144cost_per_hour (workfront.versions.unsupported.Role at-

tribute), 345cost_per_hour (workfront.versions.unsupported.User at-

tribute), 401cost_per_hour (workfront.versions.v40.Role attribute), 99cost_per_hour (workfront.versions.v40.User attribute),

136cost_type (workfront.versions.unsupported.Approval at-

tribute), 174cost_type (workfront.versions.unsupported.MasterTask

attribute), 291cost_type (workfront.versions.unsupported.Task at-

tribute), 362cost_type (workfront.versions.unsupported.TemplateTask

attribute), 382cost_type (workfront.versions.unsupported.Work at-

tribute), 419cost_type (workfront.versions.v40.Approval attribute), 14cost_type (workfront.versions.v40.Task attribute), 109cost_type (workfront.versions.v40.TemplateTask at-

tribute), 123cost_type (workfront.versions.v40.Work attribute), 144count_as_revenue (work-

front.versions.unsupported.HourType at-tribute), 269

count_as_revenue (workfront.versions.v40.HourType at-tribute), 57

country (workfront.versions.unsupported.Customer at-tribute), 220

country (workfront.versions.unsupported.Reseller at-tribute), 341

country (workfront.versions.unsupported.User attribute),401

country (workfront.versions.v40.Customer attribute), 38country (workfront.versions.v40.User attribute), 136cpi (workfront.versions.unsupported.Approval attribute),

174cpi (workfront.versions.unsupported.Baseline attribute),

200cpi (workfront.versions.unsupported.BaselineTask

attribute), 202cpi (workfront.versions.unsupported.Project attribute),

323cpi (workfront.versions.unsupported.Task attribute), 362cpi (workfront.versions.unsupported.Work attribute), 419cpi (workfront.versions.v40.Approval attribute), 14cpi (workfront.versions.v40.Baseline attribute), 31cpi (workfront.versions.v40.BaselineTask attribute), 32cpi (workfront.versions.v40.Project attribute), 85cpi (workfront.versions.v40.Task attribute), 109cpi (workfront.versions.v40.Work attribute), 145create_document() (work-

front.versions.unsupported.Document method),231

create_first_calendar() (work-front.versions.unsupported.CalendarInfomethod), 206

466 Index

Page 471: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

create_project_section() (work-front.versions.unsupported.CalendarInfomethod), 206

create_project_with_override() (work-front.versions.unsupported.Project method),323

create_proof (workfront.versions.unsupported.DocumentVersionattribute), 247

create_proof() (workfront.versions.unsupported.Documentmethod), 231

create_proof_flag (work-front.versions.unsupported.Document at-tribute), 231

create_public_session() (work-front.versions.unsupported.Authenticationmethod), 194

create_schema() (work-front.versions.unsupported.Authenticationmethod), 194

create_session() (work-front.versions.unsupported.Authenticationmethod), 194

create_unsupported_worker_access_level_for_testing()(workfront.versions.unsupported.AccessLevelmethod), 154

criteria (workfront.versions.unsupported.TimedNotificationattribute), 386

crop_unsaved_avatar_file() (work-front.versions.unsupported.Avatar method),196

csi (workfront.versions.unsupported.Approval attribute),174

csi (workfront.versions.unsupported.Baseline attribute),200

csi (workfront.versions.unsupported.BaselineTask at-tribute), 202

csi (workfront.versions.unsupported.Project attribute),323

csi (workfront.versions.unsupported.Task attribute), 362csi (workfront.versions.unsupported.Work attribute), 419csi (workfront.versions.v40.Approval attribute), 14csi (workfront.versions.v40.Baseline attribute), 31csi (workfront.versions.v40.BaselineTask attribute), 32csi (workfront.versions.v40.Project attribute), 85csi (workfront.versions.v40.Task attribute), 109csi (workfront.versions.v40.Work attribute), 145currency (workfront.versions.unsupported.Approval at-

tribute), 174currency (workfront.versions.unsupported.Customer at-

tribute), 220currency (workfront.versions.unsupported.ExchangeRate

attribute), 255currency (workfront.versions.unsupported.PortalSection

attribute), 308

currency (workfront.versions.unsupported.Portfolio at-tribute), 315

currency (workfront.versions.unsupported.Project at-tribute), 324

currency (workfront.versions.unsupported.Template at-tribute), 374

currency (workfront.versions.v40.Approval attribute), 14currency (workfront.versions.v40.Customer attribute), 38currency (workfront.versions.v40.ExchangeRate at-

tribute), 50currency (workfront.versions.v40.Portfolio attribute), 79currency (workfront.versions.v40.Project attribute), 85currency (workfront.versions.v40.Template attribute),

118current_approval_step (work-

front.versions.unsupported.Approval attribute),174

current_approval_step (work-front.versions.unsupported.ApprovalProcessAttachableattribute), 189

current_approval_step (work-front.versions.unsupported.Issue attribute),273

current_approval_step (work-front.versions.unsupported.Project attribute),324

current_approval_step (work-front.versions.unsupported.Task attribute),362

current_approval_step (work-front.versions.unsupported.Work attribute),420

current_approval_step (workfront.versions.v40.Approvalattribute), 14

current_approval_step (workfront.versions.v40.Issue at-tribute), 60

current_approval_step (workfront.versions.v40.Projectattribute), 86

current_approval_step (workfront.versions.v40.Task at-tribute), 109

current_approval_step (workfront.versions.v40.Work at-tribute), 145

current_approval_step_id (work-front.versions.unsupported.Approval attribute),174

current_approval_step_id (work-front.versions.unsupported.ApprovalProcessAttachableattribute), 189

current_approval_step_id (work-front.versions.unsupported.Issue attribute),273

current_approval_step_id (work-front.versions.unsupported.Project attribute),324

Index 467

Page 472: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

current_approval_step_id (work-front.versions.unsupported.Task attribute),363

current_approval_step_id (work-front.versions.unsupported.Work attribute),420

current_approval_step_id (work-front.versions.v40.Approval attribute), 14

current_approval_step_id (workfront.versions.v40.Issueattribute), 60

current_approval_step_id (work-front.versions.v40.Project attribute), 86

current_approval_step_id (workfront.versions.v40.Taskattribute), 109

current_approval_step_id (workfront.versions.v40.Workattribute), 145

current_status_duration (work-front.versions.unsupported.Approval attribute),174

current_status_duration (work-front.versions.unsupported.Issue attribute),273

current_status_duration (work-front.versions.unsupported.Work attribute),420

current_status_duration (work-front.versions.v40.Approval attribute), 14

current_status_duration (workfront.versions.v40.Issue at-tribute), 60

current_status_duration (workfront.versions.v40.Work at-tribute), 145

current_version (workfront.versions.unsupported.Documentattribute), 231

current_version (workfront.versions.v40.Document at-tribute), 43

current_version_id (work-front.versions.unsupported.Document at-tribute), 231

current_version_id (workfront.versions.v40.Documentattribute), 43

custom_enum (workfront.versions.unsupported.CustomEnumOrderattribute), 217

custom_enum_id (work-front.versions.unsupported.CustomEnumOrderattribute), 217

custom_enum_orders (work-front.versions.unsupported.CustomEnumattribute), 216

custom_enum_types (work-front.versions.unsupported.Customer attribute),220

custom_enum_types (workfront.versions.v40.Customerattribute), 38

custom_enums (workfront.versions.unsupported.Customer

attribute), 220custom_enums (workfront.versions.v40.Customer at-

tribute), 38custom_expression (work-

front.versions.unsupported.CategoryParameterattribute), 213

custom_expression (work-front.versions.unsupported.CategoryParameterExpressionattribute), 214

custom_expression (work-front.versions.v40.CategoryParameter at-tribute), 35

custom_expression (work-front.versions.v40.CategoryParameterExpressionattribute), 36

custom_label (workfront.versions.unsupported.LayoutTemplateCardattribute), 288

custom_menus (workfront.versions.unsupported.Customerattribute), 220

custom_menus (workfront.versions.unsupported.PortalProfileattribute), 307

custom_properties (work-front.versions.unsupported.EventHandlerattribute), 254

custom_quarters (work-front.versions.unsupported.Customer attribute),220

custom_tabs (workfront.versions.unsupported.Customerattribute), 220

custom_tabs (workfront.versions.unsupported.PortalProfileattribute), 307

custom_tabs (workfront.versions.unsupported.User at-tribute), 401

CustomEnum (class in workfront.versions.unsupported),215

CustomEnum (class in workfront.versions.v40), 37CustomEnumOrder (class in work-

front.versions.unsupported), 217Customer (class in workfront.versions.unsupported), 219Customer (class in workfront.versions.v40), 38customer (workfront.versions.unsupported.AccessLevel

attribute), 154customer (workfront.versions.unsupported.AccessLevelPermissions

attribute), 157customer (workfront.versions.unsupported.AccessRequest

attribute), 158customer (workfront.versions.unsupported.AccessRule

attribute), 159customer (workfront.versions.unsupported.AccessRulePreference

attribute), 160customer (workfront.versions.unsupported.AccessScope

attribute), 161customer (workfront.versions.unsupported.AccessScopeAction

attribute), 162

468 Index

Page 473: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

customer (workfront.versions.unsupported.AccessTokenattribute), 162

customer (workfront.versions.unsupported.Acknowledgementattribute), 164

customer (workfront.versions.unsupported.AnnouncementOptOutattribute), 166

customer (workfront.versions.unsupported.AnnouncementRecipientattribute), 167

customer (workfront.versions.unsupported.AppEvent at-tribute), 168

customer (workfront.versions.unsupported.Approval at-tribute), 174

customer (workfront.versions.unsupported.ApprovalPathattribute), 187

customer (workfront.versions.unsupported.ApprovalProcessattribute), 187

customer (workfront.versions.unsupported.ApprovalStepattribute), 189

customer (workfront.versions.unsupported.ApproverStatusattribute), 190

customer (workfront.versions.unsupported.Assignmentattribute), 191

customer (workfront.versions.unsupported.AuditLoginAsSessionattribute), 193

customer (workfront.versions.unsupported.AwaitingApprovalattribute), 197

customer (workfront.versions.unsupported.BackgroundJobattribute), 198

customer (workfront.versions.unsupported.Baseline at-tribute), 200

customer (workfront.versions.unsupported.BaselineTaskattribute), 202

customer (workfront.versions.unsupported.BillingRecordattribute), 203

customer (workfront.versions.unsupported.Branding at-tribute), 204

customer (workfront.versions.unsupported.BurndownEventattribute), 204

customer (workfront.versions.unsupported.CalendarEventattribute), 205

customer (workfront.versions.unsupported.CalendarInfoattribute), 207

customer (workfront.versions.unsupported.CalendarPortalSectionattribute), 207

customer (workfront.versions.unsupported.CalendarSectionattribute), 208

customer (workfront.versions.unsupported.CallableExpressionattribute), 209

customer (workfront.versions.unsupported.Category at-tribute), 210

customer (workfront.versions.unsupported.CategoryAccessRuleattribute), 212

customer (workfront.versions.unsupported.CategoryCascadeRuleattribute), 212

customer (workfront.versions.unsupported.CategoryCascadeRuleMatchattribute), 213

customer (workfront.versions.unsupported.CategoryParameterattribute), 213

customer (workfront.versions.unsupported.CategoryParameterExpressionattribute), 214

customer (workfront.versions.unsupported.Company at-tribute), 214

customer (workfront.versions.unsupported.CustomEnumattribute), 216

customer (workfront.versions.unsupported.CustomEnumOrderattribute), 217

customer (workfront.versions.unsupported.CustomerPrefattribute), 228

customer (workfront.versions.unsupported.CustomerTimelineCalcattribute), 229

customer (workfront.versions.unsupported.CustomMenuattribute), 217

customer (workfront.versions.unsupported.CustomMenuCustomMenuattribute), 218

customer (workfront.versions.unsupported.CustomQuarterattribute), 219

customer (workfront.versions.unsupported.CustsSectionsattribute), 229

customer (workfront.versions.unsupported.DocsFoldersattribute), 229

customer (workfront.versions.unsupported.Document at-tribute), 231

customer (workfront.versions.unsupported.DocumentApprovalattribute), 238

customer (workfront.versions.unsupported.DocumentFolderattribute), 239

customer (workfront.versions.unsupported.DocumentProviderattribute), 242

customer (workfront.versions.unsupported.DocumentProviderConfigattribute), 243

customer (workfront.versions.unsupported.DocumentProviderMetadataattribute), 243

customer (workfront.versions.unsupported.DocumentRequestattribute), 244

customer (workfront.versions.unsupported.DocumentShareattribute), 246

customer (workfront.versions.unsupported.DocumentVersionattribute), 247

customer (workfront.versions.unsupported.EmailTemplateattribute), 250

customer (workfront.versions.unsupported.Endorsementattribute), 251

customer (workfront.versions.unsupported.EndorsementShareattribute), 253

customer (workfront.versions.unsupported.EventHandlerattribute), 254

customer (workfront.versions.unsupported.EventSubscriptionattribute), 255

Index 469

Page 474: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

customer (workfront.versions.unsupported.ExchangeRateattribute), 255

customer (workfront.versions.unsupported.Expense at-tribute), 256

customer (workfront.versions.unsupported.ExpenseTypeattribute), 259

customer (workfront.versions.unsupported.ExternalSectionattribute), 262

customer (workfront.versions.unsupported.Favorite at-tribute), 263

customer (workfront.versions.unsupported.FinancialDataattribute), 264

customer (workfront.versions.unsupported.Group at-tribute), 265

customer (workfront.versions.unsupported.Hour at-tribute), 267

customer (workfront.versions.unsupported.HourType at-tribute), 269

customer (workfront.versions.unsupported.ImportRowattribute), 270

customer (workfront.versions.unsupported.ImportTemplateattribute), 270

customer (workfront.versions.unsupported.InstalledDDItemattribute), 270

customer (workfront.versions.unsupported.IPRange at-tribute), 269

customer (workfront.versions.unsupported.Issue at-tribute), 273

customer (workfront.versions.unsupported.Iteration at-tribute), 279

customer (workfront.versions.unsupported.JournalEntryattribute), 282

customer (workfront.versions.unsupported.JournalFieldattribute), 285

customer (workfront.versions.unsupported.LayoutTemplateattribute), 286

customer (workfront.versions.unsupported.LayoutTemplateCardattribute), 288

customer (workfront.versions.unsupported.LayoutTemplateDatePreferenceattribute), 288

customer (workfront.versions.unsupported.LayoutTemplatePageattribute), 289

customer (workfront.versions.unsupported.LicenseOrderattribute), 289

customer (workfront.versions.unsupported.Like at-tribute), 290

customer (workfront.versions.unsupported.LinkedFolderattribute), 290

customer (workfront.versions.unsupported.MasterTaskattribute), 292

customer (workfront.versions.unsupported.Milestone at-tribute), 295

customer (workfront.versions.unsupported.MilestonePathattribute), 295

customer (workfront.versions.unsupported.NonWorkDayattribute), 296

customer (workfront.versions.unsupported.Note at-tribute), 298

customer (workfront.versions.unsupported.NoteTag at-tribute), 301

customer (workfront.versions.unsupported.NotificationRecordattribute), 301

customer (workfront.versions.unsupported.ObjectCategoryattribute), 303

customer (workfront.versions.unsupported.Parameter at-tribute), 303

customer (workfront.versions.unsupported.ParameterGroupattribute), 304

customer (workfront.versions.unsupported.ParameterOptionattribute), 304

customer (workfront.versions.unsupported.ParameterValueattribute), 305

customer (workfront.versions.unsupported.PopAccountattribute), 307

customer (workfront.versions.unsupported.PortalProfileattribute), 307

customer (workfront.versions.unsupported.PortalSectionattribute), 308

customer (workfront.versions.unsupported.PortalTab at-tribute), 313

customer (workfront.versions.unsupported.PortalTabSectionattribute), 314

customer (workfront.versions.unsupported.Portfolio at-tribute), 315

customer (workfront.versions.unsupported.Predecessorattribute), 317

customer (workfront.versions.unsupported.Preference at-tribute), 317

customer (workfront.versions.unsupported.Program at-tribute), 318

customer (workfront.versions.unsupported.Projectattribute), 324

customer (workfront.versions.unsupported.ProjectUserattribute), 332

customer (workfront.versions.unsupported.ProjectUserRoleattribute), 333

customer (workfront.versions.unsupported.QueueDef at-tribute), 333

customer (workfront.versions.unsupported.QueueTopicattribute), 335

customer (workfront.versions.unsupported.QueueTopicGroupattribute), 336

customer (workfront.versions.unsupported.Rate at-tribute), 337

customer (workfront.versions.unsupported.Recent at-tribute), 337

customer (workfront.versions.unsupported.RecentUpdateattribute), 339

470 Index

Page 475: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

customer (workfront.versions.unsupported.RecurrenceRuleattribute), 340

customer (workfront.versions.unsupported.ReportFolderattribute), 341

customer (workfront.versions.unsupported.ReservedTimeattribute), 342

customer (workfront.versions.unsupported.ResourceAllocationattribute), 342

customer (workfront.versions.unsupported.ResourcePoolattribute), 343

customer (workfront.versions.unsupported.Risk at-tribute), 343

customer (workfront.versions.unsupported.RiskType at-tribute), 344

customer (workfront.versions.unsupported.Role at-tribute), 345

customer (workfront.versions.unsupported.RoutingRuleattribute), 346

customer (workfront.versions.unsupported.S3Migrationattribute), 347

customer (workfront.versions.unsupported.SandboxMigrationattribute), 349

customer (workfront.versions.unsupported.Schedule at-tribute), 350

customer (workfront.versions.unsupported.ScheduledReportattribute), 352

customer (workfront.versions.unsupported.ScoreCard at-tribute), 354

customer (workfront.versions.unsupported.ScoreCardAnswerattribute), 355

customer (workfront.versions.unsupported.ScoreCardOptionattribute), 355

customer (workfront.versions.unsupported.ScoreCardQuestionattribute), 356

customer (workfront.versions.unsupported.SecurityAncestorattribute), 357

customer (workfront.versions.unsupported.Sequence at-tribute), 357

customer (workfront.versions.unsupported.SharingSettingsattribute), 357

customer (workfront.versions.unsupported.SSOMappingattribute), 347

customer (workfront.versions.unsupported.SSOMappingRuleattribute), 347

customer (workfront.versions.unsupported.SSOOptionattribute), 348

customer (workfront.versions.unsupported.StepApproverattribute), 358

customer (workfront.versions.unsupported.Task at-tribute), 363

customer (workfront.versions.unsupported.Team at-tribute), 371

customer (workfront.versions.unsupported.TeamMemberattribute), 373

customer (workfront.versions.unsupported.TeamMemberRoleattribute), 373

customer (workfront.versions.unsupported.Template at-tribute), 374

customer (workfront.versions.unsupported.TemplateAssignmentattribute), 379

customer (workfront.versions.unsupported.TemplatePredecessorattribute), 380

customer (workfront.versions.unsupported.TemplateTaskattribute), 382

customer (workfront.versions.unsupported.TemplateUserattribute), 386

customer (workfront.versions.unsupported.TemplateUserRoleattribute), 386

customer (workfront.versions.unsupported.TimedNotificationattribute), 386

customer (workfront.versions.unsupported.Timesheet at-tribute), 387

customer (workfront.versions.unsupported.TimesheetProfileattribute), 389

customer (workfront.versions.unsupported.TimesheetTemplateattribute), 390

customer (workfront.versions.unsupported.UIFilter at-tribute), 391

customer (workfront.versions.unsupported.UIGroupByattribute), 393

customer (workfront.versions.unsupported.UIView at-tribute), 394

customer (workfront.versions.unsupported.User at-tribute), 401

customer (workfront.versions.unsupported.UserActivityattribute), 408

customer (workfront.versions.unsupported.UserAvailabilityattribute), 408

customer (workfront.versions.unsupported.UserDelegationattribute), 409

customer (workfront.versions.unsupported.UserGroupsattribute), 409

customer (workfront.versions.unsupported.UserNote at-tribute), 411

customer (workfront.versions.unsupported.UserObjectPrefattribute), 413

customer (workfront.versions.unsupported.UserPrefValueattribute), 414

customer (workfront.versions.unsupported.WatchListEntryattribute), 416

customer (workfront.versions.unsupported.Work at-tribute), 420

customer (workfront.versions.unsupported.WorkItem at-tribute), 429

customer (workfront.versions.v40.AccessRule attribute),9

customer (workfront.versions.v40.Approval attribute), 14customer (workfront.versions.v40.ApprovalPath at-

Index 471

Page 476: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

tribute), 25customer (workfront.versions.v40.ApprovalProcess at-

tribute), 26customer (workfront.versions.v40.ApprovalStep at-

tribute), 27customer (workfront.versions.v40.ApproverStatus at-

tribute), 27customer (workfront.versions.v40.Assignment attribute),

28customer (workfront.versions.v40.BackgroundJob

attribute), 30customer (workfront.versions.v40.Baseline attribute), 31customer (workfront.versions.v40.BaselineTask at-

tribute), 32customer (workfront.versions.v40.BillingRecord at-

tribute), 34customer (workfront.versions.v40.Category attribute), 34customer (workfront.versions.v40.CategoryParameter at-

tribute), 35customer (workfront.versions.v40.CategoryParameterExpression

attribute), 36customer (workfront.versions.v40.Company attribute), 36customer (workfront.versions.v40.CustomEnum at-

tribute), 37customer (workfront.versions.v40.Document attribute),

43customer (workfront.versions.v40.DocumentApproval at-

tribute), 46customer (workfront.versions.v40.DocumentFolder at-

tribute), 47customer (workfront.versions.v40.DocumentVersion at-

tribute), 48customer (workfront.versions.v40.ExchangeRate at-

tribute), 50customer (workfront.versions.v40.Expense attribute), 50customer (workfront.versions.v40.ExpenseType at-

tribute), 52customer (workfront.versions.v40.Favorite attribute), 53customer (workfront.versions.v40.FinancialData at-

tribute), 54customer (workfront.versions.v40.Group attribute), 55customer (workfront.versions.v40.Hour attribute), 56customer (workfront.versions.v40.HourType attribute),

57customer (workfront.versions.v40.Issue attribute), 60customer (workfront.versions.v40.Iteration attribute), 65customer (workfront.versions.v40.JournalEntry at-

tribute), 67customer (workfront.versions.v40.LayoutTemplate

attribute), 69customer (workfront.versions.v40.Milestone attribute),

71customer (workfront.versions.v40.MilestonePath at-

tribute), 71

customer (workfront.versions.v40.NonWorkDay at-tribute), 72

customer (workfront.versions.v40.Note attribute), 73customer (workfront.versions.v40.NoteTag attribute), 76customer (workfront.versions.v40.Parameter attribute),

76customer (workfront.versions.v40.ParameterGroup at-

tribute), 77customer (workfront.versions.v40.ParameterOption at-

tribute), 78customer (workfront.versions.v40.Portfolio attribute), 79customer (workfront.versions.v40.Predecessor attribute),

80customer (workfront.versions.v40.Program attribute), 81customer (workfront.versions.v40.Project attribute), 86customer (workfront.versions.v40.ProjectUser attribute),

92customer (workfront.versions.v40.ProjectUserRole at-

tribute), 93customer (workfront.versions.v40.QueueDef attribute),

93customer (workfront.versions.v40.QueueTopic attribute),

95customer (workfront.versions.v40.Rate attribute), 96customer (workfront.versions.v40.ReservedTime at-

tribute), 96customer (workfront.versions.v40.ResourceAllocation at-

tribute), 97customer (workfront.versions.v40.ResourcePool at-

tribute), 97customer (workfront.versions.v40.Risk attribute), 98customer (workfront.versions.v40.RiskType attribute), 99customer (workfront.versions.v40.Role attribute), 99customer (workfront.versions.v40.RoutingRule attribute),

100customer (workfront.versions.v40.Schedule attribute),

101customer (workfront.versions.v40.ScoreCard attribute),

102customer (workfront.versions.v40.ScoreCardAnswer at-

tribute), 103customer (workfront.versions.v40.ScoreCardOption at-

tribute), 104customer (workfront.versions.v40.ScoreCardQuestion at-

tribute), 105customer (workfront.versions.v40.StepApprover at-

tribute), 105customer (workfront.versions.v40.Task attribute), 109customer (workfront.versions.v40.Team attribute), 116customer (workfront.versions.v40.TeamMember at-

tribute), 117customer (workfront.versions.v40.Template attribute),

118customer (workfront.versions.v40.TemplateAssignment

472 Index

Page 477: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

attribute), 121customer (workfront.versions.v40.TemplatePredecessor

attribute), 122customer (workfront.versions.v40.TemplateTask at-

tribute), 123customer (workfront.versions.v40.TemplateUser at-

tribute), 127customer (workfront.versions.v40.TemplateUserRole at-

tribute), 127customer (workfront.versions.v40.Timesheet attribute),

128customer (workfront.versions.v40.UIFilter attribute), 129customer (workfront.versions.v40.UIGroupBy attribute),

130customer (workfront.versions.v40.UIView attribute), 132customer (workfront.versions.v40.User attribute), 136customer (workfront.versions.v40.UserActivity attribute),

140customer (workfront.versions.v40.UserNote attribute),

141customer (workfront.versions.v40.UserPrefValue at-

tribute), 142customer (workfront.versions.v40.Work attribute), 145customer (workfront.versions.v40.WorkItem attribute),

152customer_config_map (work-

front.versions.unsupported.Customer attribute),220

customer_config_map_id (work-front.versions.unsupported.Customer attribute),220

customer_config_map_id (work-front.versions.v40.Customer attribute), 39

customer_guid (workfront.versions.unsupported.CustomerFeedbackattribute), 228

customer_id (workfront.versions.unsupported.AccessLevelattribute), 154

customer_id (workfront.versions.unsupported.AccessLevelPermissionsattribute), 157

customer_id (workfront.versions.unsupported.AccessRequestattribute), 158

customer_id (workfront.versions.unsupported.AccessRuleattribute), 160

customer_id (workfront.versions.unsupported.AccessRulePreferenceattribute), 160

customer_id (workfront.versions.unsupported.AccessScopeattribute), 161

customer_id (workfront.versions.unsupported.AccessScopeActionattribute), 162

customer_id (workfront.versions.unsupported.AccessTokenattribute), 162

customer_id (workfront.versions.unsupported.Acknowledgementattribute), 164

customer_id (workfront.versions.unsupported.AnnouncementOptOut

attribute), 166customer_id (workfront.versions.unsupported.AnnouncementRecipient

attribute), 167customer_id (workfront.versions.unsupported.AppEvent

attribute), 168customer_id (workfront.versions.unsupported.Approval

attribute), 174customer_id (workfront.versions.unsupported.ApprovalPath

attribute), 187customer_id (workfront.versions.unsupported.ApprovalProcess

attribute), 187customer_id (workfront.versions.unsupported.ApprovalStep

attribute), 189customer_id (workfront.versions.unsupported.ApproverStatus

attribute), 190customer_id (workfront.versions.unsupported.Assignment

attribute), 191customer_id (workfront.versions.unsupported.AuditLoginAsSession

attribute), 193customer_id (workfront.versions.unsupported.AwaitingApproval

attribute), 197customer_id (workfront.versions.unsupported.BackgroundJob

attribute), 198customer_id (workfront.versions.unsupported.Baseline

attribute), 200customer_id (workfront.versions.unsupported.BaselineTask

attribute), 202customer_id (workfront.versions.unsupported.BillingRecord

attribute), 203customer_id (workfront.versions.unsupported.Branding

attribute), 204customer_id (workfront.versions.unsupported.BurndownEvent

attribute), 204customer_id (workfront.versions.unsupported.CalendarEvent

attribute), 205customer_id (workfront.versions.unsupported.CalendarInfo

attribute), 207customer_id (workfront.versions.unsupported.CalendarPortalSection

attribute), 207customer_id (workfront.versions.unsupported.CalendarSection

attribute), 208customer_id (workfront.versions.unsupported.CallableExpression

attribute), 209customer_id (workfront.versions.unsupported.Category

attribute), 210customer_id (workfront.versions.unsupported.CategoryAccessRule

attribute), 212customer_id (workfront.versions.unsupported.CategoryCascadeRule

attribute), 212customer_id (workfront.versions.unsupported.CategoryCascadeRuleMatch

attribute), 213customer_id (workfront.versions.unsupported.CategoryParameter

attribute), 213customer_id (workfront.versions.unsupported.CategoryParameterExpression

Index 473

Page 478: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

attribute), 214customer_id (workfront.versions.unsupported.Company

attribute), 214customer_id (workfront.versions.unsupported.CustomEnum

attribute), 216customer_id (workfront.versions.unsupported.CustomEnumOrder

attribute), 217customer_id (workfront.versions.unsupported.CustomerPref

attribute), 228customer_id (workfront.versions.unsupported.CustomerTimelineCalc

attribute), 229customer_id (workfront.versions.unsupported.CustomMenu

attribute), 217customer_id (workfront.versions.unsupported.CustomMenuCustomMenu

attribute), 218customer_id (workfront.versions.unsupported.CustomQuarter

attribute), 219customer_id (workfront.versions.unsupported.CustsSections

attribute), 229customer_id (workfront.versions.unsupported.DocsFolders

attribute), 229customer_id (workfront.versions.unsupported.Document

attribute), 231customer_id (workfront.versions.unsupported.DocumentApproval

attribute), 238customer_id (workfront.versions.unsupported.DocumentFolder

attribute), 239customer_id (workfront.versions.unsupported.DocumentProvider

attribute), 242customer_id (workfront.versions.unsupported.DocumentProviderConfig

attribute), 243customer_id (workfront.versions.unsupported.DocumentProviderMetadata

attribute), 243customer_id (workfront.versions.unsupported.DocumentRequest

attribute), 244customer_id (workfront.versions.unsupported.DocumentShare

attribute), 246customer_id (workfront.versions.unsupported.DocumentTaskStatus

attribute), 247customer_id (workfront.versions.unsupported.DocumentVersion

attribute), 247customer_id (workfront.versions.unsupported.EmailTemplate

attribute), 250customer_id (workfront.versions.unsupported.Endorsement

attribute), 251customer_id (workfront.versions.unsupported.EndorsementShare

attribute), 253customer_id (workfront.versions.unsupported.EventHandler

attribute), 254customer_id (workfront.versions.unsupported.EventSubscription

attribute), 255customer_id (workfront.versions.unsupported.ExchangeRate

attribute), 255customer_id (workfront.versions.unsupported.Expense

attribute), 256customer_id (workfront.versions.unsupported.ExpenseType

attribute), 259customer_id (workfront.versions.unsupported.ExternalSection

attribute), 262customer_id (workfront.versions.unsupported.Favorite

attribute), 263customer_id (workfront.versions.unsupported.FinancialData

attribute), 264customer_id (workfront.versions.unsupported.Group at-

tribute), 266customer_id (workfront.versions.unsupported.Hour at-

tribute), 267customer_id (workfront.versions.unsupported.HourType

attribute), 269customer_id (workfront.versions.unsupported.ImportRow

attribute), 270customer_id (workfront.versions.unsupported.ImportTemplate

attribute), 270customer_id (workfront.versions.unsupported.InstalledDDItem

attribute), 270customer_id (workfront.versions.unsupported.IPRange

attribute), 269customer_id (workfront.versions.unsupported.Issue at-

tribute), 273customer_id (workfront.versions.unsupported.Iteration

attribute), 279customer_id (workfront.versions.unsupported.JournalEntry

attribute), 282customer_id (workfront.versions.unsupported.JournalField

attribute), 285customer_id (workfront.versions.unsupported.LayoutTemplate

attribute), 286customer_id (workfront.versions.unsupported.LayoutTemplateCard

attribute), 288customer_id (workfront.versions.unsupported.LayoutTemplateDatePreference

attribute), 288customer_id (workfront.versions.unsupported.LayoutTemplatePage

attribute), 289customer_id (workfront.versions.unsupported.LicenseOrder

attribute), 289customer_id (workfront.versions.unsupported.Like

attribute), 290customer_id (workfront.versions.unsupported.LinkedFolder

attribute), 290customer_id (workfront.versions.unsupported.MasterTask

attribute), 292customer_id (workfront.versions.unsupported.Milestone

attribute), 295customer_id (workfront.versions.unsupported.MilestonePath

attribute), 295customer_id (workfront.versions.unsupported.NonWorkDay

attribute), 296customer_id (workfront.versions.unsupported.Note at-

474 Index

Page 479: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

tribute), 298customer_id (workfront.versions.unsupported.NoteTag

attribute), 301customer_id (workfront.versions.unsupported.NotificationRecord

attribute), 301customer_id (workfront.versions.unsupported.ObjectCategory

attribute), 303customer_id (workfront.versions.unsupported.Parameter

attribute), 303customer_id (workfront.versions.unsupported.ParameterGroup

attribute), 304customer_id (workfront.versions.unsupported.ParameterOption

attribute), 304customer_id (workfront.versions.unsupported.ParameterValue

attribute), 305customer_id (workfront.versions.unsupported.PopAccount

attribute), 307customer_id (workfront.versions.unsupported.PortalProfile

attribute), 307customer_id (workfront.versions.unsupported.PortalSection

attribute), 308customer_id (workfront.versions.unsupported.PortalTab

attribute), 313customer_id (workfront.versions.unsupported.PortalTabSection

attribute), 314customer_id (workfront.versions.unsupported.Portfolio

attribute), 315customer_id (workfront.versions.unsupported.Predecessor

attribute), 317customer_id (workfront.versions.unsupported.Preference

attribute), 317customer_id (workfront.versions.unsupported.Program

attribute), 318customer_id (workfront.versions.unsupported.Project at-

tribute), 324customer_id (workfront.versions.unsupported.ProjectUser

attribute), 332customer_id (workfront.versions.unsupported.ProjectUserRole

attribute), 333customer_id (workfront.versions.unsupported.QueueDef

attribute), 333customer_id (workfront.versions.unsupported.QueueTopic

attribute), 335customer_id (workfront.versions.unsupported.QueueTopicGroup

attribute), 336customer_id (workfront.versions.unsupported.Rate

attribute), 337customer_id (workfront.versions.unsupported.Recent at-

tribute), 337customer_id (workfront.versions.unsupported.RecentUpdate

attribute), 339customer_id (workfront.versions.unsupported.RecurrenceRule

attribute), 340customer_id (workfront.versions.unsupported.ReportFolder

attribute), 341customer_id (workfront.versions.unsupported.ReservedTime

attribute), 342customer_id (workfront.versions.unsupported.ResourceAllocation

attribute), 342customer_id (workfront.versions.unsupported.ResourcePool

attribute), 343customer_id (workfront.versions.unsupported.Risk

attribute), 344customer_id (workfront.versions.unsupported.RiskType

attribute), 344customer_id (workfront.versions.unsupported.Role at-

tribute), 345customer_id (workfront.versions.unsupported.RoutingRule

attribute), 346customer_id (workfront.versions.unsupported.S3Migration

attribute), 347customer_id (workfront.versions.unsupported.SandboxMigration

attribute), 349customer_id (workfront.versions.unsupported.Schedule

attribute), 350customer_id (workfront.versions.unsupported.ScheduledReport

attribute), 352customer_id (workfront.versions.unsupported.ScoreCard

attribute), 354customer_id (workfront.versions.unsupported.ScoreCardAnswer

attribute), 355customer_id (workfront.versions.unsupported.ScoreCardOption

attribute), 355customer_id (workfront.versions.unsupported.ScoreCardQuestion

attribute), 356customer_id (workfront.versions.unsupported.SearchEvent

attribute), 356customer_id (workfront.versions.unsupported.SecurityAncestor

attribute), 357customer_id (workfront.versions.unsupported.Sequence

attribute), 357customer_id (workfront.versions.unsupported.SharingSettings

attribute), 357customer_id (workfront.versions.unsupported.SSOMapping

attribute), 347customer_id (workfront.versions.unsupported.SSOMappingRule

attribute), 347customer_id (workfront.versions.unsupported.SSOOption

attribute), 348customer_id (workfront.versions.unsupported.SSOUsername

attribute), 349customer_id (workfront.versions.unsupported.StepApprover

attribute), 358customer_id (workfront.versions.unsupported.Task at-

tribute), 363customer_id (workfront.versions.unsupported.Team at-

tribute), 371customer_id (workfront.versions.unsupported.TeamMember

Index 475

Page 480: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

attribute), 373customer_id (workfront.versions.unsupported.TeamMemberRole

attribute), 373customer_id (workfront.versions.unsupported.Template

attribute), 374customer_id (workfront.versions.unsupported.TemplateAssignment

attribute), 379customer_id (workfront.versions.unsupported.TemplatePredecessor

attribute), 380customer_id (workfront.versions.unsupported.TemplateTask

attribute), 382customer_id (workfront.versions.unsupported.TemplateUser

attribute), 386customer_id (workfront.versions.unsupported.TemplateUserRole

attribute), 386customer_id (workfront.versions.unsupported.TimedNotification

attribute), 387customer_id (workfront.versions.unsupported.Timesheet

attribute), 387customer_id (workfront.versions.unsupported.TimesheetProfile

attribute), 389customer_id (workfront.versions.unsupported.TimesheetTemplate

attribute), 390customer_id (workfront.versions.unsupported.UIFilter at-

tribute), 391customer_id (workfront.versions.unsupported.UIGroupBy

attribute), 393customer_id (workfront.versions.unsupported.UIView at-

tribute), 394customer_id (workfront.versions.unsupported.User at-

tribute), 401customer_id (workfront.versions.unsupported.UserActivity

attribute), 408customer_id (workfront.versions.unsupported.UserAvailability

attribute), 408customer_id (workfront.versions.unsupported.UserDelegation

attribute), 409customer_id (workfront.versions.unsupported.UserGroups

attribute), 409customer_id (workfront.versions.unsupported.UserNote

attribute), 411customer_id (workfront.versions.unsupported.UserObjectPref

attribute), 413customer_id (workfront.versions.unsupported.UserPrefValue

attribute), 414customer_id (workfront.versions.unsupported.UsersSections

attribute), 416customer_id (workfront.versions.unsupported.WatchListEntry

attribute), 416customer_id (workfront.versions.unsupported.Work at-

tribute), 420customer_id (workfront.versions.unsupported.WorkItem

attribute), 429customer_id (workfront.versions.v40.AccessRule at-

tribute), 9customer_id (workfront.versions.v40.Approval attribute),

14customer_id (workfront.versions.v40.ApprovalPath at-

tribute), 25customer_id (workfront.versions.v40.ApprovalProcess

attribute), 26customer_id (workfront.versions.v40.ApprovalStep at-

tribute), 27customer_id (workfront.versions.v40.ApproverStatus at-

tribute), 27customer_id (workfront.versions.v40.Assignment at-

tribute), 28customer_id (workfront.versions.v40.BackgroundJob at-

tribute), 30customer_id (workfront.versions.v40.Baseline attribute),

31customer_id (workfront.versions.v40.BaselineTask at-

tribute), 32customer_id (workfront.versions.v40.BillingRecord at-

tribute), 34customer_id (workfront.versions.v40.Category attribute),

34customer_id (workfront.versions.v40.CategoryParameter

attribute), 35customer_id (workfront.versions.v40.CategoryParameterExpression

attribute), 36customer_id (workfront.versions.v40.Company attribute),

36customer_id (workfront.versions.v40.CustomEnum at-

tribute), 37customer_id (workfront.versions.v40.Document at-

tribute), 43customer_id (workfront.versions.v40.DocumentApproval

attribute), 46customer_id (workfront.versions.v40.DocumentFolder

attribute), 47customer_id (workfront.versions.v40.DocumentVersion

attribute), 48customer_id (workfront.versions.v40.ExchangeRate at-

tribute), 50customer_id (workfront.versions.v40.Expense attribute),

50customer_id (workfront.versions.v40.ExpenseType at-

tribute), 52customer_id (workfront.versions.v40.Favorite attribute),

53customer_id (workfront.versions.v40.FinancialData at-

tribute), 54customer_id (workfront.versions.v40.Group attribute), 55customer_id (workfront.versions.v40.Hour attribute), 56customer_id (workfront.versions.v40.HourType at-

tribute), 57customer_id (workfront.versions.v40.Issue attribute), 60

476 Index

Page 481: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

customer_id (workfront.versions.v40.Iteration attribute),65

customer_id (workfront.versions.v40.JournalEntryattribute), 67

customer_id (workfront.versions.v40.LayoutTemplate at-tribute), 69

customer_id (workfront.versions.v40.Milestone at-tribute), 71

customer_id (workfront.versions.v40.MilestonePath at-tribute), 71

customer_id (workfront.versions.v40.NonWorkDay at-tribute), 72

customer_id (workfront.versions.v40.Note attribute), 73customer_id (workfront.versions.v40.NoteTag attribute),

76customer_id (workfront.versions.v40.Parameter at-

tribute), 76customer_id (workfront.versions.v40.ParameterGroup at-

tribute), 77customer_id (workfront.versions.v40.ParameterOption

attribute), 78customer_id (workfront.versions.v40.Portfolio attribute),

79customer_id (workfront.versions.v40.Predecessor at-

tribute), 80customer_id (workfront.versions.v40.Program attribute),

81customer_id (workfront.versions.v40.Project attribute),

86customer_id (workfront.versions.v40.ProjectUser at-

tribute), 92customer_id (workfront.versions.v40.ProjectUserRole at-

tribute), 93customer_id (workfront.versions.v40.QueueDef at-

tribute), 93customer_id (workfront.versions.v40.QueueTopic at-

tribute), 95customer_id (workfront.versions.v40.Rate attribute), 96customer_id (workfront.versions.v40.ReservedTime at-

tribute), 96customer_id (workfront.versions.v40.ResourceAllocation

attribute), 97customer_id (workfront.versions.v40.ResourcePool at-

tribute), 97customer_id (workfront.versions.v40.Risk attribute), 98customer_id (workfront.versions.v40.RiskType attribute),

99customer_id (workfront.versions.v40.Role attribute), 99customer_id (workfront.versions.v40.RoutingRule

attribute), 100customer_id (workfront.versions.v40.Schedule attribute),

101customer_id (workfront.versions.v40.ScoreCard at-

tribute), 102

customer_id (workfront.versions.v40.ScoreCardAnswerattribute), 103

customer_id (workfront.versions.v40.ScoreCardOptionattribute), 104

customer_id (workfront.versions.v40.ScoreCardQuestionattribute), 105

customer_id (workfront.versions.v40.StepApprover at-tribute), 105

customer_id (workfront.versions.v40.Task attribute), 109customer_id (workfront.versions.v40.Team attribute),

116customer_id (workfront.versions.v40.TeamMember at-

tribute), 118customer_id (workfront.versions.v40.Template attribute),

118customer_id (workfront.versions.v40.TemplateAssignment

attribute), 121customer_id (workfront.versions.v40.TemplatePredecessor

attribute), 122customer_id (workfront.versions.v40.TemplateTask at-

tribute), 123customer_id (workfront.versions.v40.TemplateUser at-

tribute), 127customer_id (workfront.versions.v40.TemplateUserRole

attribute), 127customer_id (workfront.versions.v40.Timesheet at-

tribute), 128customer_id (workfront.versions.v40.UIFilter attribute),

129customer_id (workfront.versions.v40.UIGroupBy at-

tribute), 130customer_id (workfront.versions.v40.UIView attribute),

132customer_id (workfront.versions.v40.User attribute), 136customer_id (workfront.versions.v40.UserActivity

attribute), 141customer_id (workfront.versions.v40.UserNote attribute),

141customer_id (workfront.versions.v40.UserPrefValue at-

tribute), 142customer_id (workfront.versions.v40.Work attribute),

145customer_id (workfront.versions.v40.WorkItem at-

tribute), 153customer_name (workfront.versions.unsupported.AnnouncementOptOut

attribute), 166customer_prefs (workfront.versions.unsupported.Customer

attribute), 220customer_recipients (work-

front.versions.unsupported.Announcementattribute), 165

customer_urlconfig_map (work-front.versions.unsupported.Customer attribute),220

Index 477

Page 482: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

customer_urlconfig_map_id (work-front.versions.unsupported.Customer attribute),220

customer_urlconfig_map_id (work-front.versions.v40.Customer attribute), 39

CustomerFeedback (class in work-front.versions.unsupported), 228

CustomerPref (class in workfront.versions.unsupported),228

CustomerPreferences (class in work-front.versions.unsupported), 228

CustomerPreferences (class in workfront.versions.v40),43

CustomerTimelineCalc (class in work-front.versions.unsupported), 229

CustomMenu (class in workfront.versions.unsupported),217

CustomMenuCustomMenu (class in work-front.versions.unsupported), 218

CustomQuarter (class in work-front.versions.unsupported), 218

CustsSections (class in workfront.versions.unsupported),229

Ddata (workfront.session.WorkfrontAPIError attribute), 8data_type (workfront.versions.unsupported.LayoutTemplateCard

attribute), 288data_type (workfront.versions.unsupported.Parameter at-

tribute), 303data_type (workfront.versions.v40.Parameter attribute),

76date_added (workfront.versions.unsupported.RecentMenuItem

attribute), 338date_field (workfront.versions.unsupported.TimedNotification

attribute), 387date_modified (workfront.versions.unsupported.ExternalDocument

attribute), 260date_preference (work-

front.versions.unsupported.LayoutTemplateDatePreferenceattribute), 289

date_val (workfront.versions.unsupported.ParameterValueattribute), 305

day_summaries (workfront.versions.unsupported.UserResourceattribute), 415

days_late (workfront.versions.unsupported.Approval at-tribute), 174

days_late (workfront.versions.unsupported.Task at-tribute), 363

days_late (workfront.versions.unsupported.Work at-tribute), 420

days_late (workfront.versions.v40.Approval attribute), 14days_late (workfront.versions.v40.Task attribute), 109days_late (workfront.versions.v40.Work attribute), 145

dd_svnversion (workfront.versions.unsupported.Customerattribute), 220

dd_svnversion (workfront.versions.v40.Customer at-tribute), 39

default_approval_process (work-front.versions.unsupported.QueueDef at-tribute), 333

default_approval_process (work-front.versions.unsupported.QueueTopic at-tribute), 335

default_approval_process (work-front.versions.v40.QueueDef attribute), 93

default_approval_process (work-front.versions.v40.QueueTopic attribute),95

default_approval_process_id (work-front.versions.unsupported.QueueDef at-tribute), 333

default_approval_process_id (work-front.versions.unsupported.QueueTopic at-tribute), 335

default_approval_process_id (work-front.versions.v40.QueueDef attribute), 93

default_approval_process_id (work-front.versions.v40.QueueTopic attribute),95

default_assigned_to (work-front.versions.unsupported.RoutingRuleattribute), 346

default_assigned_to (work-front.versions.v40.RoutingRule attribute),100

default_assigned_to_id (work-front.versions.unsupported.RoutingRuleattribute), 346

default_assigned_to_id (work-front.versions.v40.RoutingRule attribute),100

default_attribute (work-front.versions.unsupported.SSOMappingattribute), 347

default_baseline (work-front.versions.unsupported.Approval attribute),174

default_baseline (workfront.versions.unsupported.Projectattribute), 324

default_baseline (workfront.versions.v40.Approval at-tribute), 14

default_baseline (workfront.versions.v40.Project at-tribute), 86

default_baseline_task (work-front.versions.unsupported.Approval attribute),174

default_baseline_task (work-

478 Index

Page 483: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

front.versions.unsupported.Task attribute),363

default_baseline_task (work-front.versions.unsupported.Work attribute),420

default_baseline_task (workfront.versions.v40.Approvalattribute), 14

default_baseline_task (workfront.versions.v40.Task at-tribute), 109

default_baseline_task (workfront.versions.v40.Work at-tribute), 145

default_category (work-front.versions.unsupported.QueueDef at-tribute), 334

default_category (work-front.versions.unsupported.QueueTopic at-tribute), 335

default_category (workfront.versions.v40.QueueDef at-tribute), 94

default_category (workfront.versions.v40.QueueTopic at-tribute), 95

default_category_id (work-front.versions.unsupported.QueueDef at-tribute), 334

default_category_id (work-front.versions.unsupported.QueueTopic at-tribute), 335

default_category_id (workfront.versions.v40.QueueDefattribute), 94

default_category_id (workfront.versions.v40.QueueTopicattribute), 95

default_duration (work-front.versions.unsupported.QueueTopic at-tribute), 335

default_duration (workfront.versions.v40.QueueTopic at-tribute), 95

default_duration_expression (work-front.versions.unsupported.QueueDef at-tribute), 334

default_duration_expression (work-front.versions.unsupported.QueueTopic at-tribute), 335

default_duration_expression (work-front.versions.v40.QueueDef attribute), 94

default_duration_expression (work-front.versions.v40.QueueTopic attribute),95

default_duration_minutes (work-front.versions.unsupported.QueueDef at-tribute), 334

default_duration_minutes (work-front.versions.unsupported.QueueTopic at-tribute), 335

default_duration_minutes (work-

front.versions.v40.QueueDef attribute), 94default_duration_minutes (work-

front.versions.v40.QueueTopic attribute),95

default_duration_unit (work-front.versions.unsupported.QueueDef at-tribute), 334

default_duration_unit (work-front.versions.unsupported.QueueTopic at-tribute), 335

default_duration_unit (workfront.versions.v40.QueueDefattribute), 94

default_duration_unit (work-front.versions.v40.QueueTopic attribute),95

default_forbidden_contribute_actions (work-front.versions.unsupported.Approval attribute),174

default_forbidden_contribute_actions (work-front.versions.unsupported.Project attribute),324

default_forbidden_contribute_actions (work-front.versions.unsupported.Template attribute),374

default_forbidden_manage_actions (work-front.versions.unsupported.Approval attribute),174

default_forbidden_manage_actions (work-front.versions.unsupported.Project attribute),324

default_forbidden_manage_actions (work-front.versions.unsupported.Template attribute),374

default_forbidden_view_actions (work-front.versions.unsupported.Approval attribute),174

default_forbidden_view_actions (work-front.versions.unsupported.Project attribute),324

default_forbidden_view_actions (work-front.versions.unsupported.Template attribute),374

default_hour_type (workfront.versions.unsupported.Userattribute), 401

default_hour_type (workfront.versions.v40.User at-tribute), 136

default_hour_type_id (work-front.versions.unsupported.User attribute),401

default_hour_type_id (workfront.versions.v40.User at-tribute), 136

default_interface (work-front.versions.unsupported.Company attribute),214

Index 479

Page 484: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

default_interface (workfront.versions.unsupported.Groupattribute), 266

default_interface (workfront.versions.unsupported.Roleattribute), 345

default_interface (workfront.versions.unsupported.Teamattribute), 371

default_interface (workfront.versions.unsupported.Userattribute), 401

default_interface (workfront.versions.v40.User attribute),136

default_nav_item (work-front.versions.unsupported.LayoutTemplateattribute), 286

default_nav_item (work-front.versions.v40.LayoutTemplate attribute),70

default_project (workfront.versions.unsupported.RoutingRuleattribute), 346

default_project (workfront.versions.v40.RoutingRule at-tribute), 100

default_project_id (work-front.versions.unsupported.RoutingRuleattribute), 346

default_project_id (workfront.versions.v40.RoutingRuleattribute), 100

default_role (workfront.versions.unsupported.RoutingRuleattribute), 346

default_role (workfront.versions.v40.RoutingRuleattribute), 100

default_role_id (workfront.versions.unsupported.RoutingRuleattribute), 346

default_role_id (workfront.versions.v40.RoutingRule at-tribute), 100

default_route (workfront.versions.unsupported.QueueDefattribute), 334

default_route (workfront.versions.unsupported.QueueTopicattribute), 335

default_route (workfront.versions.v40.QueueDef at-tribute), 94

default_route (workfront.versions.v40.QueueTopicattribute), 95

default_route_id (work-front.versions.unsupported.QueueDef at-tribute), 334

default_route_id (work-front.versions.unsupported.QueueTopic at-tribute), 335

default_route_id (workfront.versions.v40.QueueDef at-tribute), 94

default_route_id (workfront.versions.v40.QueueTopic at-tribute), 95

default_tab (workfront.versions.unsupported.PortalSectionattribute), 309

default_team (workfront.versions.unsupported.RoutingRule

attribute), 346default_team (workfront.versions.v40.RoutingRule at-

tribute), 100default_team_id (work-

front.versions.unsupported.RoutingRuleattribute), 346

default_team_id (workfront.versions.v40.RoutingRule at-tribute), 100

default_topic_group_id (work-front.versions.unsupported.QueueDef at-tribute), 334

definition (workfront.versions.unsupported.PortalSectionattribute), 309

definition (workfront.versions.unsupported.UIFilter at-tribute), 391

definition (workfront.versions.unsupported.UIGroupByattribute), 393

definition (workfront.versions.unsupported.UIView at-tribute), 394

definition (workfront.versions.v40.UIFilter attribute), 129definition (workfront.versions.v40.UIGroupBy attribute),

130definition (workfront.versions.v40.UIView attribute), 132delegate_user (workfront.versions.unsupported.ApproverStatus

attribute), 190delegate_user_id (work-

front.versions.unsupported.ApproverStatusattribute), 190

delegation_to (workfront.versions.unsupported.User at-tribute), 401

delegation_to_id (workfront.versions.unsupported.Userattribute), 401

delegations_from (workfront.versions.unsupported.Userattribute), 401

delete() (workfront.meta.Object method), 9delete() (workfront.Session method), 7delete_document_proofs() (work-

front.versions.unsupported.Document method),231

delete_duplicate_availability() (work-front.versions.unsupported.UserAvailabilitymethod), 408

delete_early_access() (work-front.versions.unsupported.Company method),215

delete_early_access() (work-front.versions.unsupported.Group method),266

delete_early_access() (work-front.versions.unsupported.Role method),345

delete_early_access() (work-front.versions.unsupported.Team method),371

480 Index

Page 485: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

delete_early_access() (work-front.versions.unsupported.User method),401

delete_folders_and_contents() (work-front.versions.unsupported.DocumentFoldermethod), 239

delete_recent() (workfront.versions.unsupported.RecentMenuItemmethod), 338

deliverable_score_card (work-front.versions.unsupported.Approval attribute),174

deliverable_score_card (work-front.versions.unsupported.Project attribute),324

deliverable_score_card (work-front.versions.unsupported.Template attribute),374

deliverable_score_card (work-front.versions.v40.Approval attribute), 14

deliverable_score_card (workfront.versions.v40.Projectattribute), 86

deliverable_score_card (work-front.versions.v40.Template attribute), 118

deliverable_score_card_id (work-front.versions.unsupported.Approval attribute),174

deliverable_score_card_id (work-front.versions.unsupported.Project attribute),324

deliverable_score_card_id (work-front.versions.unsupported.Template attribute),375

deliverable_score_card_id (work-front.versions.v40.Approval attribute), 14

deliverable_score_card_id (work-front.versions.v40.Project attribute), 86

deliverable_score_card_id (work-front.versions.v40.Template attribute), 119

deliverable_success_score (work-front.versions.unsupported.Approval attribute),174

deliverable_success_score (work-front.versions.unsupported.Project attribute),324

deliverable_success_score (work-front.versions.unsupported.Template attribute),375

deliverable_success_score (work-front.versions.v40.Approval attribute), 14

deliverable_success_score (work-front.versions.v40.Project attribute), 86

deliverable_success_score (work-front.versions.v40.Template attribute), 119

deliverable_success_score_ratio (work-

front.versions.unsupported.Approval attribute),175

deliverable_success_score_ratio (work-front.versions.unsupported.Project attribute),324

deliverable_success_score_ratio (work-front.versions.v40.Approval attribute), 14

deliverable_success_score_ratio (work-front.versions.v40.Project attribute), 86

deliverable_values (work-front.versions.unsupported.Approval attribute),175

deliverable_values (work-front.versions.unsupported.Project attribute),324

deliverable_values (work-front.versions.unsupported.Template attribute),375

deliverable_values (workfront.versions.v40.Approval at-tribute), 15

deliverable_values (workfront.versions.v40.Project at-tribute), 86

deliverable_values (workfront.versions.v40.Template at-tribute), 119

delta_points_complete (work-front.versions.unsupported.BurndownEventattribute), 204

delta_total_items (work-front.versions.unsupported.BurndownEventattribute), 204

delta_total_points (work-front.versions.unsupported.BurndownEventattribute), 204

demo_baseline_date (work-front.versions.unsupported.Customer attribute),220

demo_baseline_date (workfront.versions.v40.Customerattribute), 39

description (workfront.versions.unsupported.AccessLevelattribute), 154

description (workfront.versions.unsupported.AccessScopeattribute), 161

description (workfront.versions.unsupported.AccountRepattribute), 163

description (workfront.versions.unsupported.AppEventattribute), 168

description (workfront.versions.unsupported.Approval at-tribute), 175

description (workfront.versions.unsupported.ApprovalProcessattribute), 187

description (workfront.versions.unsupported.BillingRecordattribute), 203

description (workfront.versions.unsupported.CalendarEventattribute), 205

Index 481

Page 486: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

description (workfront.versions.unsupported.Category at-tribute), 210

description (workfront.versions.unsupported.CustomEnumattribute), 216

description (workfront.versions.unsupported.Customerattribute), 220

description (workfront.versions.unsupported.Documentattribute), 231

description (workfront.versions.unsupported.DocumentRequestattribute), 244

description (workfront.versions.unsupported.DocumentShareattribute), 246

description (workfront.versions.unsupported.EmailTemplateattribute), 250

description (workfront.versions.unsupported.Endorsementattribute), 251

description (workfront.versions.unsupported.EventHandlerattribute), 254

description (workfront.versions.unsupported.Expense at-tribute), 256

description (workfront.versions.unsupported.ExpenseTypeattribute), 259

description (workfront.versions.unsupported.ExternalDocumentattribute), 260

description (workfront.versions.unsupported.ExternalSectionattribute), 262

description (workfront.versions.unsupported.Group at-tribute), 266

description (workfront.versions.unsupported.Hourattribute), 267

description (workfront.versions.unsupported.HourTypeattribute), 269

description (workfront.versions.unsupported.Issueattribute), 273

description (workfront.versions.unsupported.LayoutTemplateattribute), 286

description (workfront.versions.unsupported.LicenseOrderattribute), 289

description (workfront.versions.unsupported.MasterTaskattribute), 292

description (workfront.versions.unsupported.Milestoneattribute), 295

description (workfront.versions.unsupported.MilestonePathattribute), 295

description (workfront.versions.unsupported.Parameterattribute), 303

description (workfront.versions.unsupported.ParameterGroupattribute), 304

description (workfront.versions.unsupported.PortalProfileattribute), 308

description (workfront.versions.unsupported.PortalSectionattribute), 309

description (workfront.versions.unsupported.PortalTabattribute), 313

description (workfront.versions.unsupported.Portfolio at-tribute), 315

description (workfront.versions.unsupported.Program at-tribute), 318

description (workfront.versions.unsupported.Project at-tribute), 324

description (workfront.versions.unsupported.QueueTopicattribute), 335

description (workfront.versions.unsupported.QueueTopicGroupattribute), 336

description (workfront.versions.unsupported.Reseller at-tribute), 341

description (workfront.versions.unsupported.ResourcePoolattribute), 343

description (workfront.versions.unsupported.Risk at-tribute), 344

description (workfront.versions.unsupported.RiskTypeattribute), 344

description (workfront.versions.unsupported.Role at-tribute), 345

description (workfront.versions.unsupported.RoutingRuleattribute), 346

description (workfront.versions.unsupported.ScheduledReportattribute), 352

description (workfront.versions.unsupported.ScoreCardattribute), 354

description (workfront.versions.unsupported.ScoreCardQuestionattribute), 356

description (workfront.versions.unsupported.Task at-tribute), 363

description (workfront.versions.unsupported.Teamattribute), 371

description (workfront.versions.unsupported.Template at-tribute), 375

description (workfront.versions.unsupported.TemplateTaskattribute), 382

description (workfront.versions.unsupported.TimedNotificationattribute), 387

description (workfront.versions.unsupported.TimesheetProfileattribute), 389

description (workfront.versions.unsupported.WhatsNewattribute), 416

description (workfront.versions.unsupported.Workattribute), 420

description (workfront.versions.v40.Approval attribute),15

description (workfront.versions.v40.ApprovalProcess at-tribute), 26

description (workfront.versions.v40.BillingRecordattribute), 34

description (workfront.versions.v40.Category attribute),34

description (workfront.versions.v40.CustomEnumattribute), 37

482 Index

Page 487: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

description (workfront.versions.v40.Customer attribute),39

description (workfront.versions.v40.Document attribute),44

description (workfront.versions.v40.Expense attribute),50

description (workfront.versions.v40.ExpenseType at-tribute), 53

description (workfront.versions.v40.Group attribute), 55description (workfront.versions.v40.Hour attribute), 56description (workfront.versions.v40.HourType attribute),

57description (workfront.versions.v40.Issue attribute), 60description (workfront.versions.v40.LayoutTemplate at-

tribute), 70description (workfront.versions.v40.Milestone attribute),

71description (workfront.versions.v40.MilestonePath

attribute), 71description (workfront.versions.v40.Parameter attribute),

77description (workfront.versions.v40.ParameterGroup at-

tribute), 77description (workfront.versions.v40.Portfolio attribute),

79description (workfront.versions.v40.Program attribute),

81description (workfront.versions.v40.Project attribute), 86description (workfront.versions.v40.QueueTopic at-

tribute), 95description (workfront.versions.v40.ResourcePool

attribute), 98description (workfront.versions.v40.Risk attribute), 98description (workfront.versions.v40.RiskType attribute),

99description (workfront.versions.v40.Role attribute), 99description (workfront.versions.v40.RoutingRule at-

tribute), 100description (workfront.versions.v40.ScoreCard attribute),

102description (workfront.versions.v40.ScoreCardQuestion

attribute), 105description (workfront.versions.v40.Task attribute), 109description (workfront.versions.v40.Team attribute), 116description (workfront.versions.v40.Template attribute),

119description (workfront.versions.v40.TemplateTask

attribute), 123description (workfront.versions.v40.Work attribute), 145description_key (work-

front.versions.unsupported.AccessLevelattribute), 154

description_key (work-front.versions.unsupported.AccessScope

attribute), 161description_key (work-

front.versions.unsupported.AppEvent at-tribute), 168

description_key (work-front.versions.unsupported.EventHandlerattribute), 254

description_key (work-front.versions.unsupported.ExpenseTypeattribute), 259

description_key (work-front.versions.unsupported.ExternalSectionattribute), 262

description_key (work-front.versions.unsupported.HourType at-tribute), 269

description_key (work-front.versions.unsupported.LayoutTemplateattribute), 286

description_key (work-front.versions.unsupported.PortalProfileattribute), 308

description_key (work-front.versions.unsupported.PortalSectionattribute), 309

description_key (workfront.versions.v40.ExpenseTypeattribute), 53

description_key (workfront.versions.v40.HourType at-tribute), 57

description_key (workfront.versions.v40.LayoutTemplateattribute), 70

detail_level (workfront.versions.unsupported.UserResourceattribute), 415

details (workfront.versions.unsupported.Branding at-tribute), 204

device_token (workfront.versions.unsupported.MobileDeviceattribute), 296

device_type (workfront.versions.unsupported.MobileDeviceattribute), 296

direct_reports (workfront.versions.unsupported.User at-tribute), 401

direct_reports (workfront.versions.v40.User attribute),136

disabled_date (workfront.versions.unsupported.Customerattribute), 221

disabled_date (workfront.versions.v40.Customer at-tribute), 39

display_access_type (work-front.versions.unsupported.AccessLevelattribute), 154

display_name (workfront.versions.unsupported.BillingRecordattribute), 203

display_name (workfront.versions.unsupported.JournalFieldattribute), 285

Index 483

Page 488: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

display_name (workfront.versions.unsupported.Timesheetattribute), 388

display_name (workfront.versions.unsupported.UIFilterattribute), 391

display_name (workfront.versions.unsupported.UIGroupByattribute), 393

display_name (workfront.versions.unsupported.UIViewattribute), 394

display_name (workfront.versions.v40.BillingRecord at-tribute), 34

display_name (workfront.versions.v40.Timesheet at-tribute), 128

display_name (workfront.versions.v40.UIFilter attribute),129

display_name (workfront.versions.v40.UIGroupBy at-tribute), 131

display_name (workfront.versions.v40.UIView attribute),132

display_obj_obj_code (work-front.versions.unsupported.HourType at-tribute), 269

display_obj_obj_code (workfront.versions.v40.HourTypeattribute), 57

display_order (workfront.versions.unsupported.AccessScopeattribute), 161

display_order (workfront.versions.unsupported.Approvalattribute), 175

display_order (workfront.versions.unsupported.CategoryParameterattribute), 213

display_order (workfront.versions.unsupported.CustomEnumOrderattribute), 217

display_order (workfront.versions.unsupported.CustomMenuattribute), 217

display_order (workfront.versions.unsupported.CustomMenuCustomMenuattribute), 218

display_order (workfront.versions.unsupported.LayoutTemplateCardattribute), 288

display_order (workfront.versions.unsupported.ParameterGroupattribute), 304

display_order (workfront.versions.unsupported.ParameterOptionattribute), 304

display_order (workfront.versions.unsupported.PortalTabattribute), 313

display_order (workfront.versions.unsupported.PortalTabSectionattribute), 314

display_order (workfront.versions.unsupported.Projectattribute), 324

display_order (workfront.versions.unsupported.ResourcePoolattribute), 343

display_order (workfront.versions.unsupported.ScoreCardOptionattribute), 356

display_order (workfront.versions.unsupported.ScoreCardQuestionattribute), 356

display_order (workfront.versions.v40.Approval at-

tribute), 15display_order (workfront.versions.v40.CategoryParameter

attribute), 35display_order (workfront.versions.v40.ParameterGroup

attribute), 77display_order (workfront.versions.v40.ParameterOption

attribute), 78display_order (workfront.versions.v40.Project attribute),

86display_order (workfront.versions.v40.ResourcePool at-

tribute), 98display_order (workfront.versions.v40.ScoreCardOption

attribute), 104display_order (workfront.versions.v40.ScoreCardQuestion

attribute), 105display_per (workfront.versions.unsupported.ExpenseType

attribute), 259display_per (workfront.versions.v40.ExpenseType

attribute), 53display_queue_breadcrumb (work-

front.versions.unsupported.Approval attribute),175

display_queue_breadcrumb (work-front.versions.unsupported.Issue attribute),273

display_queue_breadcrumb (work-front.versions.unsupported.Work attribute),420

display_rate_unit (work-front.versions.unsupported.ExpenseTypeattribute), 259

display_rate_unit (workfront.versions.v40.ExpenseTypeattribute), 53

display_size (workfront.versions.unsupported.Parameterattribute), 303

display_size (workfront.versions.v40.Parameter at-tribute), 77

display_subject_value (work-front.versions.unsupported.EventHandlerattribute), 254

display_type (workfront.versions.unsupported.Parameterattribute), 303

display_type (workfront.versions.unsupported.ScoreCardQuestionattribute), 356

display_type (workfront.versions.v40.Parameter at-tribute), 77

display_type (workfront.versions.v40.ScoreCardQuestionattribute), 105

doc_id (workfront.versions.unsupported.PortalTabattribute), 313

doc_obj_code (workfront.versions.unsupported.Documentattribute), 231

doc_obj_code (workfront.versions.v40.Document at-tribute), 44

484 Index

Page 489: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

doc_provider_config (work-front.versions.unsupported.DocumentProviderattribute), 242

doc_provider_config_id (work-front.versions.unsupported.DocumentProviderattribute), 242

doc_size (workfront.versions.unsupported.AnnouncementAttachmentattribute), 166

doc_size (workfront.versions.unsupported.DocumentVersionattribute), 248

doc_size (workfront.versions.v40.DocumentVersion at-tribute), 49

doc_status (workfront.versions.unsupported.DocumentVersionattribute), 248

DocsFolders (class in workfront.versions.unsupported),229

Document (class in workfront.versions.unsupported), 230Document (class in workfront.versions.v40), 43document (workfront.versions.unsupported.AccessToken

attribute), 162document (workfront.versions.unsupported.AwaitingApproval

attribute), 197document (workfront.versions.unsupported.DocsFolders

attribute), 229document (workfront.versions.unsupported.DocumentApproval

attribute), 238document (workfront.versions.unsupported.DocumentShare

attribute), 246document (workfront.versions.unsupported.DocumentVersion

attribute), 248document (workfront.versions.unsupported.JournalEntry

attribute), 282document (workfront.versions.unsupported.Note at-

tribute), 298document (workfront.versions.unsupported.ParameterValue

attribute), 305document (workfront.versions.v40.DocumentApproval

attribute), 47document (workfront.versions.v40.DocumentVersion at-

tribute), 49document (workfront.versions.v40.JournalEntry at-

tribute), 67document (workfront.versions.v40.Note attribute), 73document_approval (work-

front.versions.unsupported.JournalEntryattribute), 282

document_approval (work-front.versions.unsupported.UserNote attribute),411

document_approval (work-front.versions.v40.JournalEntry attribute),67

document_approval (workfront.versions.v40.UserNoteattribute), 141

document_approval_id (work-front.versions.unsupported.JournalEntryattribute), 282

document_approval_id (work-front.versions.unsupported.UserNote attribute),411

document_approval_id (work-front.versions.v40.JournalEntry attribute),67

document_approval_id (work-front.versions.v40.UserNote attribute), 141

document_id (workfront.versions.unsupported.AccessTokenattribute), 162

document_id (workfront.versions.unsupported.AwaitingApprovalattribute), 197

document_id (workfront.versions.unsupported.DocsFoldersattribute), 229

document_id (workfront.versions.unsupported.DocumentApprovalattribute), 238

document_id (workfront.versions.unsupported.DocumentShareattribute), 246

document_id (workfront.versions.unsupported.DocumentVersionattribute), 248

document_id (workfront.versions.unsupported.JournalEntryattribute), 282

document_id (workfront.versions.unsupported.Note at-tribute), 298

document_id (workfront.versions.unsupported.ParameterValueattribute), 305

document_id (workfront.versions.v40.DocumentApprovalattribute), 47

document_id (workfront.versions.v40.DocumentVersionattribute), 49

document_id (workfront.versions.v40.JournalEntry at-tribute), 67

document_id (workfront.versions.v40.Note attribute), 73document_provider (work-

front.versions.unsupported.DocumentVersionattribute), 248

document_provider (work-front.versions.unsupported.LinkedFolderattribute), 290

document_provider_id (work-front.versions.unsupported.Document at-tribute), 231

document_provider_id (work-front.versions.unsupported.DocumentVersionattribute), 248

document_provider_id (work-front.versions.unsupported.ExternalDocumentattribute), 260

document_provider_id (work-front.versions.unsupported.LinkedFolderattribute), 291

Index 485

Page 490: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

document_request (work-front.versions.unsupported.AccessTokenattribute), 162

document_request (work-front.versions.unsupported.Document at-tribute), 231

document_request (work-front.versions.unsupported.UserNote attribute),411

document_request_id (work-front.versions.unsupported.AccessTokenattribute), 162

document_request_id (work-front.versions.unsupported.Document at-tribute), 231

document_request_id (work-front.versions.unsupported.UserNote attribute),411

document_request_id (workfront.versions.v40.Documentattribute), 44

document_request_id (workfront.versions.v40.UserNoteattribute), 141

document_requests (work-front.versions.unsupported.Approval attribute),175

document_requests (work-front.versions.unsupported.Customer attribute),221

document_requests (work-front.versions.unsupported.Issue attribute),273

document_requests (work-front.versions.unsupported.Iteration attribute),279

document_requests (work-front.versions.unsupported.MasterTask at-tribute), 292

document_requests (work-front.versions.unsupported.Portfolio attribute),315

document_requests (work-front.versions.unsupported.Program attribute),318

document_requests (work-front.versions.unsupported.Project attribute),324

document_requests (work-front.versions.unsupported.Task attribute),363

document_requests (work-front.versions.unsupported.Template attribute),375

document_requests (work-front.versions.unsupported.TemplateTask

attribute), 382document_requests (work-

front.versions.unsupported.User attribute),401

document_requests (work-front.versions.unsupported.Work attribute),420

document_share (work-front.versions.unsupported.JournalEntryattribute), 282

document_share (work-front.versions.unsupported.UserNote attribute),411

document_share_id (work-front.versions.unsupported.JournalEntryattribute), 282

document_share_id (work-front.versions.unsupported.UserNote attribute),411

document_share_id (work-front.versions.v40.JournalEntry attribute),67

document_share_id (workfront.versions.v40.UserNoteattribute), 141

document_size (workfront.versions.unsupported.Customerattribute), 221

document_size (workfront.versions.v40.Customer at-tribute), 39

document_type_label (work-front.versions.unsupported.DocumentVersionattribute), 248

document_type_label (work-front.versions.v40.DocumentVersion attribute),49

document_version_id (work-front.versions.unsupported.DocumentTaskStatusattribute), 247

DocumentApproval (class in work-front.versions.unsupported), 238

DocumentApproval (class in workfront.versions.v40), 46DocumentFolder (class in work-

front.versions.unsupported), 239DocumentFolder (class in workfront.versions.v40), 47DocumentProvider (class in work-

front.versions.unsupported), 242DocumentProviderConfig (class in work-

front.versions.unsupported), 243DocumentProviderMetadata (class in work-

front.versions.unsupported), 243DocumentRequest (class in work-

front.versions.unsupported), 244documents (workfront.versions.unsupported.Approval at-

tribute), 175documents (workfront.versions.unsupported.Customer

486 Index

Page 491: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

attribute), 221documents (workfront.versions.unsupported.DocumentFolder

attribute), 239documents (workfront.versions.unsupported.Issue at-

tribute), 273documents (workfront.versions.unsupported.Iteration at-

tribute), 279documents (workfront.versions.unsupported.MasterTask

attribute), 292documents (workfront.versions.unsupported.Portfolio at-

tribute), 315documents (workfront.versions.unsupported.Program at-

tribute), 318documents (workfront.versions.unsupported.Project at-

tribute), 324documents (workfront.versions.unsupported.Task at-

tribute), 363documents (workfront.versions.unsupported.Template at-

tribute), 375documents (workfront.versions.unsupported.TemplateTask

attribute), 382documents (workfront.versions.unsupported.User at-

tribute), 401documents (workfront.versions.unsupported.Work

attribute), 420documents (workfront.versions.v40.Approval attribute),

15documents (workfront.versions.v40.Customer attribute),

39documents (workfront.versions.v40.DocumentFolder at-

tribute), 47documents (workfront.versions.v40.Issue attribute), 60documents (workfront.versions.v40.Iteration attribute),

65documents (workfront.versions.v40.Portfolio attribute),

79documents (workfront.versions.v40.Program attribute),

81documents (workfront.versions.v40.Project attribute), 86documents (workfront.versions.v40.Task attribute), 109documents (workfront.versions.v40.Template attribute),

119documents (workfront.versions.v40.TemplateTask at-

tribute), 123documents (workfront.versions.v40.User attribute), 136documents (workfront.versions.v40.Work attribute), 145DocumentShare (class in work-

front.versions.unsupported), 245DocumentTaskStatus (class in work-

front.versions.unsupported), 247DocumentVersion (class in work-

front.versions.unsupported), 247DocumentVersion (class in workfront.versions.v40), 48domain (workfront.versions.unsupported.Customer at-

tribute), 221domain (workfront.versions.unsupported.SandboxMigration

attribute), 349domain (workfront.versions.v40.Customer attribute), 39done_date (workfront.versions.unsupported.WorkItem at-

tribute), 429done_date (workfront.versions.v40.WorkItem attribute),

153done_statuses (workfront.versions.unsupported.Approval

attribute), 175done_statuses (workfront.versions.unsupported.Issue at-

tribute), 273done_statuses (workfront.versions.unsupported.Task at-

tribute), 363done_statuses (workfront.versions.unsupported.Work at-

tribute), 420done_statuses (workfront.versions.v40.Approval at-

tribute), 15done_statuses (workfront.versions.v40.Issue attribute), 60done_statuses (workfront.versions.v40.Task attribute),

109done_statuses (workfront.versions.v40.Work attribute),

145download_url (workfront.versions.unsupported.Document

attribute), 232download_url (workfront.versions.unsupported.ExternalDocument

attribute), 260download_url (workfront.versions.v40.Document at-

tribute), 44due_date (workfront.versions.unsupported.Approval at-

tribute), 175due_date (workfront.versions.unsupported.CalendarFeedEntry

attribute), 205due_date (workfront.versions.unsupported.Issue at-

tribute), 273due_date (workfront.versions.unsupported.Task at-

tribute), 363due_date (workfront.versions.unsupported.Work at-

tribute), 420due_date (workfront.versions.v40.Approval attribute), 15due_date (workfront.versions.v40.Issue attribute), 60due_date (workfront.versions.v40.Task attribute), 109due_date (workfront.versions.v40.Work attribute), 145dup_id (workfront.versions.unsupported.Hour attribute),

267dup_id (workfront.versions.v40.Hour attribute), 56duration (workfront.versions.unsupported.Approval at-

tribute), 175duration (workfront.versions.unsupported.CalendarSection

attribute), 208duration (workfront.versions.unsupported.Task attribute),

363duration (workfront.versions.unsupported.TemplateTask

attribute), 382

Index 487

Page 492: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

duration (workfront.versions.unsupported.Work at-tribute), 420

duration (workfront.versions.v40.Approval attribute), 15duration (workfront.versions.v40.Task attribute), 109duration (workfront.versions.v40.TemplateTask at-

tribute), 123duration (workfront.versions.v40.Work attribute), 145duration_expression (work-

front.versions.unsupported.Approval attribute),175

duration_expression (work-front.versions.unsupported.Project attribute),324

duration_expression (work-front.versions.unsupported.RecurrenceRuleattribute), 340

duration_expression (work-front.versions.unsupported.Task attribute),363

duration_expression (work-front.versions.unsupported.Template attribute),375

duration_expression (work-front.versions.unsupported.TemplateTaskattribute), 382

duration_expression (work-front.versions.unsupported.Work attribute),420

duration_expression (workfront.versions.v40.Approvalattribute), 15

duration_expression (workfront.versions.v40.Project at-tribute), 86

duration_expression (workfront.versions.v40.Taskattribute), 109

duration_expression (workfront.versions.v40.Work at-tribute), 145

duration_minutes (work-front.versions.unsupported.Approval attribute),175

duration_minutes (work-front.versions.unsupported.ApprovalPathattribute), 187

duration_minutes (work-front.versions.unsupported.ApprovalProcessattribute), 187

duration_minutes (work-front.versions.unsupported.Baseline attribute),200

duration_minutes (work-front.versions.unsupported.BaselineTaskattribute), 202

duration_minutes (workfront.versions.unsupported.Issueattribute), 273

duration_minutes (work-

front.versions.unsupported.JournalEntryattribute), 282

duration_minutes (work-front.versions.unsupported.MasterTask at-tribute), 292

duration_minutes (work-front.versions.unsupported.Project attribute),324

duration_minutes (work-front.versions.unsupported.RecurrenceRuleattribute), 340

duration_minutes (workfront.versions.unsupported.Taskattribute), 363

duration_minutes (work-front.versions.unsupported.Template attribute),375

duration_minutes (work-front.versions.unsupported.TemplateTaskattribute), 382

duration_minutes (work-front.versions.unsupported.TimedNotificationattribute), 387

duration_minutes (workfront.versions.unsupported.Workattribute), 420

duration_minutes (workfront.versions.v40.Approval at-tribute), 15

duration_minutes (workfront.versions.v40.ApprovalPathattribute), 25

duration_minutes (work-front.versions.v40.ApprovalProcess attribute),26

duration_minutes (workfront.versions.v40.Baseline at-tribute), 31

duration_minutes (workfront.versions.v40.BaselineTaskattribute), 33

duration_minutes (workfront.versions.v40.JournalEntryattribute), 67

duration_minutes (workfront.versions.v40.Project at-tribute), 86

duration_minutes (workfront.versions.v40.Task at-tribute), 109

duration_minutes (workfront.versions.v40.Template at-tribute), 119

duration_minutes (workfront.versions.v40.TemplateTaskattribute), 124

duration_minutes (workfront.versions.v40.Work at-tribute), 145

duration_type (workfront.versions.unsupported.Approvalattribute), 175

duration_type (workfront.versions.unsupported.MasterTaskattribute), 292

duration_type (workfront.versions.unsupported.Task at-tribute), 363

duration_type (workfront.versions.unsupported.TemplateTask

488 Index

Page 493: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

attribute), 382duration_type (workfront.versions.unsupported.Work at-

tribute), 420duration_type (workfront.versions.v40.Approval at-

tribute), 15duration_type (workfront.versions.v40.Task attribute),

110duration_type (workfront.versions.v40.TemplateTask at-

tribute), 124duration_type (workfront.versions.v40.Work attribute),

145duration_unit (workfront.versions.unsupported.Approval

attribute), 175duration_unit (workfront.versions.unsupported.ApprovalPath

attribute), 187duration_unit (workfront.versions.unsupported.BaselineTask

attribute), 202duration_unit (workfront.versions.unsupported.MasterTask

attribute), 292duration_unit (workfront.versions.unsupported.RecurrenceRule

attribute), 340duration_unit (workfront.versions.unsupported.Task at-

tribute), 363duration_unit (workfront.versions.unsupported.TemplateTask

attribute), 382duration_unit (workfront.versions.unsupported.TimedNotification

attribute), 387duration_unit (workfront.versions.unsupported.Work at-

tribute), 420duration_unit (workfront.versions.v40.Approval at-

tribute), 15duration_unit (workfront.versions.v40.ApprovalPath at-

tribute), 25duration_unit (workfront.versions.v40.BaselineTask at-

tribute), 33duration_unit (workfront.versions.v40.Task attribute),

110duration_unit (workfront.versions.v40.TemplateTask at-

tribute), 124duration_unit (workfront.versions.v40.Work attribute),

145

Eeac (workfront.versions.unsupported.Approval attribute),

175eac (workfront.versions.unsupported.Baseline attribute),

200eac (workfront.versions.unsupported.BaselineTask

attribute), 202eac (workfront.versions.unsupported.Project attribute),

324eac (workfront.versions.unsupported.Task attribute), 363eac (workfront.versions.unsupported.Work attribute), 420eac (workfront.versions.v40.Approval attribute), 15

eac (workfront.versions.v40.Baseline attribute), 31eac (workfront.versions.v40.BaselineTask attribute), 33eac (workfront.versions.v40.Project attribute), 86eac (workfront.versions.v40.Task attribute), 110eac (workfront.versions.v40.Work attribute), 145eac_calculation_method (work-

front.versions.unsupported.Approval attribute),175

eac_calculation_method (work-front.versions.unsupported.Project attribute),325

edit_field_names() (work-front.versions.unsupported.JournalEntrymethod), 282

edited_by (workfront.versions.unsupported.JournalEntryattribute), 282

edited_by (workfront.versions.v40.JournalEntry at-tribute), 67

edited_by_id (workfront.versions.unsupported.JournalEntryattribute), 282

edited_by_id (workfront.versions.v40.JournalEntry at-tribute), 67

effective_date (workfront.versions.unsupported.Expenseattribute), 257

effective_date (workfront.versions.v40.Expense at-tribute), 51

effective_end_date (work-front.versions.unsupported.TimesheetProfileattribute), 389

effective_layout_template (work-front.versions.unsupported.User attribute),401

effective_start_date (work-front.versions.unsupported.TimesheetProfileattribute), 389

Email (class in workfront.versions.unsupported), 249email (workfront.versions.unsupported.Reseller at-

tribute), 341email_addr (workfront.versions.unsupported.AccountRep

attribute), 163email_addr (workfront.versions.unsupported.Customer

attribute), 221email_addr (workfront.versions.unsupported.User at-

tribute), 401email_addr (workfront.versions.v40.Customer attribute),

39email_addr (workfront.versions.v40.User attribute), 136email_sent_date (work-

front.versions.unsupported.NotificationRecordattribute), 302

email_template (workfront.versions.unsupported.TimedNotificationattribute), 387

email_template_id (work-front.versions.unsupported.TimedNotification

Index 489

Page 494: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

attribute), 387email_templates (work-

front.versions.unsupported.Customer attribute),221

email_users (workfront.versions.unsupported.Noteattribute), 298

email_users (workfront.versions.v40.Note attribute), 73EmailTemplate (class in work-

front.versions.unsupported), 250enable_auto_baselines (work-

front.versions.unsupported.Approval attribute),175

enable_auto_baselines (work-front.versions.unsupported.Project attribute),325

enable_auto_baselines (work-front.versions.unsupported.Template attribute),375

enable_auto_baselines (workfront.versions.v40.Approvalattribute), 15

enable_auto_baselines (workfront.versions.v40.Projectattribute), 86

enable_auto_baselines (workfront.versions.v40.Templateattribute), 119

enable_prompt_security (work-front.versions.unsupported.PortalSectionattribute), 309

end_audit() (workfront.versions.unsupported.AuditLoginAsSessionmethod), 193

end_date (workfront.versions.unsupported.AuditLoginAsSessionattribute), 193

end_date (workfront.versions.unsupported.BackgroundJobattribute), 198

end_date (workfront.versions.unsupported.CalendarEventattribute), 205

end_date (workfront.versions.unsupported.CalendarFeedEntryattribute), 206

end_date (workfront.versions.unsupported.CustomQuarterattribute), 219

end_date (workfront.versions.unsupported.Iteration at-tribute), 279

end_date (workfront.versions.unsupported.RecurrenceRuleattribute), 340

end_date (workfront.versions.unsupported.ReservedTimeattribute), 342

end_date (workfront.versions.unsupported.SandboxMigrationattribute), 349

end_date (workfront.versions.unsupported.Timesheet at-tribute), 388

end_date (workfront.versions.unsupported.UserDelegationattribute), 409

end_date (workfront.versions.v40.BackgroundJob at-tribute), 30

end_date (workfront.versions.v40.Iteration attribute), 65

end_date (workfront.versions.v40.ReservedTime at-tribute), 96

end_date (workfront.versions.v40.Timesheet attribute),128

end_range (workfront.versions.unsupported.IPRange at-tribute), 270

Endorsement (class in workfront.versions.unsupported),251

endorsement (workfront.versions.unsupported.EndorsementShareattribute), 253

endorsement (workfront.versions.unsupported.Like at-tribute), 290

endorsement (workfront.versions.unsupported.UserNoteattribute), 412

endorsement_id (work-front.versions.unsupported.EndorsementShareattribute), 253

endorsement_id (workfront.versions.unsupported.Like at-tribute), 290

endorsement_id (work-front.versions.unsupported.UserNote attribute),412

endorsement_id (workfront.versions.v40.UserNoteattribute), 141

endorsement_share (work-front.versions.unsupported.UserNote attribute),412

endorsement_share_id (work-front.versions.unsupported.UserNote attribute),412

EndorsementShare (class in work-front.versions.unsupported), 253

endpoint (workfront.versions.unsupported.MobileDeviceattribute), 296

entered_by (workfront.versions.unsupported.AccessTokenattribute), 162

entered_by (workfront.versions.unsupported.Announcementattribute), 165

entered_by (workfront.versions.unsupported.Approval at-tribute), 175

entered_by (workfront.versions.unsupported.ApprovalProcessattribute), 187

entered_by (workfront.versions.unsupported.BackgroundJobattribute), 199

entered_by (workfront.versions.unsupported.CalendarEventattribute), 205

entered_by (workfront.versions.unsupported.CalendarPortalSectionattribute), 207

entered_by (workfront.versions.unsupported.Category at-tribute), 210

entered_by (workfront.versions.unsupported.Companyattribute), 215

entered_by (workfront.versions.unsupported.DocumentFolderattribute), 239

490 Index

Page 495: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

entered_by (workfront.versions.unsupported.DocumentShareattribute), 246

entered_by (workfront.versions.unsupported.DocumentVersionattribute), 248

entered_by (workfront.versions.unsupported.Endorsementattribute), 251

entered_by (workfront.versions.unsupported.EndorsementShareattribute), 253

entered_by (workfront.versions.unsupported.EventSubscriptionattribute), 255

entered_by (workfront.versions.unsupported.Expense at-tribute), 257

entered_by (workfront.versions.unsupported.ExternalSectionattribute), 262

entered_by (workfront.versions.unsupported.Group at-tribute), 266

entered_by (workfront.versions.unsupported.Issueattribute), 274

entered_by (workfront.versions.unsupported.Iteration at-tribute), 279

entered_by (workfront.versions.unsupported.Like at-tribute), 290

entered_by (workfront.versions.unsupported.MasterTaskattribute), 292

entered_by (workfront.versions.unsupported.MilestonePathattribute), 296

entered_by (workfront.versions.unsupported.PortalSectionattribute), 309

entered_by (workfront.versions.unsupported.Portfolio at-tribute), 315

entered_by (workfront.versions.unsupported.Program at-tribute), 318

entered_by (workfront.versions.unsupported.Project at-tribute), 325

entered_by (workfront.versions.unsupported.Role at-tribute), 345

entered_by (workfront.versions.unsupported.Schedule at-tribute), 350

entered_by (workfront.versions.unsupported.ScheduledReportattribute), 352

entered_by (workfront.versions.unsupported.ScoreCardattribute), 354

entered_by (workfront.versions.unsupported.Task at-tribute), 363

entered_by (workfront.versions.unsupported.Template at-tribute), 375

entered_by (workfront.versions.unsupported.TemplateTaskattribute), 382

entered_by (workfront.versions.unsupported.TimesheetProfileattribute), 389

entered_by (workfront.versions.unsupported.UIFilter at-tribute), 391

entered_by (workfront.versions.unsupported.UIGroupByattribute), 393

entered_by (workfront.versions.unsupported.UIView at-tribute), 395

entered_by (workfront.versions.unsupported.User at-tribute), 401

entered_by (workfront.versions.unsupported.Workattribute), 420

entered_by (workfront.versions.v40.Approval attribute),15

entered_by (workfront.versions.v40.ApprovalProcess at-tribute), 26

entered_by (workfront.versions.v40.BackgroundJob at-tribute), 30

entered_by (workfront.versions.v40.Category attribute),35

entered_by (workfront.versions.v40.Company attribute),36

entered_by (workfront.versions.v40.DocumentFolder at-tribute), 47

entered_by (workfront.versions.v40.DocumentVersionattribute), 49

entered_by (workfront.versions.v40.Expense attribute),51

entered_by (workfront.versions.v40.Group attribute), 55entered_by (workfront.versions.v40.Issue attribute), 60entered_by (workfront.versions.v40.Iteration attribute),

65entered_by (workfront.versions.v40.MilestonePath

attribute), 72entered_by (workfront.versions.v40.Portfolio attribute),

79entered_by (workfront.versions.v40.Program attribute),

81entered_by (workfront.versions.v40.Project attribute), 86entered_by (workfront.versions.v40.Role attribute), 99entered_by (workfront.versions.v40.Schedule attribute),

101entered_by (workfront.versions.v40.ScoreCard attribute),

102entered_by (workfront.versions.v40.Task attribute), 110entered_by (workfront.versions.v40.Template attribute),

119entered_by (workfront.versions.v40.TemplateTask

attribute), 124entered_by (workfront.versions.v40.UIFilter attribute),

129entered_by (workfront.versions.v40.UIGroupBy at-

tribute), 131entered_by (workfront.versions.v40.UIView attribute),

132entered_by (workfront.versions.v40.User attribute), 136entered_by (workfront.versions.v40.Work attribute), 145entered_by_id (workfront.versions.unsupported.AccessToken

attribute), 162entered_by_id (workfront.versions.unsupported.Announcement

Index 491

Page 496: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

attribute), 165entered_by_id (workfront.versions.unsupported.Approval

attribute), 175entered_by_id (workfront.versions.unsupported.ApprovalProcess

attribute), 188entered_by_id (workfront.versions.unsupported.BackgroundJob

attribute), 199entered_by_id (workfront.versions.unsupported.CalendarEvent

attribute), 205entered_by_id (workfront.versions.unsupported.CalendarPortalSection

attribute), 208entered_by_id (workfront.versions.unsupported.Category

attribute), 210entered_by_id (workfront.versions.unsupported.Company

attribute), 215entered_by_id (workfront.versions.unsupported.DocumentFolder

attribute), 239entered_by_id (workfront.versions.unsupported.DocumentShare

attribute), 246entered_by_id (workfront.versions.unsupported.DocumentVersion

attribute), 248entered_by_id (workfront.versions.unsupported.Endorsement

attribute), 251entered_by_id (workfront.versions.unsupported.EndorsementShare

attribute), 253entered_by_id (workfront.versions.unsupported.EventSubscription

attribute), 255entered_by_id (workfront.versions.unsupported.Expense

attribute), 257entered_by_id (workfront.versions.unsupported.ExternalSection

attribute), 262entered_by_id (workfront.versions.unsupported.Group

attribute), 266entered_by_id (workfront.versions.unsupported.Issue at-

tribute), 274entered_by_id (workfront.versions.unsupported.Iteration

attribute), 279entered_by_id (workfront.versions.unsupported.Like at-

tribute), 290entered_by_id (workfront.versions.unsupported.MasterTask

attribute), 292entered_by_id (workfront.versions.unsupported.MilestonePath

attribute), 296entered_by_id (workfront.versions.unsupported.PortalSection

attribute), 309entered_by_id (workfront.versions.unsupported.Portfolio

attribute), 315entered_by_id (workfront.versions.unsupported.Program

attribute), 318entered_by_id (workfront.versions.unsupported.Project

attribute), 325entered_by_id (workfront.versions.unsupported.Role at-

tribute), 345entered_by_id (workfront.versions.unsupported.Schedule

attribute), 350entered_by_id (workfront.versions.unsupported.ScheduledReport

attribute), 352entered_by_id (workfront.versions.unsupported.ScoreCard

attribute), 354entered_by_id (workfront.versions.unsupported.Task at-

tribute), 363entered_by_id (workfront.versions.unsupported.Template

attribute), 375entered_by_id (workfront.versions.unsupported.TemplateTask

attribute), 382entered_by_id (workfront.versions.unsupported.TimesheetProfile

attribute), 389entered_by_id (workfront.versions.unsupported.UIFilter

attribute), 391entered_by_id (workfront.versions.unsupported.UIGroupBy

attribute), 393entered_by_id (workfront.versions.unsupported.UIView

attribute), 395entered_by_id (workfront.versions.unsupported.Update

attribute), 397entered_by_id (workfront.versions.unsupported.User at-

tribute), 402entered_by_id (workfront.versions.unsupported.Work at-

tribute), 420entered_by_id (workfront.versions.v40.Approval at-

tribute), 15entered_by_id (workfront.versions.v40.ApprovalProcess

attribute), 26entered_by_id (workfront.versions.v40.BackgroundJob

attribute), 30entered_by_id (workfront.versions.v40.Category at-

tribute), 35entered_by_id (workfront.versions.v40.Company at-

tribute), 36entered_by_id (workfront.versions.v40.DocumentFolder

attribute), 47entered_by_id (workfront.versions.v40.DocumentVersion

attribute), 49entered_by_id (workfront.versions.v40.Expense at-

tribute), 51entered_by_id (workfront.versions.v40.Group attribute),

55entered_by_id (workfront.versions.v40.Issue attribute),

60entered_by_id (workfront.versions.v40.Iteration at-

tribute), 65entered_by_id (workfront.versions.v40.MilestonePath at-

tribute), 72entered_by_id (workfront.versions.v40.Portfolio at-

tribute), 79entered_by_id (workfront.versions.v40.Program at-

tribute), 81entered_by_id (workfront.versions.v40.Project attribute),

492 Index

Page 497: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

86entered_by_id (workfront.versions.v40.Role attribute), 99entered_by_id (workfront.versions.v40.Schedule at-

tribute), 101entered_by_id (workfront.versions.v40.ScoreCard

attribute), 102entered_by_id (workfront.versions.v40.Task attribute),

110entered_by_id (workfront.versions.v40.Template at-

tribute), 119entered_by_id (workfront.versions.v40.TemplateTask at-

tribute), 124entered_by_id (workfront.versions.v40.UIFilter at-

tribute), 129entered_by_id (workfront.versions.v40.UIGroupBy at-

tribute), 131entered_by_id (workfront.versions.v40.UIView at-

tribute), 132entered_by_id (workfront.versions.v40.Update attribute),

133entered_by_id (workfront.versions.v40.User attribute),

136entered_by_id (workfront.versions.v40.Work attribute),

145entered_by_name (work-

front.versions.unsupported.Update attribute),397

entered_by_name (workfront.versions.v40.Updateattribute), 133

entry_date (workfront.versions.unsupported.AccessTokenattribute), 162

entry_date (workfront.versions.unsupported.Acknowledgementattribute), 164

entry_date (workfront.versions.unsupported.Announcementattribute), 165

entry_date (workfront.versions.unsupported.AppBuild at-tribute), 168

entry_date (workfront.versions.unsupported.Approval at-tribute), 175

entry_date (workfront.versions.unsupported.ApprovalProcessattribute), 188

entry_date (workfront.versions.unsupported.AwaitingApprovalattribute), 197

entry_date (workfront.versions.unsupported.BackgroundJobattribute), 199

entry_date (workfront.versions.unsupported.Baseline at-tribute), 200

entry_date (workfront.versions.unsupported.BaselineTaskattribute), 202

entry_date (workfront.versions.unsupported.BurndownEventattribute), 204

entry_date (workfront.versions.unsupported.CalendarEventattribute), 205

entry_date (workfront.versions.unsupported.CalendarPortalSection

attribute), 208entry_date (workfront.versions.unsupported.Company at-

tribute), 215entry_date (workfront.versions.unsupported.Customer at-

tribute), 221entry_date (workfront.versions.unsupported.CustomerFeedback

attribute), 228entry_date (workfront.versions.unsupported.DocumentFolder

attribute), 239entry_date (workfront.versions.unsupported.DocumentProvider

attribute), 242entry_date (workfront.versions.unsupported.DocumentRequest

attribute), 244entry_date (workfront.versions.unsupported.DocumentShare

attribute), 246entry_date (workfront.versions.unsupported.DocumentVersion

attribute), 248entry_date (workfront.versions.unsupported.Endorsement

attribute), 251entry_date (workfront.versions.unsupported.EndorsementShare

attribute), 253entry_date (workfront.versions.unsupported.EventSubscription

attribute), 255entry_date (workfront.versions.unsupported.Expense at-

tribute), 257entry_date (workfront.versions.unsupported.ExternalSection

attribute), 262entry_date (workfront.versions.unsupported.Group

attribute), 266entry_date (workfront.versions.unsupported.Hour at-

tribute), 267entry_date (workfront.versions.unsupported.Issue at-

tribute), 274entry_date (workfront.versions.unsupported.Iteration at-

tribute), 279entry_date (workfront.versions.unsupported.JournalEntry

attribute), 282entry_date (workfront.versions.unsupported.Like at-

tribute), 290entry_date (workfront.versions.unsupported.MasterTask

attribute), 292entry_date (workfront.versions.unsupported.MilestonePath

attribute), 296entry_date (workfront.versions.unsupported.Note at-

tribute), 298entry_date (workfront.versions.unsupported.NotificationRecord

attribute), 302entry_date (workfront.versions.unsupported.PopAccount

attribute), 307entry_date (workfront.versions.unsupported.Portfolio at-

tribute), 315entry_date (workfront.versions.unsupported.Program at-

tribute), 318entry_date (workfront.versions.unsupported.Project at-

Index 493

Page 498: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

tribute), 325entry_date (workfront.versions.unsupported.RecentUpdate

attribute), 339entry_date (workfront.versions.unsupported.Role at-

tribute), 345entry_date (workfront.versions.unsupported.Schedule at-

tribute), 350entry_date (workfront.versions.unsupported.ScoreCard

attribute), 354entry_date (workfront.versions.unsupported.SearchEvent

attribute), 356entry_date (workfront.versions.unsupported.Task at-

tribute), 363entry_date (workfront.versions.unsupported.Template at-

tribute), 375entry_date (workfront.versions.unsupported.TemplateTask

attribute), 382entry_date (workfront.versions.unsupported.Update at-

tribute), 397entry_date (workfront.versions.unsupported.User at-

tribute), 402entry_date (workfront.versions.unsupported.UserActivity

attribute), 408entry_date (workfront.versions.unsupported.UserNote at-

tribute), 412entry_date (workfront.versions.unsupported.WhatsNew

attribute), 416entry_date (workfront.versions.unsupported.Work at-

tribute), 421entry_date (workfront.versions.v40.Approval attribute),

15entry_date (workfront.versions.v40.ApprovalProcess at-

tribute), 26entry_date (workfront.versions.v40.BackgroundJob at-

tribute), 30entry_date (workfront.versions.v40.Baseline attribute),

31entry_date (workfront.versions.v40.BaselineTask at-

tribute), 33entry_date (workfront.versions.v40.Company attribute),

37entry_date (workfront.versions.v40.Customer attribute),

39entry_date (workfront.versions.v40.DocumentFolder at-

tribute), 47entry_date (workfront.versions.v40.DocumentVersion at-

tribute), 49entry_date (workfront.versions.v40.Expense attribute), 51entry_date (workfront.versions.v40.Group attribute), 55entry_date (workfront.versions.v40.Hour attribute), 56entry_date (workfront.versions.v40.Issue attribute), 60entry_date (workfront.versions.v40.Iteration attribute), 65entry_date (workfront.versions.v40.JournalEntry at-

tribute), 67

entry_date (workfront.versions.v40.MilestonePathattribute), 72

entry_date (workfront.versions.v40.Note attribute), 73entry_date (workfront.versions.v40.Portfolio attribute),

79entry_date (workfront.versions.v40.Program attribute),

81entry_date (workfront.versions.v40.Project attribute), 86entry_date (workfront.versions.v40.Role attribute), 99entry_date (workfront.versions.v40.Schedule attribute),

101entry_date (workfront.versions.v40.ScoreCard attribute),

102entry_date (workfront.versions.v40.Task attribute), 110entry_date (workfront.versions.v40.Template attribute),

119entry_date (workfront.versions.v40.TemplateTask at-

tribute), 124entry_date (workfront.versions.v40.Update attribute), 133entry_date (workfront.versions.v40.User attribute), 136entry_date (workfront.versions.v40.UserActivity at-

tribute), 141entry_date (workfront.versions.v40.UserNote attribute),

141entry_date (workfront.versions.v40.Work attribute), 146enum_class (workfront.versions.unsupported.CustomEnum

attribute), 216enum_class (workfront.versions.v40.CustomEnum

attribute), 37equates_with (workfront.versions.unsupported.CustomEnum

attribute), 216equates_with (workfront.versions.v40.CustomEnum at-

tribute), 37error_message (workfront.versions.unsupported.BackgroundJob

attribute), 199error_message (workfront.versions.v40.BackgroundJob

attribute), 30est_completion_date (work-

front.versions.unsupported.Approval attribute),175

est_completion_date (work-front.versions.unsupported.Baseline attribute),200

est_completion_date (work-front.versions.unsupported.BaselineTaskattribute), 202

est_completion_date (work-front.versions.unsupported.Project attribute),325

est_completion_date (work-front.versions.unsupported.Task attribute),363

est_completion_date (work-front.versions.unsupported.Work attribute),

494 Index

Page 499: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

421est_completion_date (workfront.versions.v40.Approval

attribute), 15est_completion_date (workfront.versions.v40.Baseline

attribute), 31est_completion_date (work-

front.versions.v40.BaselineTask attribute),33

est_completion_date (workfront.versions.v40.Project at-tribute), 86

est_completion_date (workfront.versions.v40.Taskattribute), 110

est_completion_date (workfront.versions.v40.Work at-tribute), 146

est_start_date (workfront.versions.unsupported.Approvalattribute), 176

est_start_date (workfront.versions.unsupported.Baselineattribute), 201

est_start_date (workfront.versions.unsupported.BaselineTaskattribute), 202

est_start_date (workfront.versions.unsupported.Projectattribute), 325

est_start_date (workfront.versions.unsupported.Task at-tribute), 363

est_start_date (workfront.versions.unsupported.Work at-tribute), 421

est_start_date (workfront.versions.v40.Approval at-tribute), 15

est_start_date (workfront.versions.v40.Baseline at-tribute), 31

est_start_date (workfront.versions.v40.BaselineTask at-tribute), 33

est_start_date (workfront.versions.v40.Project attribute),87

est_start_date (workfront.versions.v40.Task attribute),110

est_start_date (workfront.versions.v40.Work attribute),146

estimate (workfront.versions.unsupported.Approval at-tribute), 176

estimate (workfront.versions.unsupported.Task attribute),364

estimate (workfront.versions.unsupported.Work at-tribute), 421

estimate (workfront.versions.v40.Approval attribute), 15estimate (workfront.versions.v40.Task attribute), 110estimate (workfront.versions.v40.Work attribute), 146estimate_by_hours (work-

front.versions.unsupported.Team attribute),371

estimate_by_hours (workfront.versions.v40.Team at-tribute), 116

estimate_completed (work-front.versions.unsupported.Iteration attribute),

279estimate_completed (workfront.versions.v40.Iteration at-

tribute), 65estimated_effect (workfront.versions.unsupported.Risk

attribute), 344estimated_effect (workfront.versions.v40.Risk attribute),

98eval_exp_date (workfront.versions.unsupported.Customer

attribute), 221eval_exp_date (workfront.versions.v40.Customer at-

tribute), 39event_handlers (workfront.versions.unsupported.Customer

attribute), 221event_obj_code (workfront.versions.unsupported.AppEvent

attribute), 168event_obj_code (workfront.versions.unsupported.BurndownEvent

attribute), 204event_obj_code (workfront.versions.unsupported.EventHandler

attribute), 254event_obj_code (workfront.versions.unsupported.SearchEvent

attribute), 357event_obj_id (workfront.versions.unsupported.BurndownEvent

attribute), 204event_type (workfront.versions.unsupported.AppEvent

attribute), 168event_type (workfront.versions.unsupported.EventSubscription

attribute), 255event_type (workfront.versions.unsupported.SearchEvent

attribute), 357event_type (workfront.versions.unsupported.UserNote at-

tribute), 412event_type (workfront.versions.v40.UserNote attribute),

141event_types (workfront.versions.unsupported.EventHandler

attribute), 254EventHandler (class in workfront.versions.unsupported),

254EventSubscription (class in work-

front.versions.unsupported), 255exchange_rate (workfront.versions.unsupported.Approval

attribute), 176exchange_rate (workfront.versions.unsupported.Project

attribute), 325exchange_rate (workfront.versions.unsupported.Template

attribute), 375exchange_rate (workfront.versions.v40.Approval at-

tribute), 15exchange_rate (workfront.versions.v40.Project attribute),

87exchange_rate (workfront.versions.v40.Template at-

tribute), 119exchange_rates (workfront.versions.unsupported.Approval

attribute), 176exchange_rates (workfront.versions.unsupported.Project

Index 495

Page 500: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

attribute), 325exchange_rates (workfront.versions.v40.Approval at-

tribute), 15exchange_rates (workfront.versions.v40.Project at-

tribute), 87ExchangeRate (class in workfront.versions.unsupported),

255ExchangeRate (class in workfront.versions.v40), 50exclude_users (workfront.versions.unsupported.SSOOption

attribute), 348exp_date (workfront.versions.unsupported.Customer at-

tribute), 221exp_date (workfront.versions.unsupported.LicenseOrder

attribute), 289exp_date (workfront.versions.v40.Customer attribute), 39exp_obj_code (workfront.versions.unsupported.Expense

attribute), 257exp_obj_code (workfront.versions.v40.Expense at-

tribute), 51expand_view_aliases() (work-

front.versions.unsupported.UIView method),395

Expense (class in workfront.versions.unsupported), 256Expense (class in workfront.versions.v40), 50expense (workfront.versions.unsupported.JournalEntry

attribute), 282expense (workfront.versions.unsupported.ParameterValue

attribute), 305expense (workfront.versions.v40.JournalEntry attribute),

67expense_id (workfront.versions.unsupported.JournalEntry

attribute), 282expense_id (workfront.versions.unsupported.ParameterValue

attribute), 305expense_id (workfront.versions.v40.JournalEntry at-

tribute), 67expense_type (workfront.versions.unsupported.Expense

attribute), 257expense_type (workfront.versions.v40.Expense attribute),

51expense_type_id (work-

front.versions.unsupported.Expense attribute),257

expense_type_id (workfront.versions.v40.Expenseattribute), 51

expense_types (workfront.versions.unsupported.AppGlobalattribute), 169

expense_types (workfront.versions.unsupported.Customerattribute), 221

expense_types (workfront.versions.v40.Customer at-tribute), 39

expenses (workfront.versions.unsupported.Approval at-tribute), 176

expenses (workfront.versions.unsupported.BillingRecord

attribute), 203expenses (workfront.versions.unsupported.MasterTask

attribute), 292expenses (workfront.versions.unsupported.Project at-

tribute), 325expenses (workfront.versions.unsupported.Task at-

tribute), 364expenses (workfront.versions.unsupported.Template at-

tribute), 375expenses (workfront.versions.unsupported.TemplateTask

attribute), 382expenses (workfront.versions.unsupported.Work at-

tribute), 421expenses (workfront.versions.v40.Approval attribute), 16expenses (workfront.versions.v40.BillingRecord at-

tribute), 34expenses (workfront.versions.v40.Project attribute), 87expenses (workfront.versions.v40.Task attribute), 110expenses (workfront.versions.v40.Template attribute),

119expenses (workfront.versions.v40.TemplateTask at-

tribute), 124expenses (workfront.versions.v40.Work attribute), 146ExpenseType (class in workfront.versions.unsupported),

258ExpenseType (class in workfront.versions.v40), 52expiration_date (workfront.versions.unsupported.BackgroundJob

attribute), 199expiration_date (workfront.versions.v40.BackgroundJob

attribute), 30expire_date (workfront.versions.unsupported.AccessToken

attribute), 162expire_password() (workfront.versions.unsupported.User

method), 402export() (workfront.versions.unsupported.Feature

method), 263export_as_msproject_file() (work-

front.versions.unsupported.Project method),325

export_business_case() (work-front.versions.unsupported.Project method),325

export_dashboard() (work-front.versions.unsupported.PortalTab method),313

expression (workfront.versions.unsupported.CallableExpressionattribute), 209

ext (workfront.versions.unsupported.DocumentVersionattribute), 248

ext (workfront.versions.unsupported.ExternalDocumentattribute), 260

ext (workfront.versions.v40.DocumentVersion attribute),49

ext_ref_id (workfront.versions.unsupported.AccessLevel

496 Index

Page 501: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

attribute), 154ext_ref_id (workfront.versions.unsupported.AccountRep

attribute), 163ext_ref_id (workfront.versions.unsupported.Approval at-

tribute), 176ext_ref_id (workfront.versions.unsupported.ApprovalProcess

attribute), 188ext_ref_id (workfront.versions.unsupported.BillingRecord

attribute), 203ext_ref_id (workfront.versions.unsupported.CalendarEvent

attribute), 205ext_ref_id (workfront.versions.unsupported.Category at-

tribute), 210ext_ref_id (workfront.versions.unsupported.Company at-

tribute), 215ext_ref_id (workfront.versions.unsupported.CustomEnum

attribute), 216ext_ref_id (workfront.versions.unsupported.Customer at-

tribute), 221ext_ref_id (workfront.versions.unsupported.Document

attribute), 232ext_ref_id (workfront.versions.unsupported.DocumentRequest

attribute), 244ext_ref_id (workfront.versions.unsupported.ExchangeRate

attribute), 255ext_ref_id (workfront.versions.unsupported.Expense at-

tribute), 257ext_ref_id (workfront.versions.unsupported.ExpenseType

attribute), 259ext_ref_id (workfront.versions.unsupported.ExternalSection

attribute), 262ext_ref_id (workfront.versions.unsupported.Group

attribute), 266ext_ref_id (workfront.versions.unsupported.Hour at-

tribute), 267ext_ref_id (workfront.versions.unsupported.HourType at-

tribute), 269ext_ref_id (workfront.versions.unsupported.Issue at-

tribute), 274ext_ref_id (workfront.versions.unsupported.JournalEntry

attribute), 282ext_ref_id (workfront.versions.unsupported.JournalField

attribute), 285ext_ref_id (workfront.versions.unsupported.LayoutTemplate

attribute), 286ext_ref_id (workfront.versions.unsupported.LicenseOrder

attribute), 289ext_ref_id (workfront.versions.unsupported.MasterTask

attribute), 292ext_ref_id (workfront.versions.unsupported.Milestone at-

tribute), 295ext_ref_id (workfront.versions.unsupported.MilestonePath

attribute), 296ext_ref_id (workfront.versions.unsupported.Note at-

tribute), 298ext_ref_id (workfront.versions.unsupported.Parameter at-

tribute), 303ext_ref_id (workfront.versions.unsupported.ParameterGroup

attribute), 304ext_ref_id (workfront.versions.unsupported.ParameterOption

attribute), 304ext_ref_id (workfront.versions.unsupported.PortalProfile

attribute), 308ext_ref_id (workfront.versions.unsupported.PortalSection

attribute), 309ext_ref_id (workfront.versions.unsupported.PortalTab at-

tribute), 313ext_ref_id (workfront.versions.unsupported.Portfolio at-

tribute), 316ext_ref_id (workfront.versions.unsupported.Program at-

tribute), 318ext_ref_id (workfront.versions.unsupported.Project at-

tribute), 325ext_ref_id (workfront.versions.unsupported.QueueDef at-

tribute), 334ext_ref_id (workfront.versions.unsupported.QueueTopic

attribute), 335ext_ref_id (workfront.versions.unsupported.Rate at-

tribute), 337ext_ref_id (workfront.versions.unsupported.Reseller at-

tribute), 341ext_ref_id (workfront.versions.unsupported.ResourcePool

attribute), 343ext_ref_id (workfront.versions.unsupported.Risk at-

tribute), 344ext_ref_id (workfront.versions.unsupported.RiskType at-

tribute), 344ext_ref_id (workfront.versions.unsupported.Role at-

tribute), 345ext_ref_id (workfront.versions.unsupported.Schedule at-

tribute), 350ext_ref_id (workfront.versions.unsupported.ScoreCard

attribute), 354ext_ref_id (workfront.versions.unsupported.Task at-

tribute), 364ext_ref_id (workfront.versions.unsupported.Template at-

tribute), 375ext_ref_id (workfront.versions.unsupported.TemplateTask

attribute), 382ext_ref_id (workfront.versions.unsupported.Timesheet

attribute), 388ext_ref_id (workfront.versions.unsupported.User at-

tribute), 402ext_ref_id (workfront.versions.unsupported.Work at-

tribute), 421ext_ref_id (workfront.versions.unsupported.WorkItem at-

tribute), 429ext_ref_id (workfront.versions.v40.Approval attribute),

Index 497

Page 502: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

16ext_ref_id (workfront.versions.v40.ApprovalProcess at-

tribute), 26ext_ref_id (workfront.versions.v40.BillingRecord at-

tribute), 34ext_ref_id (workfront.versions.v40.Category attribute),

35ext_ref_id (workfront.versions.v40.Company attribute),

37ext_ref_id (workfront.versions.v40.CustomEnum at-

tribute), 37ext_ref_id (workfront.versions.v40.Customer attribute),

39ext_ref_id (workfront.versions.v40.Document attribute),

44ext_ref_id (workfront.versions.v40.ExchangeRate at-

tribute), 50ext_ref_id (workfront.versions.v40.Expense attribute), 51ext_ref_id (workfront.versions.v40.ExpenseType at-

tribute), 53ext_ref_id (workfront.versions.v40.Group attribute), 55ext_ref_id (workfront.versions.v40.Hour attribute), 56ext_ref_id (workfront.versions.v40.HourType attribute),

57ext_ref_id (workfront.versions.v40.Issue attribute), 60ext_ref_id (workfront.versions.v40.JournalEntry at-

tribute), 67ext_ref_id (workfront.versions.v40.LayoutTemplate at-

tribute), 70ext_ref_id (workfront.versions.v40.Milestone attribute),

71ext_ref_id (workfront.versions.v40.MilestonePath at-

tribute), 72ext_ref_id (workfront.versions.v40.Note attribute), 73ext_ref_id (workfront.versions.v40.Parameter attribute),

77ext_ref_id (workfront.versions.v40.ParameterGroup at-

tribute), 77ext_ref_id (workfront.versions.v40.ParameterOption at-

tribute), 78ext_ref_id (workfront.versions.v40.Portfolio attribute),

79ext_ref_id (workfront.versions.v40.Program attribute), 81ext_ref_id (workfront.versions.v40.Project attribute), 87ext_ref_id (workfront.versions.v40.QueueDef attribute),

94ext_ref_id (workfront.versions.v40.QueueTopic at-

tribute), 95ext_ref_id (workfront.versions.v40.Rate attribute), 96ext_ref_id (workfront.versions.v40.ResourcePool at-

tribute), 98ext_ref_id (workfront.versions.v40.Risk attribute), 98ext_ref_id (workfront.versions.v40.RiskType attribute),

99

ext_ref_id (workfront.versions.v40.Role attribute), 99ext_ref_id (workfront.versions.v40.Schedule attribute),

101ext_ref_id (workfront.versions.v40.ScoreCard attribute),

102ext_ref_id (workfront.versions.v40.Task attribute), 110ext_ref_id (workfront.versions.v40.Template attribute),

119ext_ref_id (workfront.versions.v40.TemplateTask at-

tribute), 124ext_ref_id (workfront.versions.v40.Timesheet attribute),

128ext_ref_id (workfront.versions.v40.User attribute), 136ext_ref_id (workfront.versions.v40.Work attribute), 146ext_ref_id (workfront.versions.v40.WorkItem attribute),

153external_actions (work-

front.versions.unsupported.MetaRecord at-tribute), 294

external_document_storage (work-front.versions.unsupported.Customer attribute),221

external_document_storage (work-front.versions.v40.Customer attribute), 39

external_download_url (work-front.versions.unsupported.DocumentVersionattribute), 248

external_download_url (work-front.versions.v40.DocumentVersion attribute),49

external_emails (workfront.versions.unsupported.ScheduledReportattribute), 352

external_integration_type (work-front.versions.unsupported.Document at-tribute), 232

external_integration_type (work-front.versions.unsupported.DocumentProviderattribute), 242

external_integration_type (work-front.versions.unsupported.DocumentProviderConfigattribute), 243

external_integration_type (work-front.versions.unsupported.DocumentProviderMetadataattribute), 243

external_integration_type (work-front.versions.unsupported.DocumentVersionattribute), 248

external_integration_type (work-front.versions.unsupported.LinkedFolderattribute), 291

external_integration_type (work-front.versions.v40.Document attribute), 44

external_integration_type (work-front.versions.v40.DocumentVersion attribute),

498 Index

Page 503: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

49external_preview_url (work-

front.versions.unsupported.DocumentVersionattribute), 248

external_preview_url (work-front.versions.v40.DocumentVersion attribute),49

external_save_location (work-front.versions.unsupported.DocumentVersionattribute), 248

external_save_location (work-front.versions.v40.DocumentVersion attribute),49

external_section (work-front.versions.unsupported.PortalTabSectionattribute), 314

external_section_id (work-front.versions.unsupported.PortalTabSectionattribute), 314

external_sections (work-front.versions.unsupported.AppGlobal at-tribute), 169

external_sections (work-front.versions.unsupported.Customer attribute),221

external_sections (workfront.versions.unsupported.Userattribute), 402

external_storage_id (work-front.versions.unsupported.DocumentVersionattribute), 248

external_storage_id (work-front.versions.unsupported.LinkedFolderattribute), 291

external_storage_id (work-front.versions.v40.DocumentVersion attribute),49

external_username (workfront.versions.unsupported.Userattribute), 402

external_users_enabled (work-front.versions.unsupported.Customer attribute),221

external_users_enabled (work-front.versions.unsupported.LicenseOrderattribute), 289

external_users_enabled (work-front.versions.v40.Customer attribute), 39

external_users_group (work-front.versions.unsupported.Customer attribute),221

external_users_group_id (work-front.versions.unsupported.Customer attribute),221

ExternalDocument (class in work-front.versions.unsupported), 259

ExternalSection (class in work-front.versions.unsupported), 261

extra_document_storage (work-front.versions.unsupported.Customer attribute),221

extra_document_storage (work-front.versions.v40.Customer attribute), 39

FFavorite (class in workfront.versions.unsupported), 263Favorite (class in workfront.versions.v40), 53favorites (workfront.versions.unsupported.User attribute),

402favorites (workfront.versions.v40.User attribute), 136Feature (class in workfront.versions.unsupported), 263feature_name (workfront.versions.unsupported.WhatsNew

attribute), 416features_mapping (work-

front.versions.unsupported.AppGlobal at-tribute), 169

feedback_status (work-front.versions.unsupported.Assignment at-tribute), 191

feedback_status (workfront.versions.v40.Assignment at-tribute), 28

feedback_type (workfront.versions.unsupported.CustomerFeedbackattribute), 228

Field (class in workfront.meta), 8field_access_privileges (work-

front.versions.unsupported.AccessLevelattribute), 155

field_name (workfront.versions.unsupported.ImportRowattribute), 270

field_name (workfront.versions.unsupported.JournalEntryattribute), 282

field_name (workfront.versions.unsupported.JournalFieldattribute), 285

field_name (workfront.versions.unsupported.LayoutTemplateCardattribute), 288

field_name (workfront.versions.v40.JournalEntry at-tribute), 67

FieldNotLoaded, 8file_extension (workfront.versions.unsupported.AnnouncementAttachment

attribute), 166file_for_completed_job() (work-

front.versions.unsupported.BackgroundJobmethod), 199

file_handle() (workfront.versions.unsupported.Announcementmethod), 165

file_handle() (workfront.versions.unsupported.DocumentVersionmethod), 248

file_name (workfront.versions.unsupported.DocumentVersionattribute), 248

Index 499

Page 504: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

file_name (workfront.versions.v40.DocumentVersion at-tribute), 49

file_path (workfront.versions.unsupported.DocumentTaskStatusattribute), 247

file_type (workfront.versions.unsupported.Document at-tribute), 232

file_type (workfront.versions.unsupported.DocumentVersionattribute), 248

file_type (workfront.versions.unsupported.ExternalDocumentattribute), 260

filter (workfront.versions.unsupported.PortalSection at-tribute), 309

filter_actions_for_external() (work-front.versions.unsupported.AccessLevelmethod), 155

filter_available_actions() (work-front.versions.unsupported.AccessLevelmethod), 155

filter_control (workfront.versions.unsupported.PortalSectionattribute), 309

filter_hour_types (work-front.versions.unsupported.Approval attribute),176

filter_hour_types (work-front.versions.unsupported.Project attribute),325

filter_hour_types (work-front.versions.unsupported.Template attribute),375

filter_hour_types (workfront.versions.v40.Approval at-tribute), 16

filter_hour_types (workfront.versions.v40.Project at-tribute), 87

filter_hour_types (workfront.versions.v40.Template at-tribute), 119

filter_id (workfront.versions.unsupported.PortalSectionattribute), 309

filter_type (workfront.versions.unsupported.UIFilter at-tribute), 391

filter_type (workfront.versions.v40.UIFilter attribute),129

filters (workfront.versions.unsupported.CalendarSectionattribute), 208

finance_last_update_date (work-front.versions.unsupported.Approval attribute),176

finance_last_update_date (work-front.versions.unsupported.Project attribute),325

finance_last_update_date (work-front.versions.v40.Approval attribute), 16

finance_last_update_date (work-front.versions.v40.Project attribute), 87

finance_representative (work-

front.versions.unsupported.Customer attribute),221

FinancialData (class in workfront.versions.unsupported),264

FinancialData (class in workfront.versions.v40), 53first_name (workfront.versions.unsupported.AccountRep

attribute), 163first_name (workfront.versions.unsupported.User at-

tribute), 402first_name (workfront.versions.v40.User attribute), 136first_response (workfront.versions.unsupported.Approval

attribute), 176first_response (workfront.versions.unsupported.Issue at-

tribute), 274first_response (workfront.versions.unsupported.Work at-

tribute), 421first_response (workfront.versions.v40.Approval at-

tribute), 16first_response (workfront.versions.v40.Issue attribute), 61first_response (workfront.versions.v40.Work attribute),

146firstname (workfront.versions.unsupported.Customer at-

tribute), 221firstname (workfront.versions.v40.Customer attribute), 39fixed_cost (workfront.versions.unsupported.Approval at-

tribute), 176fixed_cost (workfront.versions.unsupported.FinancialData

attribute), 264fixed_cost (workfront.versions.unsupported.Project at-

tribute), 325fixed_cost (workfront.versions.unsupported.Template at-

tribute), 375fixed_cost (workfront.versions.v40.Approval attribute),

16fixed_cost (workfront.versions.v40.FinancialData at-

tribute), 54fixed_cost (workfront.versions.v40.Project attribute), 87fixed_cost (workfront.versions.v40.Template attribute),

119fixed_end_date (workfront.versions.unsupported.Approval

attribute), 176fixed_end_date (workfront.versions.unsupported.Project

attribute), 325fixed_end_date (workfront.versions.v40.Approval at-

tribute), 16fixed_end_date (workfront.versions.v40.Project at-

tribute), 87fixed_revenue (workfront.versions.unsupported.Approval

attribute), 176fixed_revenue (workfront.versions.unsupported.Project

attribute), 325fixed_revenue (workfront.versions.unsupported.Template

attribute), 375fixed_revenue (workfront.versions.v40.Approval at-

500 Index

Page 505: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

tribute), 16fixed_revenue (workfront.versions.v40.Project attribute),

87fixed_revenue (workfront.versions.v40.Template at-

tribute), 119fixed_start_date (work-

front.versions.unsupported.Approval attribute),176

fixed_start_date (workfront.versions.unsupported.Projectattribute), 325

fixed_start_date (workfront.versions.v40.Approvalattribute), 16

fixed_start_date (workfront.versions.v40.Project at-tribute), 87

flags (workfront.versions.unsupported.JournalEntry at-tribute), 282

flags (workfront.versions.v40.JournalEntry attribute), 68focus_factor (workfront.versions.unsupported.Iteration

attribute), 279focus_factor (workfront.versions.v40.Iteration attribute),

65folder (workfront.versions.unsupported.DocsFolders at-

tribute), 229folder (workfront.versions.unsupported.LinkedFolder at-

tribute), 291folder_id (workfront.versions.unsupported.DocsFolders

attribute), 229folder_id (workfront.versions.unsupported.LinkedFolder

attribute), 291folder_ids (workfront.versions.unsupported.Document

attribute), 232folder_name (workfront.versions.unsupported.PortalSection

attribute), 309folders (workfront.versions.unsupported.Document at-

tribute), 232folders (workfront.versions.v40.Document attribute), 44forbidden_actions (work-

front.versions.unsupported.AccessLevelPermissionsattribute), 157

forbidden_actions (work-front.versions.unsupported.AccessRule at-tribute), 160

forbidden_actions (work-front.versions.unsupported.AccessRulePreferenceattribute), 160

forbidden_actions (workfront.versions.v40.AccessRuleattribute), 9

force_edit (workfront.versions.unsupported.ApprovalProcessAttachableattribute), 189

force_load (workfront.versions.unsupported.PortalSectionattribute), 309

format (workfront.versions.unsupported.ScheduledReportattribute), 352

format_constraint (work-

front.versions.unsupported.Parameter at-tribute), 303

format_constraint (workfront.versions.v40.Parameter at-tribute), 77

format_doc_size (work-front.versions.unsupported.AnnouncementAttachmentattribute), 166

format_doc_size (work-front.versions.unsupported.DocumentVersionattribute), 248

format_doc_size (work-front.versions.v40.DocumentVersion attribute),49

format_entry_date (work-front.versions.unsupported.DocumentRequestattribute), 244

format_entry_date (work-front.versions.unsupported.DocumentVersionattribute), 248

format_entry_date (workfront.versions.unsupported.Noteattribute), 298

format_entry_date (work-front.versions.v40.DocumentVersion attribute),49

format_entry_date (workfront.versions.v40.Note at-tribute), 73

formatted_recipients (work-front.versions.unsupported.Announcementattribute), 165

forward_attachments() (work-front.versions.unsupported.AnnouncementAttachmentmethod), 166

frame (workfront.versions.unsupported.ExternalSectionattribute), 262

friday (workfront.versions.unsupported.Schedule at-tribute), 350

friday (workfront.versions.v40.Schedule attribute), 101friendly_url (workfront.versions.unsupported.ExternalSection

attribute), 262from_user (workfront.versions.unsupported.UserDelegation

attribute), 409from_user_id (workfront.versions.unsupported.UserDelegation

attribute), 409fte (workfront.versions.unsupported.User attribute), 402fte (workfront.versions.v40.User attribute), 136full_users (workfront.versions.unsupported.Customer at-

tribute), 222full_users (workfront.versions.unsupported.LicenseOrder

attribute), 289full_users (workfront.versions.v40.Customer attribute),

39

Ggenerate_customer_timesheets() (work-

Index 501

Page 506: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

front.versions.unsupported.TimesheetProfilemethod), 389

get() (workfront.Session method), 6get_access_level_permissions_for_obj_code() (work-

front.versions.unsupported.AccessLevelmethod), 155

get_accessed_users() (work-front.versions.unsupported.AuditLoginAsSessionmethod), 193

get_advanced_proof_options_url() (work-front.versions.unsupported.Document method),232

get_all_type_provider_ids() (work-front.versions.unsupported.DocumentProvidermethod), 242

get_api_key() (workfront.Session method), 7get_api_key() (workfront.versions.unsupported.User

method), 402get_authentication_url_for_provider() (work-

front.versions.unsupported.ExternalDocumentmethod), 260

get_avatar_data() (work-front.versions.unsupported.Avatar method),196

get_avatar_download_url() (work-front.versions.unsupported.Avatar method),196

get_avatar_file() (workfront.versions.unsupported.Avatarmethod), 196

get_concatenated_expression_form() (work-front.versions.unsupported.CalendarSectionmethod), 208

get_days_to_expiration_for_user() (work-front.versions.unsupported.Authenticationmethod), 194

get_default_access_permissions() (work-front.versions.unsupported.AccessLevelmethod), 155

get_default_access_rule_preferences() (work-front.versions.unsupported.AccessLevelmethod), 155

get_default_forbidden_actions() (work-front.versions.unsupported.AccessLevelmethod), 155

get_default_op_task_priority_enum() (work-front.versions.unsupported.CustomEnummethod), 216

get_default_op_task_priority_enum() (work-front.versions.v40.CustomEnum method),37

get_default_project_status_enum() (work-front.versions.unsupported.CustomEnummethod), 216

get_default_project_status_enum() (work-

front.versions.v40.CustomEnum method),37

get_default_severity_enum() (work-front.versions.unsupported.CustomEnummethod), 216

get_default_severity_enum() (work-front.versions.v40.CustomEnum method),37

get_default_task_priority_enum() (work-front.versions.unsupported.CustomEnummethod), 216

get_default_task_priority_enum() (work-front.versions.v40.CustomEnum method),37

get_document_contents_in_zip() (work-front.versions.unsupported.Document method),232

get_earliest_work_time_of_day() (work-front.versions.unsupported.Schedule method),350

get_earliest_work_time_of_day() (work-front.versions.v40.Schedule method), 101

get_email_subjects() (work-front.versions.unsupported.EmailTemplatemethod), 250

get_enum_color() (work-front.versions.unsupported.CustomEnummethod), 216

get_expression_types() (work-front.versions.unsupported.Category method),210

get_external_document_contents() (work-front.versions.unsupported.Document method),232

get_filtered_categories() (work-front.versions.unsupported.Category method),210

get_folder_size_in_bytes() (work-front.versions.unsupported.DocumentFoldermethod), 239

get_formula_calculated_expression() (work-front.versions.unsupported.Category method),210

get_friendly_calculated_expression() (work-front.versions.unsupported.Category method),210

get_generic_thumbnail_url() (work-front.versions.unsupported.Document method),232

get_help_desk_registration_email() (work-front.versions.unsupported.EmailTemplatemethod), 251

get_help_desk_user_can_add_issue() (work-front.versions.unsupported.Project method),

502 Index

Page 507: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

325get_inactive_notifications_value() (work-

front.versions.unsupported.UserPrefValuemethod), 414

get_latest_work_time_of_day() (work-front.versions.unsupported.Schedule method),350

get_latest_work_time_of_day() (work-front.versions.v40.Schedule method), 101

get_layout_template_cards_by_card_location() (work-front.versions.unsupported.LayoutTemplatemethod), 286

get_layout_template_users() (work-front.versions.unsupported.LayoutTemplatemethod), 287

get_license_info() (work-front.versions.unsupported.Customer method),222

get_liked_endorsement_ids() (work-front.versions.unsupported.Endorsementmethod), 251

get_liked_journal_entry_ids() (work-front.versions.unsupported.JournalEntrymethod), 282

get_liked_note_ids() (work-front.versions.unsupported.Note method),298

get_linked_folder_meta_data() (work-front.versions.unsupported.DocumentFoldermethod), 240

get_maximum_access_permissions() (work-front.versions.unsupported.AccessLevelmethod), 155

get_metadata_map_for_provider_type() (work-front.versions.unsupported.DocumentProviderMetadatamethod), 243

get_my_accomplishments_count() (work-front.versions.unsupported.Work method),421

get_my_awaiting_approvals_count() (work-front.versions.unsupported.AwaitingApprovalmethod), 197

get_my_awaiting_approvals_filtered_count() (work-front.versions.unsupported.AwaitingApprovalmethod), 197

get_my_notification_last_view_date() (work-front.versions.unsupported.UserNote method),412

get_my_submitted_awaiting_approvals_count() (work-front.versions.unsupported.AwaitingApprovalmethod), 197

get_my_work_count() (work-front.versions.unsupported.Work method),421

get_next_completion_date() (work-front.versions.unsupported.Schedule method),351

get_next_completion_date() (work-front.versions.v40.Schedule method), 101

get_next_customer_feedback_type() (work-front.versions.unsupported.User method),402

get_next_start_date() (work-front.versions.unsupported.Schedule method),351

get_next_start_date() (workfront.versions.v40.Schedulemethod), 101

get_or_add_external_user() (work-front.versions.unsupported.User method),402

get_password_complexity_by_token() (work-front.versions.unsupported.Authenticationmethod), 194

get_password_complexity_by_username() (work-front.versions.unsupported.Authenticationmethod), 194

get_pk() (workfront.versions.unsupported.PortalSectionmethod), 309

get_pretty_expression_form() (work-front.versions.unsupported.CalendarSectionmethod), 208

get_project_currency() (work-front.versions.unsupported.Project method),326

get_proof_details() (work-front.versions.unsupported.Document method),232

get_proof_details_url() (work-front.versions.unsupported.Document method),232

get_proof_url() (workfront.versions.unsupported.Documentmethod), 232

get_proof_usage() (work-front.versions.unsupported.Document method),232

get_provider_with_write_access() (work-front.versions.unsupported.DocumentProvidermethod), 242

get_public_generic_thumbnail_url() (work-front.versions.unsupported.Document method),232

get_public_thumbnail_file_path() (work-front.versions.unsupported.Document method),233

get_report_from_cache() (work-front.versions.unsupported.PortalSectionmethod), 309

get_reset_password_token_expired() (work-

Index 503

Page 508: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

front.versions.unsupported.User method),402

get_s3document_url() (work-front.versions.unsupported.Document method),233

get_security_parent_ids() (work-front.versions.unsupported.AccessLevelmethod), 156

get_security_parent_obj_code() (work-front.versions.unsupported.AccessLevelmethod), 156

get_ssooption_by_domain() (work-front.versions.unsupported.Authenticationmethod), 194

get_template_currency() (work-front.versions.unsupported.Template method),375

get_thumbnail_data() (work-front.versions.unsupported.Document method),233

get_thumbnail_file_path() (work-front.versions.unsupported.Document method),233

get_thumbnail_path() (work-front.versions.unsupported.ExternalDocumentmethod), 260

get_total_size_for_documents() (work-front.versions.unsupported.Document method),233

get_update_types_for_stream() (work-front.versions.unsupported.Update method),397

get_upgrades_info() (work-front.versions.unsupported.Authenticationmethod), 194

get_user_accessor_ids() (work-front.versions.unsupported.AccessLevelmethod), 156

get_user_assignments() (work-front.versions.unsupported.UserAvailabilitymethod), 408

get_user_invitation_email() (work-front.versions.unsupported.EmailTemplatemethod), 251

get_view_fields() (work-front.versions.unsupported.UIView method),395

get_viewable_object_obj_codes() (work-front.versions.unsupported.AccessLevelmethod), 156

get_work_requests_count() (work-front.versions.unsupported.Work method),421

global_uikey (workfront.versions.unsupported.ExternalSection

attribute), 262global_uikey (workfront.versions.unsupported.PortalSection

attribute), 309global_uikey (workfront.versions.unsupported.UIFilter

attribute), 391global_uikey (workfront.versions.unsupported.UIGroupBy

attribute), 393global_uikey (workfront.versions.unsupported.UIView

attribute), 395global_uikey (workfront.versions.v40.UIFilter attribute),

129global_uikey (workfront.versions.v40.UIGroupBy

attribute), 131global_uikey (workfront.versions.v40.UIView attribute),

132goal (workfront.versions.unsupported.Iteration attribute),

280goal (workfront.versions.v40.Iteration attribute), 66golden (workfront.versions.unsupported.Customer

attribute), 222golden (workfront.versions.v40.Customer attribute), 39grant_access() (workfront.versions.unsupported.AccessRequest

method), 158grant_object_access() (work-

front.versions.unsupported.AccessRequestmethod), 158

granter (workfront.versions.unsupported.AccessRequestattribute), 158

granter_id (workfront.versions.unsupported.AccessRequestattribute), 158

Group (class in workfront.versions.unsupported), 265Group (class in workfront.versions.v40), 55group (workfront.versions.unsupported.AnnouncementRecipient

attribute), 167group (workfront.versions.unsupported.Approval at-

tribute), 176group (workfront.versions.unsupported.Category at-

tribute), 210group (workfront.versions.unsupported.Project attribute),

326group (workfront.versions.unsupported.Schedule at-

tribute), 351group (workfront.versions.unsupported.Task attribute),

364group (workfront.versions.unsupported.UserGroups at-

tribute), 410group (workfront.versions.unsupported.Work attribute),

421group (workfront.versions.v40.Approval attribute), 16group (workfront.versions.v40.Category attribute), 35group (workfront.versions.v40.Project attribute), 87group (workfront.versions.v40.Schedule attribute), 101group (workfront.versions.v40.Task attribute), 110group (workfront.versions.v40.Work attribute), 146

504 Index

Page 509: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

group_by (workfront.versions.unsupported.PortalSectionattribute), 309

group_by_id (workfront.versions.unsupported.PortalSectionattribute), 309

group_control (workfront.versions.unsupported.PortalSectionattribute), 309

group_id (workfront.versions.unsupported.AnnouncementRecipientattribute), 167

group_id (workfront.versions.unsupported.Approval at-tribute), 176

group_id (workfront.versions.unsupported.Category at-tribute), 210

group_id (workfront.versions.unsupported.Project at-tribute), 326

group_id (workfront.versions.unsupported.Schedule at-tribute), 351

group_id (workfront.versions.unsupported.Task at-tribute), 364

group_id (workfront.versions.unsupported.UserGroupsattribute), 410

group_id (workfront.versions.unsupported.Work at-tribute), 421

group_id (workfront.versions.v40.Approval attribute), 16group_id (workfront.versions.v40.Category attribute), 35group_id (workfront.versions.v40.Project attribute), 87group_id (workfront.versions.v40.Schedule attribute),

102group_id (workfront.versions.v40.Task attribute), 110group_id (workfront.versions.v40.Work attribute), 146group_ids (workfront.versions.unsupported.ScheduledReport

attribute), 352group_name (workfront.versions.unsupported.LayoutTemplateCard

attribute), 288groups (workfront.versions.unsupported.Customer

attribute), 222groups (workfront.versions.unsupported.Document at-

tribute), 234groups (workfront.versions.unsupported.MasterTask at-

tribute), 292groups (workfront.versions.unsupported.MilestonePath

attribute), 296groups (workfront.versions.unsupported.Portfolio at-

tribute), 316groups (workfront.versions.unsupported.ScheduledReport

attribute), 352groups (workfront.versions.unsupported.Template at-

tribute), 375groups (workfront.versions.v40.Customer attribute), 40groups (workfront.versions.v40.Document attribute), 44groups (workfront.versions.v40.MilestonePath attribute),

72groups (workfront.versions.v40.Portfolio attribute), 79groups (workfront.versions.v40.Template attribute), 119

Hhandle (workfront.versions.unsupported.Avatar attribute),

196handle (workfront.versions.unsupported.Document at-

tribute), 234handle (workfront.versions.unsupported.DocumentVersion

attribute), 249handle (workfront.versions.v40.Avatar attribute), 30handle (workfront.versions.v40.Document attribute), 44handle (workfront.versions.v40.DocumentVersion at-

tribute), 49handle_proof_callback() (work-

front.versions.unsupported.Document method),234

handler_class_name (work-front.versions.unsupported.BackgroundJobattribute), 199

handler_class_name (work-front.versions.v40.BackgroundJob attribute),30

handler_properties (work-front.versions.unsupported.EventHandlerattribute), 254

handler_type (workfront.versions.unsupported.EventHandlerattribute), 254

handoff_date (workfront.versions.unsupported.Approvalattribute), 176

handoff_date (workfront.versions.unsupported.Task at-tribute), 364

handoff_date (workfront.versions.unsupported.Work at-tribute), 421

handoff_date (workfront.versions.v40.Approval at-tribute), 16

handoff_date (workfront.versions.v40.Task attribute), 110handoff_date (workfront.versions.v40.Work attribute),

146has_announcement_delete_access() (work-

front.versions.unsupported.UserNote method),412

has_any_access() (work-front.versions.unsupported.AccessLevelmethod), 156

has_apiaccess (workfront.versions.unsupported.User at-tribute), 402

has_apiaccess (workfront.versions.v40.User attribute),136

has_assign_permissions (work-front.versions.unsupported.TeamMemberattribute), 373

has_assign_permissions (work-front.versions.v40.TeamMember attribute),118

has_attachments (work-front.versions.unsupported.Announcement

Index 505

Page 510: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

attribute), 165has_budget_conflict (work-

front.versions.unsupported.Approval attribute),176

has_budget_conflict (work-front.versions.unsupported.Project attribute),326

has_budget_conflict (workfront.versions.v40.Approvalattribute), 16

has_budget_conflict (workfront.versions.v40.Project at-tribute), 87

has_calc_error (workfront.versions.unsupported.Approvalattribute), 176

has_calc_error (workfront.versions.unsupported.Projectattribute), 326

has_calc_error (workfront.versions.v40.Approval at-tribute), 16

has_calc_error (workfront.versions.v40.Project attribute),87

has_calculated_fields (work-front.versions.unsupported.Category attribute),211

has_calculated_fields (workfront.versions.v40.Categoryattribute), 35

has_completion_constraint (work-front.versions.unsupported.Approval attribute),176

has_completion_constraint (work-front.versions.unsupported.Project attribute),326

has_completion_constraint (work-front.versions.unsupported.Task attribute),364

has_completion_constraint (work-front.versions.unsupported.Work attribute),421

has_completion_constraint (work-front.versions.v40.Approval attribute), 16

has_completion_constraint (work-front.versions.v40.Project attribute), 87

has_completion_constraint (workfront.versions.v40.Taskattribute), 110

has_completion_constraint (work-front.versions.v40.Work attribute), 146

has_documents (workfront.versions.unsupported.Approvalattribute), 176

has_documents (workfront.versions.unsupported.Customerattribute), 222

has_documents (workfront.versions.unsupported.Issueattribute), 274

has_documents (workfront.versions.unsupported.Iterationattribute), 280

has_documents (workfront.versions.unsupported.MasterTaskattribute), 292

has_documents (workfront.versions.unsupported.Portfolioattribute), 316

has_documents (workfront.versions.unsupported.Programattribute), 318

has_documents (workfront.versions.unsupported.Projectattribute), 326

has_documents (workfront.versions.unsupported.Task at-tribute), 364

has_documents (workfront.versions.unsupported.Templateattribute), 375

has_documents (workfront.versions.unsupported.TemplateTaskattribute), 382

has_documents (workfront.versions.unsupported.User at-tribute), 402

has_documents (workfront.versions.unsupported.Workattribute), 421

has_documents (workfront.versions.v40.Approval at-tribute), 16

has_documents (workfront.versions.v40.Customerattribute), 40

has_documents (workfront.versions.v40.Issue attribute),61

has_documents (workfront.versions.v40.Iteration at-tribute), 66

has_documents (workfront.versions.v40.Portfolio at-tribute), 79

has_documents (workfront.versions.v40.Program at-tribute), 81

has_documents (workfront.versions.v40.Project at-tribute), 87

has_documents (workfront.versions.v40.Task attribute),110

has_documents (workfront.versions.v40.Template at-tribute), 119

has_documents (workfront.versions.v40.TemplateTaskattribute), 124

has_documents (workfront.versions.v40.User attribute),137

has_documents (workfront.versions.v40.Work attribute),146

has_early_access() (workfront.versions.unsupported.Usermethod), 402

has_expenses (workfront.versions.unsupported.Approvalattribute), 176

has_expenses (workfront.versions.unsupported.MasterTaskattribute), 292

has_expenses (workfront.versions.unsupported.Projectattribute), 326

has_expenses (workfront.versions.unsupported.Task at-tribute), 364

has_expenses (workfront.versions.unsupported.Templateattribute), 376

has_expenses (workfront.versions.unsupported.TemplateTaskattribute), 382

506 Index

Page 511: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

has_expenses (workfront.versions.unsupported.Work at-tribute), 421

has_expenses (workfront.versions.v40.Approval at-tribute), 16

has_expenses (workfront.versions.v40.Project attribute),87

has_expenses (workfront.versions.v40.Task attribute),110

has_expenses (workfront.versions.v40.Template at-tribute), 119

has_expenses (workfront.versions.v40.TemplateTask at-tribute), 124

has_expenses (workfront.versions.v40.Work attribute),146

has_finance_fields (work-front.versions.unsupported.CategoryParameterExpressionattribute), 214

has_finance_fields (work-front.versions.v40.CategoryParameterExpressionattribute), 36

has_mapping_rules (work-front.versions.unsupported.SSOMappingattribute), 347

has_messages (workfront.versions.unsupported.Approvalattribute), 177

has_messages (workfront.versions.unsupported.Issue at-tribute), 274

has_messages (workfront.versions.unsupported.Portfolioattribute), 316

has_messages (workfront.versions.unsupported.Programattribute), 318

has_messages (workfront.versions.unsupported.Projectattribute), 326

has_messages (workfront.versions.unsupported.Task at-tribute), 364

has_messages (workfront.versions.unsupported.Work at-tribute), 421

has_messages (workfront.versions.v40.Approval at-tribute), 16

has_messages (workfront.versions.v40.Issue attribute),61

has_messages (workfront.versions.v40.Portfolio at-tribute), 79

has_messages (workfront.versions.v40.Program at-tribute), 81

has_messages (workfront.versions.v40.Project attribute),87

has_messages (workfront.versions.v40.Task attribute),110

has_messages (workfront.versions.v40.User attribute),137

has_messages (workfront.versions.v40.Work attribute),146

has_non_work_days (work-

front.versions.unsupported.Schedule attribute),351

has_non_work_days (workfront.versions.v40.Scheduleattribute), 102

has_notes (workfront.versions.unsupported.Approval at-tribute), 177

has_notes (workfront.versions.unsupported.Document at-tribute), 234

has_notes (workfront.versions.unsupported.Issue at-tribute), 274

has_notes (workfront.versions.unsupported.Iteration at-tribute), 280

has_notes (workfront.versions.unsupported.Portfolio at-tribute), 316

has_notes (workfront.versions.unsupported.Program at-tribute), 318

has_notes (workfront.versions.unsupported.Projectattribute), 326

has_notes (workfront.versions.unsupported.Task at-tribute), 364

has_notes (workfront.versions.unsupported.Template at-tribute), 376

has_notes (workfront.versions.unsupported.TemplateTaskattribute), 382

has_notes (workfront.versions.unsupported.Timesheet at-tribute), 388

has_notes (workfront.versions.unsupported.User at-tribute), 402

has_notes (workfront.versions.unsupported.Work at-tribute), 421

has_notes (workfront.versions.v40.Approval attribute),16

has_notes (workfront.versions.v40.Document attribute),44

has_notes (workfront.versions.v40.Issue attribute), 61has_notes (workfront.versions.v40.Iteration attribute), 66has_notes (workfront.versions.v40.Portfolio attribute), 79has_notes (workfront.versions.v40.Program attribute), 81has_notes (workfront.versions.v40.Project attribute), 87has_notes (workfront.versions.v40.Task attribute), 110has_notes (workfront.versions.v40.Template attribute),

119has_notes (workfront.versions.v40.TemplateTask at-

tribute), 124has_notes (workfront.versions.v40.Timesheet attribute),

128has_notes (workfront.versions.v40.User attribute), 137has_notes (workfront.versions.v40.Work attribute), 146has_password (workfront.versions.unsupported.User at-

tribute), 403has_password (workfront.versions.v40.User attribute),

137has_preview_access (work-

front.versions.unsupported.Customer attribute),

Index 507

Page 512: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

222has_preview_access (workfront.versions.v40.Customer

attribute), 40has_proof_license (workfront.versions.unsupported.User

attribute), 403has_proof_license (workfront.versions.v40.User at-

tribute), 137has_queue_topics (work-

front.versions.unsupported.QueueDef at-tribute), 334

has_queue_topics (workfront.versions.v40.QueueDef at-tribute), 94

has_rate_override (work-front.versions.unsupported.Approval attribute),177

has_rate_override (work-front.versions.unsupported.Company attribute),215

has_rate_override (workfront.versions.unsupported.Hourattribute), 267

has_rate_override (work-front.versions.unsupported.Project attribute),326

has_rate_override (workfront.versions.v40.Approval at-tribute), 16

has_rate_override (workfront.versions.v40.Company at-tribute), 37

has_rate_override (workfront.versions.v40.Hour at-tribute), 56

has_rate_override (workfront.versions.v40.Projectattribute), 87

has_reference() (workfront.versions.unsupported.AccessLevelmethod), 156

has_reference() (workfront.versions.unsupported.Companymethod), 215

has_reference() (workfront.versions.unsupported.ExpenseTypemethod), 259

has_reference() (workfront.versions.unsupported.Groupmethod), 266

has_reference() (workfront.versions.unsupported.HourTypemethod), 269

has_reference() (workfront.versions.unsupported.RiskTypemethod), 345

has_reference() (workfront.versions.unsupported.Rolemethod), 345

has_reference() (workfront.versions.unsupported.Schedulemethod), 351

has_reference() (workfront.versions.unsupported.TimesheetProfilemethod), 390

has_replies (workfront.versions.unsupported.Endorsementattribute), 251

has_replies (workfront.versions.unsupported.Note at-tribute), 298

has_replies (workfront.versions.v40.Note attribute), 73

has_reserved_times (work-front.versions.unsupported.User attribute),403

has_reserved_times (workfront.versions.v40.User at-tribute), 137

has_resolvables (workfront.versions.unsupported.Approvalattribute), 177

has_resolvables (workfront.versions.unsupported.Issueattribute), 274

has_resolvables (workfront.versions.unsupported.Projectattribute), 326

has_resolvables (workfront.versions.unsupported.Task at-tribute), 364

has_resolvables (workfront.versions.unsupported.Workattribute), 421

has_resolvables (workfront.versions.v40.Approvalattribute), 16

has_resolvables (workfront.versions.v40.Issue attribute),61

has_resolvables (workfront.versions.v40.Project at-tribute), 88

has_resolvables (workfront.versions.v40.Task attribute),110

has_resolvables (workfront.versions.v40.Work attribute),146

has_start_constraint (work-front.versions.unsupported.Approval attribute),177

has_start_constraint (work-front.versions.unsupported.Project attribute),326

has_start_constraint (work-front.versions.unsupported.Task attribute),364

has_start_constraint (work-front.versions.unsupported.Work attribute),422

has_start_constraint (workfront.versions.v40.Approvalattribute), 17

has_start_constraint (workfront.versions.v40.Project at-tribute), 88

has_start_constraint (workfront.versions.v40.Task at-tribute), 110

has_start_constraint (workfront.versions.v40.Workattribute), 146

has_timed_notifications (work-front.versions.unsupported.Approval attribute),177

has_timed_notifications (work-front.versions.unsupported.Customer attribute),222

has_timed_notifications (work-front.versions.unsupported.Issue attribute),274

508 Index

Page 513: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

has_timed_notifications (work-front.versions.unsupported.Project attribute),326

has_timed_notifications (work-front.versions.unsupported.Task attribute),364

has_timed_notifications (work-front.versions.unsupported.Template attribute),376

has_timed_notifications (work-front.versions.unsupported.TemplateTaskattribute), 382

has_timed_notifications (work-front.versions.unsupported.Work attribute),422

has_timed_notifications (work-front.versions.v40.Approval attribute), 17

has_timed_notifications (work-front.versions.v40.Customer attribute), 40

has_timed_notifications (workfront.versions.v40.Issue at-tribute), 61

has_timed_notifications (workfront.versions.v40.Projectattribute), 88

has_timed_notifications (workfront.versions.v40.Task at-tribute), 111

has_timed_notifications (work-front.versions.v40.Template attribute), 119

has_timed_notifications (work-front.versions.v40.TemplateTask attribute),124

has_timed_notifications (workfront.versions.v40.Workattribute), 146

has_timeline_exception (work-front.versions.unsupported.Approval attribute),177

has_timeline_exception (work-front.versions.unsupported.Project attribute),326

has_updates_before_date() (work-front.versions.unsupported.Update method),397

has_upgrade_error (work-front.versions.unsupported.AppInfo attribute),169

height (workfront.versions.unsupported.ExternalSectionattribute), 262

help_desk_config_map (work-front.versions.unsupported.Customer attribute),222

help_desk_config_map_id (work-front.versions.unsupported.Customer attribute),222

help_desk_config_map_id (work-front.versions.v40.Customer attribute), 40

high_priority_work_item (work-front.versions.unsupported.User attribute),403

high_priority_work_item (workfront.versions.v40.Userattribute), 137

home_group (workfront.versions.unsupported.User at-tribute), 403

home_group (workfront.versions.v40.User attribute), 137home_group_id (workfront.versions.unsupported.User

attribute), 403home_group_id (workfront.versions.v40.User attribute),

137home_team (workfront.versions.unsupported.User

attribute), 403home_team (workfront.versions.v40.User attribute), 137home_team_id (workfront.versions.unsupported.User at-

tribute), 403home_team_id (workfront.versions.v40.User attribute),

137host (workfront.versions.unsupported.DocumentProviderConfig

attribute), 243hosted_entity_id (work-

front.versions.unsupported.SSOOption at-tribute), 348

Hour (class in workfront.versions.unsupported), 266Hour (class in workfront.versions.v40), 55hour (workfront.versions.unsupported.JournalEntry at-

tribute), 283hour (workfront.versions.v40.JournalEntry attribute), 68hour_id (workfront.versions.unsupported.JournalEntry

attribute), 283hour_id (workfront.versions.v40.JournalEntry attribute),

68hour_type (workfront.versions.unsupported.Hour at-

tribute), 267hour_type (workfront.versions.unsupported.TimesheetTemplate

attribute), 390hour_type (workfront.versions.v40.Hour attribute), 56hour_type_id (workfront.versions.unsupported.Hour at-

tribute), 267hour_type_id (workfront.versions.unsupported.TimesheetTemplate

attribute), 390hour_type_id (workfront.versions.v40.Hour attribute), 56hour_types (workfront.versions.unsupported.AppGlobal

attribute), 169hour_types (workfront.versions.unsupported.Approval at-

tribute), 177hour_types (workfront.versions.unsupported.Customer

attribute), 222hour_types (workfront.versions.unsupported.Project at-

tribute), 326hour_types (workfront.versions.unsupported.Template at-

tribute), 376hour_types (workfront.versions.unsupported.TimesheetProfile

Index 509

Page 514: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

attribute), 390hour_types (workfront.versions.unsupported.User at-

tribute), 403hour_types (workfront.versions.v40.Approval attribute),

17hour_types (workfront.versions.v40.Customer attribute),

40hour_types (workfront.versions.v40.Project attribute), 88hour_types (workfront.versions.v40.Template attribute),

120hour_types (workfront.versions.v40.User attribute), 137hours (workfront.versions.unsupported.Approval at-

tribute), 177hours (workfront.versions.unsupported.BillingRecord at-

tribute), 203hours (workfront.versions.unsupported.Hour attribute),

267hours (workfront.versions.unsupported.Issue attribute),

274hours (workfront.versions.unsupported.Project attribute),

326hours (workfront.versions.unsupported.Task attribute),

364hours (workfront.versions.unsupported.Timesheet at-

tribute), 388hours (workfront.versions.unsupported.Work attribute),

422hours (workfront.versions.v40.Approval attribute), 17hours (workfront.versions.v40.BillingRecord attribute),

34hours (workfront.versions.v40.Hour attribute), 56hours (workfront.versions.v40.Issue attribute), 61hours (workfront.versions.v40.Project attribute), 88hours (workfront.versions.v40.Task attribute), 111hours (workfront.versions.v40.Timesheet attribute), 128hours (workfront.versions.v40.Work attribute), 146hours_duration (workfront.versions.unsupported.Timesheet

attribute), 388hours_duration (workfront.versions.v40.Timesheet

attribute), 128hours_per_point (work-

front.versions.unsupported.Approval attribute),177

hours_per_point (workfront.versions.unsupported.Taskattribute), 364

hours_per_point (workfront.versions.unsupported.Teamattribute), 371

hours_per_point (workfront.versions.unsupported.Workattribute), 422

hours_per_point (workfront.versions.v40.Approval at-tribute), 17

hours_per_point (workfront.versions.v40.Task attribute),111

hours_per_point (workfront.versions.v40.Team attribute),

116hours_per_point (workfront.versions.v40.Work attribute),

146HourType (class in workfront.versions.unsupported), 268HourType (class in workfront.versions.v40), 57how_old (workfront.versions.unsupported.Approval at-

tribute), 177how_old (workfront.versions.unsupported.Issue at-

tribute), 274how_old (workfront.versions.unsupported.Work at-

tribute), 422how_old (workfront.versions.v40.Approval attribute), 17how_old (workfront.versions.v40.Issue attribute), 61how_old (workfront.versions.v40.Work attribute), 146href (workfront.versions.unsupported.MessageArg

attribute), 294href (workfront.versions.v40.MessageArg attribute), 71

Iicon (workfront.versions.unsupported.DocumentVersion

attribute), 249icon_name (workfront.versions.unsupported.Update at-

tribute), 397icon_name (workfront.versions.v40.Update attribute),

133icon_path (workfront.versions.unsupported.Update at-

tribute), 397icon_path (workfront.versions.v40.Update attribute), 134icon_url (workfront.versions.unsupported.ExternalDocument

attribute), 260id (workfront.meta.Object attribute), 9iddiobj_code (workfront.versions.unsupported.InstalledDDItem

attribute), 270ignore() (workfront.versions.unsupported.AccessRequest

method), 158import_kick_start() (work-

front.versions.unsupported.KickStart method),285

import_msproject_file() (work-front.versions.unsupported.Project method),326

import_obj_code (work-front.versions.unsupported.ImportTemplateattribute), 270

import_rows (workfront.versions.unsupported.ImportTemplateattribute), 270

import_template (work-front.versions.unsupported.ImportRow at-tribute), 270

import_template_id (work-front.versions.unsupported.ImportRow at-tribute), 270

import_templates (work-front.versions.unsupported.Customer attribute),

510 Index

Page 515: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

222ImportRow (class in workfront.versions.unsupported),

270ImportTemplate (class in work-

front.versions.unsupported), 270indent (workfront.versions.unsupported.Approval at-

tribute), 177indent (workfront.versions.unsupported.Note attribute),

298indent (workfront.versions.unsupported.Task attribute),

364indent (workfront.versions.unsupported.TemplateTask at-

tribute), 382indent (workfront.versions.unsupported.Work attribute),

422indent (workfront.versions.v40.Approval attribute), 17indent (workfront.versions.v40.Note attribute), 73indent (workfront.versions.v40.Task attribute), 111indent (workfront.versions.v40.TemplateTask attribute),

124indent (workfront.versions.v40.Work attribute), 147indented_name (workfront.versions.unsupported.QueueTopic

attribute), 335indented_name (workfront.versions.v40.QueueTopic at-

tribute), 95inline_java_script_config_map (work-

front.versions.unsupported.Customer attribute),222

inline_java_script_config_map_id (work-front.versions.unsupported.Customer attribute),222

inline_java_script_config_map_id (work-front.versions.v40.Customer attribute), 40

installed_dditems (work-front.versions.unsupported.Customer attribute),222

InstalledDDItem (class in work-front.versions.unsupported), 270

interation_id (workfront.versions.unsupported.ParameterValueattribute), 305

internal_section (work-front.versions.unsupported.PortalTabSectionattribute), 314

internal_section_id (work-front.versions.unsupported.PortalTabSectionattribute), 314

invoice_id (workfront.versions.unsupported.BillingRecordattribute), 203

invoice_id (workfront.versions.v40.BillingRecord at-tribute), 34

ip_ranges (workfront.versions.unsupported.Customer at-tribute), 222

IPRange (class in workfront.versions.unsupported), 269is_active (workfront.versions.unsupported.AccountRep

attribute), 163is_active (workfront.versions.unsupported.DocumentProviderConfig

attribute), 243is_active (workfront.versions.unsupported.EventHandler

attribute), 254is_active (workfront.versions.unsupported.HourType at-

tribute), 269is_active (workfront.versions.unsupported.Portfolio at-

tribute), 316is_active (workfront.versions.unsupported.Reseller

attribute), 341is_active (workfront.versions.unsupported.User at-

tribute), 403is_active (workfront.versions.v40.HourType attribute), 58is_active (workfront.versions.v40.Portfolio attribute), 79is_active (workfront.versions.v40.User attribute), 137is_admin (workfront.versions.unsupported.AccessLevel

attribute), 156is_admin (workfront.versions.unsupported.AccessLevelPermissions

attribute), 157is_admin (workfront.versions.unsupported.CustomerFeedback

attribute), 228is_admin (workfront.versions.unsupported.User at-

tribute), 403is_admin (workfront.versions.v40.User attribute), 137is_admin_back_door_access_allowed (work-

front.versions.unsupported.SSOOption at-tribute), 348

is_advanced_doc_mgmt_enabled (work-front.versions.unsupported.Customer attribute),222

is_agile (workfront.versions.unsupported.Approval at-tribute), 177

is_agile (workfront.versions.unsupported.Task attribute),364

is_agile (workfront.versions.unsupported.Team attribute),371

is_agile (workfront.versions.unsupported.Work attribute),422

is_agile (workfront.versions.v40.Approval attribute), 17is_agile (workfront.versions.v40.Task attribute), 111is_agile (workfront.versions.v40.Team attribute), 116is_agile (workfront.versions.v40.Work attribute), 147is_apienabled (workfront.versions.unsupported.Customer

attribute), 222is_apienabled (workfront.versions.unsupported.LicenseOrder

attribute), 289is_apienabled (workfront.versions.v40.Customer at-

tribute), 40is_app_global_copiable (work-

front.versions.unsupported.PortalSectionattribute), 310

is_app_global_editable (work-front.versions.unsupported.PortalSection

Index 511

Page 516: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

attribute), 310is_app_global_editable (work-

front.versions.unsupported.UIFilter attribute),391

is_app_global_editable (work-front.versions.unsupported.UIGroupBy at-tribute), 393

is_app_global_editable (work-front.versions.unsupported.UIView attribute),395

is_app_global_editable (workfront.versions.v40.UIFilterattribute), 129

is_app_global_editable (work-front.versions.v40.UIGroupBy attribute),131

is_app_global_editable (workfront.versions.v40.UIViewattribute), 132

is_approver (workfront.versions.unsupported.DocumentShareattribute), 246

is_asp (workfront.versions.unsupported.MetaRecord at-tribute), 294

is_assignee (workfront.versions.unsupported.Endorsementattribute), 251

is_async_reporting_enabled (work-front.versions.unsupported.Customer attribute),222

is_billable (workfront.versions.unsupported.Expense at-tribute), 257

is_billable (workfront.versions.v40.Expense attribute), 51is_biz_rule_exclusion_enabled() (work-

front.versions.unsupported.Customer method),222

is_box_authenticated (work-front.versions.unsupported.User attribute),403

is_box_authenticated (workfront.versions.v40.User at-tribute), 137

is_common (workfront.versions.unsupported.MetaRecordattribute), 294

is_complete (workfront.versions.unsupported.Approvalattribute), 177

is_complete (workfront.versions.unsupported.BurndownEventattribute), 204

is_complete (workfront.versions.unsupported.Issue at-tribute), 274

is_complete (workfront.versions.unsupported.Work at-tribute), 422

is_complete (workfront.versions.v40.Approval attribute),17

is_complete (workfront.versions.v40.Issue attribute), 61is_complete (workfront.versions.v40.Work attribute), 147is_cp (workfront.versions.unsupported.Predecessor at-

tribute), 317is_cp (workfront.versions.v40.Predecessor attribute), 80

is_critical (workfront.versions.unsupported.Approval at-tribute), 177

is_critical (workfront.versions.unsupported.Task at-tribute), 364

is_critical (workfront.versions.unsupported.TemplateTaskattribute), 383

is_critical (workfront.versions.unsupported.Work at-tribute), 422

is_critical (workfront.versions.v40.Approval attribute),17

is_critical (workfront.versions.v40.Task attribute), 111is_critical (workfront.versions.v40.TemplateTask at-

tribute), 124is_critical (workfront.versions.v40.Work attribute), 147is_custom_quarter_enabled (work-

front.versions.unsupported.Customer attribute),223

is_dam_enabled (work-front.versions.unsupported.Customer attribute),223

is_dead (workfront.versions.unsupported.WorkItem at-tribute), 429

is_dead (workfront.versions.v40.WorkItem attribute), 153is_default (workfront.versions.unsupported.Baseline at-

tribute), 201is_default (workfront.versions.unsupported.BaselineTask

attribute), 202is_default (workfront.versions.unsupported.ParameterGroup

attribute), 304is_default (workfront.versions.unsupported.ParameterOption

attribute), 305is_default (workfront.versions.unsupported.Schedule at-

tribute), 351is_default (workfront.versions.unsupported.ScoreCardOption

attribute), 356is_default (workfront.versions.unsupported.UIView at-

tribute), 395is_default (workfront.versions.v40.Baseline attribute), 31is_default (workfront.versions.v40.BaselineTask at-

tribute), 33is_default (workfront.versions.v40.ParameterGroup at-

tribute), 77is_default (workfront.versions.v40.ParameterOption at-

tribute), 78is_default (workfront.versions.v40.Schedule attribute),

102is_default (workfront.versions.v40.ScoreCardOption at-

tribute), 104is_default (workfront.versions.v40.UIView attribute), 132is_deleted (workfront.versions.unsupported.Note at-

tribute), 298is_deleted (workfront.versions.v40.Note attribute), 73is_dir (workfront.versions.unsupported.Document at-

tribute), 234

512 Index

Page 517: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

is_dir (workfront.versions.v40.Document attribute), 44is_disabled (workfront.versions.unsupported.Customer

attribute), 223is_disabled (workfront.versions.v40.Customer attribute),

40is_done (workfront.versions.unsupported.WorkItem at-

tribute), 429is_done (workfront.versions.v40.WorkItem attribute),

153is_download (workfront.versions.unsupported.DocumentShare

attribute), 246is_draft (workfront.versions.unsupported.Announcement

attribute), 165is_drop_box_authenticated (work-

front.versions.unsupported.User attribute),403

is_drop_box_authenticated (workfront.versions.v40.Userattribute), 137

is_duration_enabled (work-front.versions.unsupported.JournalField at-tribute), 285

is_duration_locked (work-front.versions.unsupported.Approval attribute),177

is_duration_locked (work-front.versions.unsupported.MasterTask at-tribute), 292

is_duration_locked (work-front.versions.unsupported.Task attribute),364

is_duration_locked (work-front.versions.unsupported.TemplateTaskattribute), 383

is_duration_locked (work-front.versions.unsupported.Work attribute),422

is_duration_locked (workfront.versions.v40.Approval at-tribute), 17

is_duration_locked (workfront.versions.v40.Task at-tribute), 111

is_duration_locked (work-front.versions.v40.TemplateTask attribute),124

is_duration_locked (workfront.versions.v40.Work at-tribute), 147

is_editable (workfront.versions.unsupported.Timesheetattribute), 388

is_editable (workfront.versions.v40.Timesheet attribute),128

is_enabled() (workfront.versions.unsupported.Featuremethod), 263

is_enforced (workfront.versions.unsupported.Predecessorattribute), 317

is_enforced (workfront.versions.unsupported.TemplatePredecessor

attribute), 380is_enforced (workfront.versions.v40.Predecessor at-

tribute), 80is_enforced (workfront.versions.v40.TemplatePredecessor

attribute), 122is_enterprise (workfront.versions.unsupported.Customer

attribute), 223is_enterprise (workfront.versions.unsupported.LicenseOrder

attribute), 289is_enterprise (workfront.versions.v40.Customer at-

tribute), 40is_google_authenticated (work-

front.versions.unsupported.User attribute),403

is_google_authenticated (workfront.versions.v40.User at-tribute), 137

is_help_desk (workfront.versions.unsupported.Approvalattribute), 177

is_help_desk (workfront.versions.unsupported.Issue at-tribute), 274

is_help_desk (workfront.versions.unsupported.Work at-tribute), 422

is_help_desk (workfront.versions.v40.Approval at-tribute), 17

is_help_desk (workfront.versions.v40.Issue attribute), 61is_help_desk (workfront.versions.v40.Work attribute),

147is_hidden (workfront.versions.unsupported.CustomEnumOrder

attribute), 217is_hidden (workfront.versions.unsupported.EventHandler

attribute), 254is_hidden (workfront.versions.unsupported.ParameterOption

attribute), 305is_hidden (workfront.versions.unsupported.ScoreCardOption

attribute), 356is_hidden (workfront.versions.v40.ParameterOption at-

tribute), 78is_hidden (workfront.versions.v40.ScoreCardOption at-

tribute), 104is_in_linked_folder() (work-

front.versions.unsupported.Document method),234

is_in_my_approvals() (work-front.versions.unsupported.Approval method),177

is_in_my_submitted_approvals() (work-front.versions.unsupported.Approval method),177

is_inherited (workfront.versions.unsupported.AccessRuleattribute), 160

is_inherited (workfront.versions.v40.AccessRule at-tribute), 10

is_invalid_expression (work-front.versions.unsupported.CategoryParameter

Index 513

Page 518: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

attribute), 213is_invalid_expression (work-

front.versions.v40.CategoryParameter at-tribute), 35

is_journaled (workfront.versions.unsupported.CategoryParameterattribute), 213

is_legacy (workfront.versions.unsupported.Iteration at-tribute), 280

is_leveling_excluded (work-front.versions.unsupported.Approval attribute),178

is_leveling_excluded (work-front.versions.unsupported.Task attribute),364

is_leveling_excluded (work-front.versions.unsupported.TemplateTaskattribute), 383

is_leveling_excluded (work-front.versions.unsupported.Work attribute),422

is_leveling_excluded (workfront.versions.v40.Approvalattribute), 17

is_leveling_excluded (workfront.versions.v40.Task at-tribute), 111

is_leveling_excluded (work-front.versions.v40.TemplateTask attribute),124

is_leveling_excluded (workfront.versions.v40.Work at-tribute), 147

is_linked_document() (work-front.versions.unsupported.Document method),234

is_linked_folder() (work-front.versions.unsupported.DocumentFoldermethod), 240

is_marketing_solutions_enabled (work-front.versions.v40.Customer attribute), 40

is_message (workfront.versions.unsupported.Noteattribute), 298

is_message (workfront.versions.v40.Note attribute), 73is_migrated_to_anaconda (work-

front.versions.unsupported.Customer attribute),223

is_migrated_to_anaconda (work-front.versions.v40.Customer attribute), 40

is_new_format (workfront.versions.unsupported.PortalSectionattribute), 310

is_new_format (workfront.versions.unsupported.UIViewattribute), 395

is_new_format (workfront.versions.v40.UIView at-tribute), 132

is_npssurvey_available() (work-front.versions.unsupported.User method),403

is_overridden (workfront.versions.unsupported.ApproverStatusattribute), 190

is_overridden (workfront.versions.v40.ApproverStatusattribute), 27

is_owner (workfront.versions.unsupported.Endorsementattribute), 251

is_owner (workfront.versions.unsupported.UserGroupsattribute), 410

is_parent (workfront.versions.unsupported.CustomMenuattribute), 217

is_portal_profile_migrated (work-front.versions.unsupported.Customer attribute),223

is_portal_profile_migrated (work-front.versions.v40.Customer attribute), 40

is_primary (workfront.versions.unsupported.Assignmentattribute), 191

is_primary (workfront.versions.unsupported.Company at-tribute), 215

is_primary (workfront.versions.unsupported.CustomEnumattribute), 216

is_primary (workfront.versions.unsupported.TemplateAssignmentattribute), 379

is_primary (workfront.versions.v40.Assignment at-tribute), 28

is_primary (workfront.versions.v40.CustomEnum at-tribute), 38

is_primary (workfront.versions.v40.TemplateAssignmentattribute), 121

is_primary_admin (work-front.versions.unsupported.CustomerFeedbackattribute), 228

is_private (workfront.versions.unsupported.ApprovalProcessattribute), 188

is_private (workfront.versions.unsupported.Document at-tribute), 234

is_private (workfront.versions.unsupported.Note at-tribute), 298

is_private (workfront.versions.unsupported.RecentUpdateattribute), 339

is_private (workfront.versions.v40.ApprovalProcess at-tribute), 26

is_private (workfront.versions.v40.Document attribute),44

is_private (workfront.versions.v40.Note attribute), 73is_project_dead (workfront.versions.unsupported.Approval

attribute), 178is_project_dead (workfront.versions.unsupported.Project

attribute), 327is_proof_auto_genration_enabled() (work-

front.versions.unsupported.Document method),234

is_proof_automated (work-front.versions.unsupported.DocumentVersion

514 Index

Page 519: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

attribute), 249is_proofable (workfront.versions.unsupported.DocumentVersion

attribute), 249is_proofable (workfront.versions.v40.DocumentVersion

attribute), 49is_proofable() (workfront.versions.unsupported.Document

method), 234is_proofer (workfront.versions.unsupported.DocumentShare

attribute), 246is_proofing_enabled (work-

front.versions.unsupported.Customer attribute),223

is_public (workfront.versions.unsupported.CalendarInfoattribute), 207

is_public (workfront.versions.unsupported.Document at-tribute), 234

is_public (workfront.versions.unsupported.PortalSectionattribute), 310

is_public (workfront.versions.unsupported.PortalTab at-tribute), 313

is_public (workfront.versions.unsupported.QueueDef at-tribute), 334

is_public (workfront.versions.unsupported.ScoreCard at-tribute), 354

is_public (workfront.versions.unsupported.UIFilter at-tribute), 391

is_public (workfront.versions.unsupported.UIGroupByattribute), 393

is_public (workfront.versions.unsupported.UIView at-tribute), 395

is_public (workfront.versions.v40.Document attribute),44

is_public (workfront.versions.v40.QueueDef attribute),94

is_public (workfront.versions.v40.ScoreCard attribute),103

is_public (workfront.versions.v40.UIFilter attribute), 129is_public (workfront.versions.v40.UIGroupBy attribute),

131is_public (workfront.versions.v40.UIView attribute), 132is_ready (workfront.versions.unsupported.Approval at-

tribute), 178is_ready (workfront.versions.unsupported.Task attribute),

365is_ready (workfront.versions.unsupported.Work at-

tribute), 422is_ready (workfront.versions.v40.Approval attribute), 17is_ready (workfront.versions.v40.Task attribute), 111is_ready (workfront.versions.v40.Work attribute), 147is_recurring (workfront.versions.unsupported.TimesheetProfile

attribute), 390is_reimbursable (work-

front.versions.unsupported.Expense attribute),257

is_reimbursable (workfront.versions.v40.Expense at-tribute), 51

is_reimbursed (workfront.versions.unsupported.Expenseattribute), 257

is_reimbursed (workfront.versions.v40.Expense at-tribute), 51

is_reply (workfront.versions.unsupported.Note attribute),298

is_reply (workfront.versions.v40.Note attribute), 73is_report (workfront.versions.unsupported.PortalSection

attribute), 310is_report (workfront.versions.unsupported.UIFilter

attribute), 391is_report (workfront.versions.unsupported.UIGroupBy

attribute), 393is_report (workfront.versions.unsupported.UIView

attribute), 395is_report (workfront.versions.v40.UIFilter attribute), 129is_report (workfront.versions.v40.UIGroupBy attribute),

131is_report (workfront.versions.v40.UIView attribute), 132is_report_filterable() (work-

front.versions.unsupported.PortalSectionmethod), 310

is_required (workfront.versions.unsupported.CategoryParameterattribute), 213

is_required (workfront.versions.unsupported.Parameterattribute), 303

is_required (workfront.versions.v40.CategoryParameterattribute), 35

is_required (workfront.versions.v40.Parameter attribute),77

is_saved_search (work-front.versions.unsupported.UIFilter attribute),391

is_saved_search (workfront.versions.v40.UIFilter at-tribute), 129

is_search_enabled (work-front.versions.unsupported.Customer attribute),223

is_search_index_active (work-front.versions.unsupported.Customer attribute),223

is_share_point_authenticated (work-front.versions.unsupported.User attribute),403

is_share_point_authenticated (work-front.versions.v40.User attribute), 137

is_smart_folder() (work-front.versions.unsupported.DocumentFoldermethod), 240

is_soapenabled (workfront.versions.unsupported.Customerattribute), 223

is_soapenabled (workfront.versions.unsupported.LicenseOrder

Index 515

Page 520: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

attribute), 289is_soapenabled (workfront.versions.v40.Customer

attribute), 40is_split (workfront.versions.unsupported.FinancialData

attribute), 264is_split (workfront.versions.unsupported.ResourceAllocation

attribute), 342is_split (workfront.versions.v40.FinancialData attribute),

54is_split (workfront.versions.v40.ResourceAllocation at-

tribute), 97is_ssoenabled() (workfront.versions.unsupported.Customer

method), 223is_standalone (workfront.versions.unsupported.PortalSection

attribute), 310is_standard_issue_list (work-

front.versions.unsupported.Team attribute),371

is_standard_issue_list (workfront.versions.v40.Team at-tribute), 117

is_status_complete (work-front.versions.unsupported.Approval attribute),178

is_status_complete (work-front.versions.unsupported.Project attribute),327

is_status_complete (work-front.versions.unsupported.Task attribute),365

is_status_complete (work-front.versions.unsupported.Work attribute),422

is_system_handler (work-front.versions.unsupported.EventHandlerattribute), 254

is_team_assignment (work-front.versions.unsupported.Assignment at-tribute), 191

is_team_assignment (work-front.versions.unsupported.TemplateAssignmentattribute), 379

is_team_assignment (workfront.versions.v40.Assignmentattribute), 29

is_team_assignment (work-front.versions.v40.TemplateAssignmentattribute), 121

is_text (workfront.versions.unsupported.UIFilter at-tribute), 392

is_text (workfront.versions.unsupported.UIGroupBy at-tribute), 393

is_text (workfront.versions.unsupported.UIView at-tribute), 395

is_text (workfront.versions.v40.UIFilter attribute), 129is_text (workfront.versions.v40.UIGroupBy attribute),

131is_text (workfront.versions.v40.UIView attribute), 132is_top_level_folder (work-

front.versions.unsupported.LinkedFolderattribute), 291

is_unsupported_worker_license (work-front.versions.unsupported.AccessLevelattribute), 156

is_username_re_captcha_required() (work-front.versions.unsupported.User method),403

is_valid_update_note() (work-front.versions.unsupported.Update method),397

is_warning_disabled (work-front.versions.unsupported.Customer attribute),223

is_warning_disabled (workfront.versions.v40.Customerattribute), 40

is_web_damauthenticated (work-front.versions.unsupported.User attribute),403

is_web_damauthenticated (workfront.versions.v40.Userattribute), 137

is_whats_new_available() (work-front.versions.unsupported.WhatsNewmethod), 416

is_white_list_ipenabled (work-front.versions.unsupported.Customer attribute),223

is_work_required_locked (work-front.versions.unsupported.Approval attribute),178

is_work_required_locked (work-front.versions.unsupported.MasterTask at-tribute), 292

is_work_required_locked (work-front.versions.unsupported.Task attribute),365

is_work_required_locked (work-front.versions.unsupported.TemplateTaskattribute), 383

is_work_required_locked (work-front.versions.unsupported.Work attribute),422

is_work_required_locked (work-front.versions.v40.Approval attribute), 17

is_work_required_locked (workfront.versions.v40.Taskattribute), 111

is_work_required_locked (work-front.versions.v40.TemplateTask attribute),124

is_work_required_locked (workfront.versions.v40.Workattribute), 147

516 Index

Page 521: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

is_workfront_dam_enabled (work-front.versions.unsupported.Customer attribute),223

is_workfront_damauthenticated (work-front.versions.unsupported.User attribute),403

Issue (class in workfront.versions.unsupported), 271Issue (class in workfront.versions.v40), 58issue (workfront.versions.unsupported.DocumentFolder

attribute), 240issue (workfront.versions.v40.DocumentFolder attribute),

47issue_id (workfront.versions.unsupported.DocumentFolder

attribute), 240issue_id (workfront.versions.unsupported.RecentUpdate

attribute), 339issue_id (workfront.versions.v40.DocumentFolder

attribute), 47issue_name (workfront.versions.unsupported.RecentUpdate

attribute), 339Iteration (class in workfront.versions.unsupported), 279Iteration (class in workfront.versions.v40), 65iteration (workfront.versions.unsupported.Approval at-

tribute), 178iteration (workfront.versions.unsupported.Document at-

tribute), 234iteration (workfront.versions.unsupported.DocumentFolder

attribute), 240iteration (workfront.versions.unsupported.DocumentRequest

attribute), 244iteration (workfront.versions.unsupported.Note attribute),

299iteration (workfront.versions.unsupported.ParameterValue

attribute), 305iteration (workfront.versions.unsupported.Task attribute),

365iteration (workfront.versions.unsupported.Work at-

tribute), 422iteration (workfront.versions.v40.Approval attribute), 17iteration (workfront.versions.v40.Document attribute), 44iteration (workfront.versions.v40.DocumentFolder

attribute), 47iteration (workfront.versions.v40.Note attribute), 74iteration (workfront.versions.v40.Task attribute), 111iteration (workfront.versions.v40.Work attribute), 147iteration_id (workfront.versions.unsupported.Approval

attribute), 178iteration_id (workfront.versions.unsupported.Document

attribute), 234iteration_id (workfront.versions.unsupported.DocumentFolder

attribute), 240iteration_id (workfront.versions.unsupported.DocumentRequest

attribute), 244iteration_id (workfront.versions.unsupported.Note

attribute), 299iteration_id (workfront.versions.unsupported.RecentUpdate

attribute), 339iteration_id (workfront.versions.unsupported.Task at-

tribute), 365iteration_id (workfront.versions.unsupported.Work at-

tribute), 422iteration_id (workfront.versions.v40.Approval attribute),

17iteration_id (workfront.versions.v40.Document attribute),

44iteration_id (workfront.versions.v40.DocumentFolder at-

tribute), 47iteration_id (workfront.versions.v40.Note attribute), 74iteration_id (workfront.versions.v40.Task attribute), 111iteration_id (workfront.versions.v40.Work attribute), 147iteration_name (workfront.versions.unsupported.RecentUpdate

attribute), 339

Jjexl_expression (workfront.versions.unsupported.Feature

attribute), 264jexl_updated_date (work-

front.versions.unsupported.Feature attribute),264

journal_entries (workfront.versions.unsupported.AuditLoginAsSessionattribute), 193

journal_entry (workfront.versions.unsupported.Like at-tribute), 290

journal_entry (workfront.versions.unsupported.UserNoteattribute), 412

journal_entry (workfront.versions.v40.UserNote at-tribute), 141

journal_entry_id (workfront.versions.unsupported.Likeattribute), 290

journal_entry_id (work-front.versions.unsupported.UserNote attribute),412

journal_entry_id (workfront.versions.v40.UserNote at-tribute), 141

journal_field_limit (work-front.versions.unsupported.Customer attribute),223

journal_field_limit (workfront.versions.v40.Customer at-tribute), 40

journal_fields (workfront.versions.unsupported.Customerattribute), 223

JournalEntry (class in workfront.versions.unsupported),281

JournalEntry (class in workfront.versions.v40), 66JournalField (class in workfront.versions.unsupported),

284

Index 517

Page 522: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

Kkick_start_expoert_dashboards_limit (work-

front.versions.unsupported.Customer attribute),223

kick_start_expoert_reports_limit (work-front.versions.unsupported.Customer attribute),223

KickStart (class in workfront.versions.unsupported), 285

Llabel (workfront.versions.unsupported.CustomEnum at-

tribute), 216label (workfront.versions.unsupported.CustomMenu at-

tribute), 217label (workfront.versions.unsupported.ParameterOption

attribute), 305label (workfront.versions.unsupported.ScoreCardOption

attribute), 356label (workfront.versions.v40.CustomEnum attribute), 38label (workfront.versions.v40.ParameterOption attribute),

78label (workfront.versions.v40.ScoreCardOption at-

tribute), 104lag_days (workfront.versions.unsupported.Predecessor

attribute), 317lag_days (workfront.versions.unsupported.TemplatePredecessor

attribute), 380lag_days (workfront.versions.v40.Predecessor attribute),

80lag_days (workfront.versions.v40.TemplatePredecessor

attribute), 122lag_type (workfront.versions.unsupported.Predecessor

attribute), 317lag_type (workfront.versions.unsupported.TemplatePredecessor

attribute), 380lag_type (workfront.versions.v40.Predecessor attribute),

80lag_type (workfront.versions.v40.TemplatePredecessor

attribute), 122last_announcement (workfront.versions.v40.User at-

tribute), 137last_calc_date (workfront.versions.unsupported.Approval

attribute), 178last_calc_date (workfront.versions.unsupported.Project

attribute), 327last_calc_date (workfront.versions.v40.Approval at-

tribute), 17last_calc_date (workfront.versions.v40.Project attribute),

88last_condition_note (work-

front.versions.unsupported.Approval attribute),178

last_condition_note (work-front.versions.unsupported.Issue attribute),

274last_condition_note (work-

front.versions.unsupported.Project attribute),327

last_condition_note (work-front.versions.unsupported.Task attribute),365

last_condition_note (work-front.versions.unsupported.Work attribute),422

last_condition_note (workfront.versions.v40.Approval at-tribute), 17

last_condition_note (workfront.versions.v40.Issueattribute), 61

last_condition_note (workfront.versions.v40.Project at-tribute), 88

last_condition_note (workfront.versions.v40.Task at-tribute), 111

last_condition_note (workfront.versions.v40.Workattribute), 147

last_condition_note_id (work-front.versions.unsupported.Approval attribute),178

last_condition_note_id (work-front.versions.unsupported.Issue attribute),274

last_condition_note_id (work-front.versions.unsupported.Project attribute),327

last_condition_note_id (work-front.versions.unsupported.Task attribute),365

last_condition_note_id (work-front.versions.unsupported.Work attribute),422

last_condition_note_id (workfront.versions.v40.Approvalattribute), 17

last_condition_note_id (workfront.versions.v40.Issue at-tribute), 61

last_condition_note_id (workfront.versions.v40.Projectattribute), 88

last_condition_note_id (workfront.versions.v40.Task at-tribute), 111

last_condition_note_id (workfront.versions.v40.Work at-tribute), 147

last_entered_note (workfront.versions.unsupported.Userattribute), 403

last_entered_note (workfront.versions.v40.User at-tribute), 137

last_entered_note_id (work-front.versions.unsupported.User attribute),404

last_entered_note_id (workfront.versions.v40.Userattribute), 138

518 Index

Page 523: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

last_login_date (workfront.versions.unsupported.User at-tribute), 404

last_login_date (workfront.versions.v40.User attribute),138

last_mod_date (workfront.versions.unsupported.Documentattribute), 234

last_mod_date (workfront.versions.unsupported.DocumentFolderattribute), 240

last_mod_date (workfront.versions.v40.Documentattribute), 44

last_name (workfront.versions.unsupported.AccountRepattribute), 163

last_name (workfront.versions.unsupported.User at-tribute), 404

last_name (workfront.versions.v40.User attribute), 138last_note (workfront.versions.unsupported.Approval at-

tribute), 178last_note (workfront.versions.unsupported.Document at-

tribute), 234last_note (workfront.versions.unsupported.Issue at-

tribute), 274last_note (workfront.versions.unsupported.MasterTask

attribute), 292last_note (workfront.versions.unsupported.Project at-

tribute), 327last_note (workfront.versions.unsupported.Task at-

tribute), 365last_note (workfront.versions.unsupported.Template at-

tribute), 376last_note (workfront.versions.unsupported.TemplateTask

attribute), 383last_note (workfront.versions.unsupported.Timesheet at-

tribute), 388last_note (workfront.versions.unsupported.User at-

tribute), 404last_note (workfront.versions.unsupported.Work at-

tribute), 422last_note (workfront.versions.v40.Approval attribute), 17last_note (workfront.versions.v40.Document attribute),

44last_note (workfront.versions.v40.Issue attribute), 61last_note (workfront.versions.v40.Project attribute), 88last_note (workfront.versions.v40.Task attribute), 111last_note (workfront.versions.v40.Template attribute),

120last_note (workfront.versions.v40.TemplateTask at-

tribute), 124last_note (workfront.versions.v40.Timesheet attribute),

128last_note (workfront.versions.v40.User attribute), 138last_note (workfront.versions.v40.Work attribute), 147last_note_id (workfront.versions.unsupported.Approval

attribute), 178last_note_id (workfront.versions.unsupported.Document

attribute), 234last_note_id (workfront.versions.unsupported.Issue at-

tribute), 274last_note_id (workfront.versions.unsupported.MasterTask

attribute), 292last_note_id (workfront.versions.unsupported.Project at-

tribute), 327last_note_id (workfront.versions.unsupported.Task

attribute), 365last_note_id (workfront.versions.unsupported.Template

attribute), 376last_note_id (workfront.versions.unsupported.TemplateTask

attribute), 383last_note_id (workfront.versions.unsupported.Timesheet

attribute), 388last_note_id (workfront.versions.unsupported.User

attribute), 404last_note_id (workfront.versions.unsupported.Work at-

tribute), 422last_note_id (workfront.versions.v40.Approval attribute),

18last_note_id (workfront.versions.v40.Document at-

tribute), 44last_note_id (workfront.versions.v40.Issue attribute), 61last_note_id (workfront.versions.v40.Project attribute),

88last_note_id (workfront.versions.v40.Task attribute), 111last_note_id (workfront.versions.v40.Template attribute),

120last_note_id (workfront.versions.v40.TemplateTask at-

tribute), 124last_note_id (workfront.versions.v40.Timesheet at-

tribute), 128last_note_id (workfront.versions.v40.User attribute), 138last_note_id (workfront.versions.v40.Work attribute), 147last_refresh_date (work-

front.versions.unsupported.SandboxMigrationattribute), 349

last_refresh_duration (work-front.versions.unsupported.SandboxMigrationattribute), 349

last_remind_date (work-front.versions.unsupported.AccessRequestattribute), 158

last_remind_date (work-front.versions.unsupported.Customer attribute),223

last_remind_date (workfront.versions.v40.Customer at-tribute), 40

last_runtime_milliseconds (work-front.versions.unsupported.ScheduledReportattribute), 352

last_sent_date (workfront.versions.unsupported.Announcementattribute), 165

Index 519

Page 524: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

last_sent_date (workfront.versions.unsupported.ScheduledReportattribute), 352

last_status_note (workfront.versions.unsupported.Userattribute), 404

last_status_note (workfront.versions.v40.User attribute),138

last_sync_date (workfront.versions.unsupported.Documentattribute), 234

last_sync_date (workfront.versions.unsupported.LinkedFolderattribute), 291

last_update (workfront.versions.unsupported.AppInfo at-tribute), 169

last_update_date (work-front.versions.unsupported.AccessRequestattribute), 158

last_update_date (work-front.versions.unsupported.Approval attribute),178

last_update_date (work-front.versions.unsupported.ApprovalProcessattribute), 188

last_update_date (work-front.versions.unsupported.Branding attribute),204

last_update_date (work-front.versions.unsupported.Category attribute),211

last_update_date (work-front.versions.unsupported.Company attribute),215

last_update_date (work-front.versions.unsupported.Document at-tribute), 235

last_update_date (work-front.versions.unsupported.DocumentShareattribute), 246

last_update_date (work-front.versions.unsupported.EndorsementShareattribute), 253

last_update_date (work-front.versions.unsupported.EventSubscriptionattribute), 255

last_update_date (work-front.versions.unsupported.Expense attribute),257

last_update_date (workfront.versions.unsupported.Hourattribute), 267

last_update_date (workfront.versions.unsupported.Issueattribute), 274

last_update_date (work-front.versions.unsupported.Iteration attribute),280

last_update_date (work-front.versions.unsupported.LayoutTemplate

attribute), 287last_update_date (work-

front.versions.unsupported.MasterTask at-tribute), 292

last_update_date (work-front.versions.unsupported.Parameter at-tribute), 304

last_update_date (work-front.versions.unsupported.ParameterGroupattribute), 304

last_update_date (work-front.versions.unsupported.PortalSectionattribute), 310

last_update_date (work-front.versions.unsupported.PortalTab attribute),313

last_update_date (work-front.versions.unsupported.Portfolio attribute),316

last_update_date (work-front.versions.unsupported.Program attribute),318

last_update_date (work-front.versions.unsupported.Project attribute),327

last_update_date (work-front.versions.unsupported.ScoreCard at-tribute), 354

last_update_date (workfront.versions.unsupported.Taskattribute), 365

last_update_date (work-front.versions.unsupported.Template attribute),376

last_update_date (work-front.versions.unsupported.TemplateTaskattribute), 383

last_update_date (work-front.versions.unsupported.Timesheet at-tribute), 388

last_update_date (work-front.versions.unsupported.UIFilter attribute),392

last_update_date (work-front.versions.unsupported.UIGroupBy at-tribute), 393

last_update_date (work-front.versions.unsupported.UIView attribute),395

last_update_date (workfront.versions.unsupported.Userattribute), 404

last_update_date (work-front.versions.unsupported.UserActivityattribute), 408

last_update_date (work-

520 Index

Page 525: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

front.versions.unsupported.UserObjectPrefattribute), 413

last_update_date (workfront.versions.unsupported.Workattribute), 423

last_update_date (workfront.versions.v40.Approval at-tribute), 18

last_update_date (work-front.versions.v40.ApprovalProcess attribute),26

last_update_date (workfront.versions.v40.Category at-tribute), 35

last_update_date (workfront.versions.v40.Company at-tribute), 37

last_update_date (workfront.versions.v40.Document at-tribute), 44

last_update_date (workfront.versions.v40.Expenseattribute), 51

last_update_date (workfront.versions.v40.Hour attribute),56

last_update_date (workfront.versions.v40.Issue attribute),61

last_update_date (workfront.versions.v40.Iterationattribute), 66

last_update_date (work-front.versions.v40.LayoutTemplate attribute),70

last_update_date (workfront.versions.v40.Parameter at-tribute), 77

last_update_date (work-front.versions.v40.ParameterGroup attribute),77

last_update_date (workfront.versions.v40.Portfolio at-tribute), 79

last_update_date (workfront.versions.v40.Programattribute), 81

last_update_date (workfront.versions.v40.Project at-tribute), 88

last_update_date (workfront.versions.v40.ScoreCard at-tribute), 103

last_update_date (workfront.versions.v40.Task attribute),111

last_update_date (workfront.versions.v40.Template at-tribute), 120

last_update_date (workfront.versions.v40.TemplateTaskattribute), 124

last_update_date (workfront.versions.v40.Timesheet at-tribute), 128

last_update_date (workfront.versions.v40.UIFilterattribute), 129

last_update_date (workfront.versions.v40.UIGroupBy at-tribute), 131

last_update_date (workfront.versions.v40.UIView at-tribute), 132

last_update_date (workfront.versions.v40.User attribute),

138last_update_date (workfront.versions.v40.UserActivity

attribute), 141last_update_date (workfront.versions.v40.Work at-

tribute), 147last_updated_by (work-

front.versions.unsupported.AccessLevelattribute), 156

last_updated_by (work-front.versions.unsupported.Approval attribute),178

last_updated_by (work-front.versions.unsupported.ApprovalProcessattribute), 188

last_updated_by (work-front.versions.unsupported.Category attribute),211

last_updated_by (work-front.versions.unsupported.Company attribute),215

last_updated_by (work-front.versions.unsupported.Document at-tribute), 235

last_updated_by (work-front.versions.unsupported.DocumentShareattribute), 246

last_updated_by (work-front.versions.unsupported.EndorsementShareattribute), 253

last_updated_by (work-front.versions.unsupported.Expense attribute),257

last_updated_by (workfront.versions.unsupported.Hourattribute), 267

last_updated_by (workfront.versions.unsupported.Issueattribute), 274

last_updated_by (work-front.versions.unsupported.Iteration attribute),280

last_updated_by (work-front.versions.unsupported.LayoutTemplateattribute), 287

last_updated_by (work-front.versions.unsupported.MasterTask at-tribute), 293

last_updated_by (work-front.versions.unsupported.Parameter at-tribute), 304

last_updated_by (work-front.versions.unsupported.ParameterGroupattribute), 304

last_updated_by (work-front.versions.unsupported.PortalSectionattribute), 310

Index 521

Page 526: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

last_updated_by (work-front.versions.unsupported.PortalTab attribute),313

last_updated_by (work-front.versions.unsupported.Portfolio attribute),316

last_updated_by (work-front.versions.unsupported.Program attribute),318

last_updated_by (workfront.versions.unsupported.Projectattribute), 327

last_updated_by (work-front.versions.unsupported.ScoreCard at-tribute), 354

last_updated_by (workfront.versions.unsupported.Taskattribute), 365

last_updated_by (work-front.versions.unsupported.Template attribute),376

last_updated_by (work-front.versions.unsupported.TemplateTaskattribute), 383

last_updated_by (work-front.versions.unsupported.Timesheet at-tribute), 388

last_updated_by (work-front.versions.unsupported.UIFilter attribute),392

last_updated_by (work-front.versions.unsupported.UIGroupBy at-tribute), 393

last_updated_by (work-front.versions.unsupported.UIView attribute),395

last_updated_by (workfront.versions.unsupported.Userattribute), 404

last_updated_by (workfront.versions.unsupported.Workattribute), 423

last_updated_by (workfront.versions.v40.Approval at-tribute), 18

last_updated_by (work-front.versions.v40.ApprovalProcess attribute),26

last_updated_by (workfront.versions.v40.Categoryattribute), 35

last_updated_by (workfront.versions.v40.Company at-tribute), 37

last_updated_by (workfront.versions.v40.Document at-tribute), 44

last_updated_by (workfront.versions.v40.Expenseattribute), 51

last_updated_by (workfront.versions.v40.Hour attribute),56

last_updated_by (workfront.versions.v40.Issue attribute),

61last_updated_by (workfront.versions.v40.Iteration

attribute), 66last_updated_by (work-

front.versions.v40.LayoutTemplate attribute),70

last_updated_by (workfront.versions.v40.Parameter at-tribute), 77

last_updated_by (work-front.versions.v40.ParameterGroup attribute),77

last_updated_by (workfront.versions.v40.Portfolioattribute), 79

last_updated_by (workfront.versions.v40.Programattribute), 81

last_updated_by (workfront.versions.v40.Project at-tribute), 88

last_updated_by (workfront.versions.v40.ScoreCard at-tribute), 103

last_updated_by (workfront.versions.v40.Task attribute),111

last_updated_by (workfront.versions.v40.Template at-tribute), 120

last_updated_by (workfront.versions.v40.TemplateTaskattribute), 124

last_updated_by (workfront.versions.v40.Timesheet at-tribute), 128

last_updated_by (workfront.versions.v40.UIFilter at-tribute), 130

last_updated_by (workfront.versions.v40.UIGroupBy at-tribute), 131

last_updated_by (workfront.versions.v40.UIView at-tribute), 132

last_updated_by (workfront.versions.v40.User attribute),138

last_updated_by (workfront.versions.v40.Work attribute),147

last_updated_by_id (work-front.versions.unsupported.AccessLevelattribute), 156

last_updated_by_id (work-front.versions.unsupported.Approval attribute),178

last_updated_by_id (work-front.versions.unsupported.ApprovalProcessattribute), 188

last_updated_by_id (work-front.versions.unsupported.Category attribute),211

last_updated_by_id (work-front.versions.unsupported.Company attribute),215

last_updated_by_id (work-front.versions.unsupported.Document at-

522 Index

Page 527: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

tribute), 235last_updated_by_id (work-

front.versions.unsupported.DocumentShareattribute), 246

last_updated_by_id (work-front.versions.unsupported.EndorsementShareattribute), 253

last_updated_by_id (work-front.versions.unsupported.Expense attribute),257

last_updated_by_id (work-front.versions.unsupported.Hour attribute),267

last_updated_by_id (work-front.versions.unsupported.Issue attribute),274

last_updated_by_id (work-front.versions.unsupported.Iteration attribute),280

last_updated_by_id (work-front.versions.unsupported.LayoutTemplateattribute), 287

last_updated_by_id (work-front.versions.unsupported.MasterTask at-tribute), 293

last_updated_by_id (work-front.versions.unsupported.Parameter at-tribute), 304

last_updated_by_id (work-front.versions.unsupported.ParameterGroupattribute), 304

last_updated_by_id (work-front.versions.unsupported.PortalSectionattribute), 310

last_updated_by_id (work-front.versions.unsupported.PortalTab attribute),313

last_updated_by_id (work-front.versions.unsupported.Portfolio attribute),316

last_updated_by_id (work-front.versions.unsupported.Program attribute),318

last_updated_by_id (work-front.versions.unsupported.Project attribute),327

last_updated_by_id (work-front.versions.unsupported.ScoreCard at-tribute), 354

last_updated_by_id (work-front.versions.unsupported.Task attribute),365

last_updated_by_id (work-front.versions.unsupported.Template attribute),

376last_updated_by_id (work-

front.versions.unsupported.TemplateTaskattribute), 383

last_updated_by_id (work-front.versions.unsupported.Timesheet at-tribute), 388

last_updated_by_id (work-front.versions.unsupported.UIFilter attribute),392

last_updated_by_id (work-front.versions.unsupported.UIGroupBy at-tribute), 393

last_updated_by_id (work-front.versions.unsupported.UIView attribute),395

last_updated_by_id (work-front.versions.unsupported.User attribute),404

last_updated_by_id (work-front.versions.unsupported.Work attribute),423

last_updated_by_id (workfront.versions.v40.Approval at-tribute), 18

last_updated_by_id (work-front.versions.v40.ApprovalProcess attribute),26

last_updated_by_id (workfront.versions.v40.Category at-tribute), 35

last_updated_by_id (workfront.versions.v40.Companyattribute), 37

last_updated_by_id (workfront.versions.v40.Documentattribute), 44

last_updated_by_id (workfront.versions.v40.Expense at-tribute), 51

last_updated_by_id (workfront.versions.v40.Hour at-tribute), 56

last_updated_by_id (workfront.versions.v40.Issue at-tribute), 61

last_updated_by_id (workfront.versions.v40.Iteration at-tribute), 66

last_updated_by_id (work-front.versions.v40.LayoutTemplate attribute),70

last_updated_by_id (workfront.versions.v40.Parameterattribute), 77

last_updated_by_id (work-front.versions.v40.ParameterGroup attribute),77

last_updated_by_id (workfront.versions.v40.Portfolio at-tribute), 79

last_updated_by_id (workfront.versions.v40.Program at-tribute), 81

last_updated_by_id (workfront.versions.v40.Project at-

Index 523

Page 528: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

tribute), 88last_updated_by_id (workfront.versions.v40.ScoreCard

attribute), 103last_updated_by_id (workfront.versions.v40.Task at-

tribute), 111last_updated_by_id (workfront.versions.v40.Template at-

tribute), 120last_updated_by_id (work-

front.versions.v40.TemplateTask attribute),125

last_updated_by_id (workfront.versions.v40.Timesheetattribute), 128

last_updated_by_id (workfront.versions.v40.UIFilter at-tribute), 130

last_updated_by_id (workfront.versions.v40.UIGroupByattribute), 131

last_updated_by_id (workfront.versions.v40.UIView at-tribute), 132

last_updated_by_id (workfront.versions.v40.User at-tribute), 138

last_updated_by_id (workfront.versions.v40.Workattribute), 147

last_updated_date (work-front.versions.unsupported.AccessLevelattribute), 156

last_updated_on_date (work-front.versions.unsupported.RecentUpdateattribute), 339

last_usage_report_date (work-front.versions.unsupported.Customer attribute),223

last_usage_report_date (work-front.versions.v40.Customer attribute), 40

last_viewed_date (work-front.versions.unsupported.Recent attribute),337

last_viewed_date (work-front.versions.unsupported.WorkItem at-tribute), 429

last_viewed_date (workfront.versions.v40.WorkItem at-tribute), 153

last_whats_new (workfront.versions.unsupported.Userattribute), 404

last_whats_new (workfront.versions.v40.User attribute),138

lastname (workfront.versions.unsupported.Customer at-tribute), 224

lastname (workfront.versions.v40.Customer attribute), 40latest_comment (workfront.versions.unsupported.RecentUpdate

attribute), 339latest_comment_author_id (work-

front.versions.unsupported.RecentUpdateattribute), 339

latest_comment_author_name (work-

front.versions.unsupported.RecentUpdateattribute), 339

latest_comment_entry_date (work-front.versions.unsupported.RecentUpdateattribute), 339

latest_comment_id (work-front.versions.unsupported.RecentUpdateattribute), 339

latest_update_note (workfront.versions.unsupported.Userattribute), 404

latest_update_note (workfront.versions.v40.User at-tribute), 138

latest_update_note_id (work-front.versions.unsupported.User attribute),404

latest_update_note_id (workfront.versions.v40.User at-tribute), 138

layout_template (work-front.versions.unsupported.LayoutTemplateCardattribute), 288

layout_template (work-front.versions.unsupported.LayoutTemplateDatePreferenceattribute), 289

layout_template (work-front.versions.unsupported.LayoutTemplatePageattribute), 289

layout_template (workfront.versions.unsupported.Roleattribute), 345

layout_template (workfront.versions.unsupported.Teamattribute), 371

layout_template (workfront.versions.unsupported.Userattribute), 404

layout_template (workfront.versions.v40.Role attribute),100

layout_template (workfront.versions.v40.Team attribute),117

layout_template (workfront.versions.v40.User attribute),138

layout_template_cards (work-front.versions.unsupported.LayoutTemplateattribute), 287

layout_template_date_preferences (work-front.versions.unsupported.LayoutTemplateattribute), 287

layout_template_id (work-front.versions.unsupported.LayoutTemplateCardattribute), 288

layout_template_id (work-front.versions.unsupported.LayoutTemplateDatePreferenceattribute), 289

layout_template_id (work-front.versions.unsupported.LayoutTemplatePageattribute), 289

layout_template_id (work-

524 Index

Page 529: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

front.versions.unsupported.Role attribute),345

layout_template_id (work-front.versions.unsupported.Team attribute),371

layout_template_id (work-front.versions.unsupported.User attribute),404

layout_template_id (workfront.versions.v40.Role at-tribute), 100

layout_template_id (workfront.versions.v40.Teamattribute), 117

layout_template_id (workfront.versions.v40.User at-tribute), 138

layout_template_pages (work-front.versions.unsupported.LayoutTemplateattribute), 287

layout_templates (work-front.versions.unsupported.AppGlobal at-tribute), 169

layout_templates (work-front.versions.unsupported.Customer attribute),224

layout_templates (workfront.versions.v40.Customer at-tribute), 40

layout_type (workfront.versions.unsupported.UIView at-tribute), 395

layout_type (workfront.versions.v40.UIView attribute),133

LayoutTemplate (class in work-front.versions.unsupported), 285

LayoutTemplate (class in workfront.versions.v40), 69LayoutTemplateCard (class in work-

front.versions.unsupported), 288LayoutTemplateDatePreference (class in work-

front.versions.unsupported), 288LayoutTemplatePage (class in work-

front.versions.unsupported), 289legacy_access_level_id (work-

front.versions.unsupported.AccessLevelattribute), 156

legacy_burndown_info_with_percentage() (work-front.versions.unsupported.Iteration method),280

legacy_burndown_info_with_points() (work-front.versions.unsupported.Iteration method),280

legacy_diagnostics() (work-front.versions.unsupported.AccessLevelmethod), 157

length (workfront.versions.unsupported.NoteTag at-tribute), 301

length (workfront.versions.v40.NoteTag attribute), 76leveling_mode (workfront.versions.unsupported.Approval

attribute), 178leveling_mode (workfront.versions.unsupported.Project

attribute), 327leveling_mode (workfront.versions.unsupported.Template

attribute), 376leveling_mode (workfront.versions.v40.Approval at-

tribute), 18leveling_mode (workfront.versions.v40.Project attribute),

88leveling_start_delay (work-

front.versions.unsupported.Approval attribute),178

leveling_start_delay (work-front.versions.unsupported.Task attribute),365

leveling_start_delay (work-front.versions.unsupported.TemplateTaskattribute), 383

leveling_start_delay (work-front.versions.unsupported.Work attribute),423

leveling_start_delay (workfront.versions.v40.Approvalattribute), 18

leveling_start_delay (workfront.versions.v40.Taskattribute), 111

leveling_start_delay (work-front.versions.v40.TemplateTask attribute),125

leveling_start_delay (workfront.versions.v40.Work at-tribute), 147

leveling_start_delay_expression (work-front.versions.unsupported.Approval attribute),178

leveling_start_delay_expression (work-front.versions.unsupported.Task attribute),365

leveling_start_delay_expression (work-front.versions.unsupported.Work attribute),423

leveling_start_delay_expression (work-front.versions.v40.Approval attribute), 18

leveling_start_delay_expression (work-front.versions.v40.Task attribute), 111

leveling_start_delay_expression (work-front.versions.v40.Work attribute), 147

leveling_start_delay_minutes (work-front.versions.unsupported.Approval attribute),178

leveling_start_delay_minutes (work-front.versions.unsupported.Task attribute),365

leveling_start_delay_minutes (work-front.versions.unsupported.TemplateTaskattribute), 383

Index 525

Page 530: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

leveling_start_delay_minutes (work-front.versions.unsupported.Work attribute),423

leveling_start_delay_minutes (work-front.versions.v40.Approval attribute), 18

leveling_start_delay_minutes (work-front.versions.v40.Task attribute), 112

leveling_start_delay_minutes (work-front.versions.v40.TemplateTask attribute),125

leveling_start_delay_minutes (work-front.versions.v40.Work attribute), 147

license_orders (workfront.versions.unsupported.Customerattribute), 224

license_type (workfront.versions.unsupported.AccessLevelattribute), 157

license_type (workfront.versions.unsupported.CustomerFeedbackattribute), 228

license_type (workfront.versions.unsupported.LayoutTemplateattribute), 287

license_type (workfront.versions.unsupported.User at-tribute), 404

license_type (workfront.versions.v40.LayoutTemplate at-tribute), 70

license_type (workfront.versions.v40.User attribute), 138LicenseOrder (class in workfront.versions.unsupported),

289Like (class in workfront.versions.unsupported), 290like (workfront.versions.unsupported.UserNote attribute),

412like() (workfront.versions.unsupported.Endorsement

method), 251like() (workfront.versions.unsupported.JournalEntry

method), 283like() (workfront.versions.unsupported.Note method),

299like() (workfront.versions.v40.JournalEntry method), 68like() (workfront.versions.v40.Note method), 74like_id (workfront.versions.unsupported.UserNote

attribute), 412like_id (workfront.versions.v40.UserNote attribute), 141limit_non_view_external (work-

front.versions.unsupported.MetaRecord at-tribute), 294

limit_non_view_hd (work-front.versions.unsupported.MetaRecord at-tribute), 294

limit_non_view_review (work-front.versions.unsupported.MetaRecord at-tribute), 294

limit_non_view_team (work-front.versions.unsupported.MetaRecord at-tribute), 294

limit_non_view_ts (work-

front.versions.unsupported.MetaRecord at-tribute), 294

limited_actions (workfront.versions.unsupported.MetaRecordattribute), 294

limited_users (workfront.versions.unsupported.Customerattribute), 224

limited_users (workfront.versions.unsupported.LicenseOrderattribute), 290

limited_users (workfront.versions.v40.Customer at-tribute), 40

link_customer() (work-front.versions.unsupported.PortalSectionmethod), 310

linked_by (workfront.versions.unsupported.LinkedFolderattribute), 291

linked_by_id (workfront.versions.unsupported.LinkedFolderattribute), 291

linked_date (workfront.versions.unsupported.LinkedFolderattribute), 291

linked_folder (workfront.versions.unsupported.DocumentFolderattribute), 240

linked_folder_id (work-front.versions.unsupported.DocumentFolderattribute), 240

linked_portal_tabs (workfront.versions.unsupported.Userattribute), 404

linked_roles (workfront.versions.unsupported.LayoutTemplateattribute), 287

linked_roles (workfront.versions.unsupported.PortalSectionattribute), 310

linked_roles (workfront.versions.unsupported.PortalTabattribute), 313

linked_roles (workfront.versions.unsupported.UIFilter at-tribute), 392

linked_roles (workfront.versions.unsupported.UIGroupByattribute), 393

linked_roles (workfront.versions.unsupported.UIView at-tribute), 395

linked_roles (workfront.versions.v40.LayoutTemplate at-tribute), 70

linked_roles (workfront.versions.v40.UIFilter attribute),130

linked_roles (workfront.versions.v40.UIGroupBy at-tribute), 131

linked_roles (workfront.versions.v40.UIView attribute),133

linked_teams (workfront.versions.unsupported.LayoutTemplateattribute), 287

linked_teams (workfront.versions.unsupported.PortalSectionattribute), 310

linked_teams (workfront.versions.unsupported.PortalTabattribute), 313

linked_teams (workfront.versions.unsupported.UIFilterattribute), 392

526 Index

Page 531: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

linked_teams (workfront.versions.unsupported.UIGroupByattribute), 393

linked_teams (workfront.versions.unsupported.UIViewattribute), 395

linked_teams (workfront.versions.v40.LayoutTemplateattribute), 70

linked_teams (workfront.versions.v40.UIFilter attribute),130

linked_teams (workfront.versions.v40.UIGroupByattribute), 131

linked_teams (workfront.versions.v40.UIView attribute),133

linked_users (workfront.versions.unsupported.LayoutTemplateattribute), 287

linked_users (workfront.versions.unsupported.PortalSectionattribute), 310

linked_users (workfront.versions.unsupported.PortalTabattribute), 313

linked_users (workfront.versions.unsupported.UIFilterattribute), 392

linked_users (workfront.versions.unsupported.UIGroupByattribute), 393

linked_users (workfront.versions.unsupported.UIView at-tribute), 395

linked_users (workfront.versions.v40.LayoutTemplate at-tribute), 70

linked_users (workfront.versions.v40.UIFilter attribute),130

linked_users (workfront.versions.v40.UIGroupBy at-tribute), 131

linked_users (workfront.versions.v40.UIView attribute),133

LinkedFolder (class in workfront.versions.unsupported),290

list_auto_refresh_interval_seconds (work-front.versions.unsupported.Customer attribute),224

load() (workfront.meta.Object method), 9load() (workfront.Session method), 7load_external_browse_location() (work-

front.versions.unsupported.ExternalDocumentmethod), 260

load_metadata_for_document() (work-front.versions.unsupported.DocumentProviderMetadatamethod), 243

locale (workfront.versions.unsupported.Customer at-tribute), 224

locale (workfront.versions.unsupported.User attribute),404

locale (workfront.versions.unsupported.WhatsNew at-tribute), 417

locale (workfront.versions.v40.Customer attribute), 41locale (workfront.versions.v40.User attribute), 138location (workfront.versions.unsupported.DocumentVersion

attribute), 249login() (workfront.Session method), 7login_count (workfront.versions.unsupported.User

attribute), 404login_count (workfront.versions.v40.User attribute), 138login_with_user_name() (work-

front.versions.unsupported.Authenticationmethod), 194

login_with_user_name_and_password() (work-front.versions.unsupported.Authenticationmethod), 194

logout() (workfront.Session method), 7logout() (workfront.versions.unsupported.Authentication

method), 195lucid_migration_date (work-

front.versions.unsupported.Approval attribute),179

lucid_migration_date (work-front.versions.unsupported.Customer attribute),224

lucid_migration_date (work-front.versions.unsupported.Project attribute),327

lucid_migration_mode (work-front.versions.unsupported.Customer attribute),224

lucid_migration_options (work-front.versions.unsupported.Customer attribute),224

lucid_migration_status (work-front.versions.unsupported.Customer attribute),224

lucid_migration_step (work-front.versions.unsupported.Customer attribute),224

Mmake_top_priority() (work-

front.versions.unsupported.WorkItem method),429

manager (workfront.versions.unsupported.User attribute),404

manager (workfront.versions.v40.User attribute), 138manager_approval (work-

front.versions.unsupported.TimesheetProfileattribute), 390

manager_id (workfront.versions.unsupported.Userattribute), 404

manager_id (workfront.versions.v40.User attribute), 138mapping (workfront.versions.unsupported.DocumentProviderMetadata

attribute), 244mapping_rules (workfront.versions.unsupported.SSOMapping

attribute), 347

Index 527

Page 532: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

mark_deleted() (workfront.versions.unsupported.UserNotemethod), 412

mark_done() (workfront.versions.unsupported.Issuemethod), 275

mark_done() (workfront.versions.unsupported.Taskmethod), 365

mark_done() (workfront.versions.v40.Issue method), 61mark_done() (workfront.versions.v40.Task method), 112mark_not_done() (workfront.versions.unsupported.Issue

method), 275mark_not_done() (workfront.versions.unsupported.Task

method), 365mark_not_done() (workfront.versions.v40.Issue method),

61mark_not_done() (workfront.versions.v40.Task method),

112mark_viewed() (workfront.versions.unsupported.WorkItem

method), 429mark_viewed() (workfront.versions.v40.WorkItem

method), 153marked_deleted_date (work-

front.versions.unsupported.UserNote attribute),412

master_task (workfront.versions.unsupported.Approvalattribute), 179

master_task (workfront.versions.unsupported.Documentattribute), 235

master_task (workfront.versions.unsupported.DocumentRequestattribute), 244

master_task (workfront.versions.unsupported.Expense at-tribute), 257

master_task (workfront.versions.unsupported.NotificationRecordattribute), 302

master_task (workfront.versions.unsupported.ParameterValueattribute), 305

master_task (workfront.versions.unsupported.Taskattribute), 365

master_task (workfront.versions.unsupported.TemplateAssignmentattribute), 379

master_task (workfront.versions.unsupported.TemplateTaskattribute), 383

master_task (workfront.versions.unsupported.Work at-tribute), 423

master_task_id (workfront.versions.unsupported.Approvalattribute), 179

master_task_id (workfront.versions.unsupported.Documentattribute), 235

master_task_id (workfront.versions.unsupported.DocumentRequestattribute), 244

master_task_id (workfront.versions.unsupported.Expenseattribute), 257

master_task_id (workfront.versions.unsupported.NotificationRecordattribute), 302

master_task_id (workfront.versions.unsupported.ParameterValue

attribute), 305master_task_id (workfront.versions.unsupported.Task at-

tribute), 365master_task_id (workfront.versions.unsupported.TemplateAssignment

attribute), 379master_task_id (workfront.versions.unsupported.TemplateTask

attribute), 383master_task_id (workfront.versions.unsupported.Work

attribute), 423master_task_id (workfront.versions.v40.Approval at-

tribute), 18master_task_id (workfront.versions.v40.Document

attribute), 45master_task_id (workfront.versions.v40.Expense at-

tribute), 51master_task_id (workfront.versions.v40.Task attribute),

112master_task_id (workfront.versions.v40.TemplateAssignment

attribute), 121master_task_id (workfront.versions.v40.TemplateTask at-

tribute), 125master_task_id (workfront.versions.v40.Work attribute),

148MasterTask (class in workfront.versions.unsupported),

291match_type (workfront.versions.unsupported.CategoryCascadeRuleMatch

attribute), 213matching_rule (workfront.versions.unsupported.SSOMappingRule

attribute), 347max_progress (workfront.versions.unsupported.BackgroundJob

attribute), 199max_results (workfront.versions.unsupported.PortalSection

attribute), 310max_users (workfront.versions.unsupported.Role at-

tribute), 346max_users (workfront.versions.v40.Role attribute), 100menu_obj_code (work-

front.versions.unsupported.CustomMenuattribute), 217

message (workfront.versions.unsupported.AccessRequestattribute), 158

message (workfront.versions.unsupported.Update at-tribute), 397

message (workfront.versions.v40.Update attribute), 134message_args (workfront.versions.unsupported.Update

attribute), 397message_args (workfront.versions.v40.Update attribute),

134message_key (workfront.versions.unsupported.MetaRecord

attribute), 295MessageArg (class in workfront.versions.unsupported),

293MessageArg (class in workfront.versions.v40), 70messages (workfront.versions.unsupported.User at-

528 Index

Page 533: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

tribute), 404messages (workfront.versions.v40.User attribute), 138meta_records (workfront.versions.unsupported.AppGlobal

attribute), 169MetaRecord (class in workfront.versions.unsupported),

294method_name (workfront.versions.unsupported.PortalSection

attribute), 310migrate_custom_tab_user_prefs() (work-

front.versions.unsupported.PortalTab method),313

migrate_journal_field_wild_card() (work-front.versions.unsupported.BackgroundJobmethod), 199

migrate_now() (workfront.versions.unsupported.SandboxMigrationmethod), 349

migrate_portal_profile() (work-front.versions.unsupported.LayoutTemplatemethod), 287

migrate_portal_sections_ppmto_anaconda() (work-front.versions.unsupported.PortalSectionmethod), 310

migrate_ppmto_anaconda() (work-front.versions.unsupported.BackgroundJobmethod), 199

migrate_to_lucid_security() (work-front.versions.unsupported.Customer method),224

migrate_uiviews_ppmto_anaconda() (work-front.versions.unsupported.UIView method),396

migrate_users_ppmto_anaconda() (work-front.versions.unsupported.User method),405

migrate_wild_card_journal_fields() (work-front.versions.unsupported.JournalFieldmethod), 285

migration_date (workfront.versions.unsupported.S3Migrationattribute), 347

migration_estimate() (work-front.versions.unsupported.SandboxMigrationmethod), 349

migration_queue_duration() (work-front.versions.unsupported.SandboxMigrationmethod), 350

Milestone (class in workfront.versions.unsupported), 295Milestone (class in workfront.versions.v40), 71milestone (workfront.versions.unsupported.Approval at-

tribute), 179milestone (workfront.versions.unsupported.CalendarSection

attribute), 208milestone (workfront.versions.unsupported.MasterTask

attribute), 293milestone (workfront.versions.unsupported.Task at-

tribute), 365milestone (workfront.versions.unsupported.TemplateTask

attribute), 383milestone (workfront.versions.unsupported.Work at-

tribute), 423milestone (workfront.versions.v40.Approval attribute),

18milestone (workfront.versions.v40.Task attribute), 112milestone (workfront.versions.v40.TemplateTask at-

tribute), 125milestone (workfront.versions.v40.Work attribute), 148milestone_id (workfront.versions.unsupported.Approval

attribute), 179milestone_id (workfront.versions.unsupported.MasterTask

attribute), 293milestone_id (workfront.versions.unsupported.Task at-

tribute), 366milestone_id (workfront.versions.unsupported.TemplateTask

attribute), 383milestone_id (workfront.versions.unsupported.Work at-

tribute), 423milestone_id (workfront.versions.v40.Approval at-

tribute), 18milestone_id (workfront.versions.v40.Task attribute), 112milestone_id (workfront.versions.v40.TemplateTask at-

tribute), 125milestone_id (workfront.versions.v40.Work attribute),

148milestone_path (workfront.versions.unsupported.Approval

attribute), 179milestone_path (workfront.versions.unsupported.Milestone

attribute), 295milestone_path (workfront.versions.unsupported.Project

attribute), 327milestone_path (workfront.versions.unsupported.Template

attribute), 376milestone_path (workfront.versions.v40.Approval at-

tribute), 18milestone_path (workfront.versions.v40.Milestone

attribute), 71milestone_path (workfront.versions.v40.Project at-

tribute), 88milestone_path (workfront.versions.v40.Template at-

tribute), 120milestone_path_id (work-

front.versions.unsupported.Approval attribute),179

milestone_path_id (work-front.versions.unsupported.Milestone at-tribute), 295

milestone_path_id (work-front.versions.unsupported.Project attribute),327

milestone_path_id (work-

Index 529

Page 534: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

front.versions.unsupported.Template attribute),376

milestone_path_id (workfront.versions.v40.Approval at-tribute), 18

milestone_path_id (workfront.versions.v40.Milestone at-tribute), 71

milestone_path_id (workfront.versions.v40.Projectattribute), 88

milestone_path_id (workfront.versions.v40.Template at-tribute), 120

milestone_paths (work-front.versions.unsupported.Customer attribute),224

milestone_paths (workfront.versions.v40.Customer at-tribute), 41

MilestonePath (class in workfront.versions.unsupported),295

MilestonePath (class in workfront.versions.v40), 71milestones (workfront.versions.unsupported.MilestonePath

attribute), 296milestones (workfront.versions.v40.MilestonePath

attribute), 72mitigation_cost (workfront.versions.unsupported.Risk at-

tribute), 344mitigation_cost (workfront.versions.v40.Risk attribute),

98mitigation_description (work-

front.versions.unsupported.Risk attribute),344

mitigation_description (workfront.versions.v40.Risk at-tribute), 98

mobile_devices (workfront.versions.unsupported.User at-tribute), 405

mobile_phone_number (work-front.versions.unsupported.User attribute),405

mobile_phone_number (workfront.versions.v40.User at-tribute), 138

MobileDevice (class in workfront.versions.unsupported),296

mod_date (workfront.versions.unsupported.PortalSectionattribute), 310

mod_date (workfront.versions.unsupported.UIFilter at-tribute), 392

mod_date (workfront.versions.unsupported.UIGroupByattribute), 394

mod_date (workfront.versions.unsupported.UIView at-tribute), 396

mod_date (workfront.versions.v40.UIFilter attribute),130

mod_date (workfront.versions.v40.UIGroupBy attribute),131

mod_date (workfront.versions.v40.UIView attribute), 133monday (workfront.versions.unsupported.Schedule at-

tribute), 351monday (workfront.versions.v40.Schedule attribute), 102move() (workfront.versions.unsupported.Document

method), 235move() (workfront.versions.unsupported.Expense

method), 257move() (workfront.versions.unsupported.Issue method),

275move() (workfront.versions.unsupported.Program

method), 318move() (workfront.versions.unsupported.Task method),

366move() (workfront.versions.unsupported.TemplateTask

method), 383move() (workfront.versions.v40.Document method), 45move() (workfront.versions.v40.Expense method), 51move() (workfront.versions.v40.Issue method), 61move() (workfront.versions.v40.Program method), 81move() (workfront.versions.v40.Task method), 112move() (workfront.versions.v40.TemplateTask method),

125move_tasks_on_team_backlog() (work-

front.versions.unsupported.Team method),371

move_to_task() (workfront.versions.unsupported.Issuemethod), 275

move_to_task() (workfront.versions.v40.Issue method),62

msg_key (workfront.versions.unsupported.UIFilter at-tribute), 392

msg_key (workfront.versions.unsupported.UIGroupByattribute), 394

msg_key (workfront.versions.unsupported.UIViewattribute), 396

msg_key (workfront.versions.v40.UIFilter attribute), 130msg_key (workfront.versions.v40.UIGroupBy attribute),

131msg_key (workfront.versions.v40.UIView attribute), 133my_info (workfront.versions.unsupported.User attribute),

405my_info (workfront.versions.v40.User attribute), 139my_work_view (workfront.versions.unsupported.Team

attribute), 372my_work_view (workfront.versions.v40.Team attribute),

117my_work_view_id (work-

front.versions.unsupported.Team attribute),372

my_work_view_id (workfront.versions.v40.Team at-tribute), 117

Nname (workfront.versions.unsupported.AccessLevel at-

tribute), 157

530 Index

Page 535: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

name (workfront.versions.unsupported.AccessScope at-tribute), 161

name (workfront.versions.unsupported.AnnouncementAttachmentattribute), 166

name (workfront.versions.unsupported.AppEvent at-tribute), 168

name (workfront.versions.unsupported.Approval at-tribute), 179

name (workfront.versions.unsupported.ApprovalProcessattribute), 188

name (workfront.versions.unsupported.ApprovalStep at-tribute), 189

name (workfront.versions.unsupported.Baseline at-tribute), 201

name (workfront.versions.unsupported.BaselineTask at-tribute), 202

name (workfront.versions.unsupported.CalendarEvent at-tribute), 205

name (workfront.versions.unsupported.CalendarInfo at-tribute), 207

name (workfront.versions.unsupported.CalendarPortalSectionattribute), 208

name (workfront.versions.unsupported.CalendarSectionattribute), 209

name (workfront.versions.unsupported.Category at-tribute), 211

name (workfront.versions.unsupported.Company at-tribute), 215

name (workfront.versions.unsupported.ComponentKeyattribute), 215

name (workfront.versions.unsupported.Customer at-tribute), 224

name (workfront.versions.unsupported.CustomerPreferencesattribute), 228

name (workfront.versions.unsupported.Document at-tribute), 235

name (workfront.versions.unsupported.DocumentFolderattribute), 240

name (workfront.versions.unsupported.DocumentProviderattribute), 243

name (workfront.versions.unsupported.DocumentProviderConfigattribute), 243

name (workfront.versions.unsupported.EmailTemplateattribute), 251

name (workfront.versions.unsupported.EventHandler at-tribute), 254

name (workfront.versions.unsupported.ExpenseType at-tribute), 259

name (workfront.versions.unsupported.ExternalDocumentattribute), 261

name (workfront.versions.unsupported.ExternalSectionattribute), 262

name (workfront.versions.unsupported.Favorite at-tribute), 263

name (workfront.versions.unsupported.Feature attribute),264

name (workfront.versions.unsupported.Group attribute),266

name (workfront.versions.unsupported.HourType at-tribute), 269

name (workfront.versions.unsupported.ImportTemplateattribute), 270

name (workfront.versions.unsupported.Issue attribute),275

name (workfront.versions.unsupported.Iteration at-tribute), 280

name (workfront.versions.unsupported.LayoutTemplateattribute), 287

name (workfront.versions.unsupported.MasterTask at-tribute), 293

name (workfront.versions.unsupported.Milestone at-tribute), 295

name (workfront.versions.unsupported.MilestonePath at-tribute), 296

name (workfront.versions.unsupported.Parameter at-tribute), 304

name (workfront.versions.unsupported.ParameterGroupattribute), 304

name (workfront.versions.unsupported.PortalProfile at-tribute), 308

name (workfront.versions.unsupported.PortalSection at-tribute), 311

name (workfront.versions.unsupported.PortalTab at-tribute), 314

name (workfront.versions.unsupported.Portfolio at-tribute), 316

name (workfront.versions.unsupported.Program at-tribute), 318

name (workfront.versions.unsupported.Project attribute),327

name (workfront.versions.unsupported.QueueTopic at-tribute), 336

name (workfront.versions.unsupported.QueueTopicGroupattribute), 336

name (workfront.versions.unsupported.Recent attribute),337

name (workfront.versions.unsupported.RecentMenuItemattribute), 338

name (workfront.versions.unsupported.ReportFolder at-tribute), 341

name (workfront.versions.unsupported.Reseller at-tribute), 341

name (workfront.versions.unsupported.ResourcePool at-tribute), 343

name (workfront.versions.unsupported.RiskType at-tribute), 345

name (workfront.versions.unsupported.Role attribute),346

Index 531

Page 536: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

name (workfront.versions.unsupported.RoutingRule at-tribute), 346

name (workfront.versions.unsupported.Schedule at-tribute), 351

name (workfront.versions.unsupported.ScheduledReportattribute), 352

name (workfront.versions.unsupported.ScoreCard at-tribute), 354

name (workfront.versions.unsupported.ScoreCardQuestionattribute), 356

name (workfront.versions.unsupported.SSOUsername at-tribute), 349

name (workfront.versions.unsupported.Task attribute),366

name (workfront.versions.unsupported.Team attribute),372

name (workfront.versions.unsupported.Template at-tribute), 376

name (workfront.versions.unsupported.TemplateTask at-tribute), 383

name (workfront.versions.unsupported.TimedNotificationattribute), 387

name (workfront.versions.unsupported.TimesheetProfileattribute), 390

name (workfront.versions.unsupported.UIFilter at-tribute), 392

name (workfront.versions.unsupported.UIGroupBy at-tribute), 394

name (workfront.versions.unsupported.UIView attribute),396

name (workfront.versions.unsupported.User attribute),405

name (workfront.versions.unsupported.UserActivity at-tribute), 408

name (workfront.versions.unsupported.UserObjectPrefattribute), 413

name (workfront.versions.unsupported.UserPrefValue at-tribute), 414

name (workfront.versions.unsupported.Work attribute),423

name (workfront.versions.v40.Approval attribute), 18name (workfront.versions.v40.ApprovalProcess at-

tribute), 26name (workfront.versions.v40.ApprovalStep attribute),

27name (workfront.versions.v40.Baseline attribute), 31name (workfront.versions.v40.BaselineTask attribute), 33name (workfront.versions.v40.Category attribute), 35name (workfront.versions.v40.Company attribute), 37name (workfront.versions.v40.Customer attribute), 41name (workfront.versions.v40.CustomerPreferences at-

tribute), 43name (workfront.versions.v40.Document attribute), 45name (workfront.versions.v40.DocumentFolder at-

tribute), 47name (workfront.versions.v40.ExpenseType attribute), 53name (workfront.versions.v40.Favorite attribute), 53name (workfront.versions.v40.Group attribute), 55name (workfront.versions.v40.HourType attribute), 58name (workfront.versions.v40.Issue attribute), 62name (workfront.versions.v40.Iteration attribute), 66name (workfront.versions.v40.LayoutTemplate attribute),

70name (workfront.versions.v40.Milestone attribute), 71name (workfront.versions.v40.MilestonePath attribute),

72name (workfront.versions.v40.Parameter attribute), 77name (workfront.versions.v40.ParameterGroup attribute),

78name (workfront.versions.v40.Portfolio attribute), 79name (workfront.versions.v40.Program attribute), 81name (workfront.versions.v40.Project attribute), 88name (workfront.versions.v40.QueueTopic attribute), 95name (workfront.versions.v40.ResourcePool attribute),

98name (workfront.versions.v40.RiskType attribute), 99name (workfront.versions.v40.Role attribute), 100name (workfront.versions.v40.RoutingRule attribute),

100name (workfront.versions.v40.Schedule attribute), 102name (workfront.versions.v40.ScoreCard attribute), 103name (workfront.versions.v40.ScoreCardQuestion

attribute), 105name (workfront.versions.v40.Task attribute), 112name (workfront.versions.v40.Team attribute), 117name (workfront.versions.v40.Template attribute), 120name (workfront.versions.v40.TemplateTask attribute),

125name (workfront.versions.v40.UIFilter attribute), 130name (workfront.versions.v40.UIGroupBy attribute), 131name (workfront.versions.v40.UIView attribute), 133name (workfront.versions.v40.User attribute), 139name (workfront.versions.v40.UserActivity attribute),

141name (workfront.versions.v40.UserPrefValue attribute),

142name (workfront.versions.v40.Work attribute), 148name_key (workfront.versions.unsupported.AccessLevel

attribute), 157name_key (workfront.versions.unsupported.AccessScope

attribute), 161name_key (workfront.versions.unsupported.AppEvent at-

tribute), 168name_key (workfront.versions.unsupported.EventHandler

attribute), 254name_key (workfront.versions.unsupported.ExpenseType

attribute), 259

532 Index

Page 537: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

name_key (workfront.versions.unsupported.ExternalSectionattribute), 262

name_key (workfront.versions.unsupported.HourType at-tribute), 269

name_key (workfront.versions.unsupported.InstalledDDItemattribute), 270

name_key (workfront.versions.unsupported.LayoutTemplateattribute), 287

name_key (workfront.versions.unsupported.PortalProfileattribute), 308

name_key (workfront.versions.unsupported.PortalSectionattribute), 311

name_key (workfront.versions.unsupported.PortalTab at-tribute), 314

name_key (workfront.versions.v40.ExpenseType at-tribute), 53

name_key (workfront.versions.v40.HourType attribute),58

name_key (workfront.versions.v40.LayoutTemplate at-tribute), 70

nav_bar (workfront.versions.unsupported.LayoutTemplateattribute), 287

nav_bar (workfront.versions.v40.LayoutTemplate at-tribute), 70

nav_items (workfront.versions.unsupported.LayoutTemplateattribute), 287

nav_items (workfront.versions.v40.LayoutTemplate at-tribute), 70

need_license_agreement (work-front.versions.unsupported.Customer attribute),224

need_license_agreement (work-front.versions.v40.Customer attribute), 41

nested_updates (workfront.versions.unsupported.Updateattribute), 397

nested_updates (workfront.versions.v40.Update at-tribute), 134

net_value (workfront.versions.unsupported.Portfolio at-tribute), 316

net_value (workfront.versions.v40.Portfolio attribute), 79new_date_val (workfront.versions.unsupported.JournalEntry

attribute), 283new_date_val (workfront.versions.v40.JournalEntry at-

tribute), 68new_number_val (work-

front.versions.unsupported.JournalEntryattribute), 283

new_number_val (workfront.versions.v40.JournalEntryattribute), 68

new_text_val (workfront.versions.unsupported.JournalEntryattribute), 283

new_text_val (workfront.versions.v40.JournalEntry at-tribute), 68

next_auto_baseline_date (work-

front.versions.unsupported.Approval attribute),179

next_auto_baseline_date (work-front.versions.unsupported.Project attribute),327

next_auto_baseline_date (work-front.versions.v40.Approval attribute), 18

next_auto_baseline_date (workfront.versions.v40.Projectattribute), 88

next_parameter (workfront.versions.unsupported.CategoryCascadeRuleattribute), 212

next_parameter_group (work-front.versions.unsupported.CategoryCascadeRuleattribute), 212

next_parameter_group_id (work-front.versions.unsupported.CategoryCascadeRuleattribute), 212

next_parameter_id (work-front.versions.unsupported.CategoryCascadeRuleattribute), 212

next_usage_report_date (work-front.versions.unsupported.Customer attribute),224

next_usage_report_date (work-front.versions.v40.Customer attribute), 41

non_work_date (workfront.versions.unsupported.NonWorkDayattribute), 296

non_work_date (workfront.versions.v40.NonWorkDayattribute), 72

non_work_days (work-front.versions.unsupported.Schedule attribute),351

non_work_days (workfront.versions.v40.Scheduleattribute), 102

NonWorkDay (class in workfront.versions.unsupported),296

NonWorkDay (class in workfront.versions.v40), 72Note (class in workfront.versions.unsupported), 297Note (class in workfront.versions.v40), 72note (workfront.versions.unsupported.DocumentApproval

attribute), 239note (workfront.versions.unsupported.Like attribute), 290note (workfront.versions.unsupported.NoteTag attribute),

301note (workfront.versions.unsupported.UserNote at-

tribute), 412note (workfront.versions.v40.DocumentApproval at-

tribute), 47note (workfront.versions.v40.NoteTag attribute), 76note (workfront.versions.v40.UserNote attribute), 141note_count (workfront.versions.unsupported.AuditLoginAsSession

attribute), 193note_id (workfront.versions.unsupported.DocumentApproval

attribute), 239

Index 533

Page 538: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

note_id (workfront.versions.unsupported.Like attribute),290

note_id (workfront.versions.unsupported.NoteTag at-tribute), 301

note_id (workfront.versions.unsupported.UserNote at-tribute), 412

note_id (workfront.versions.v40.DocumentApproval at-tribute), 47

note_id (workfront.versions.v40.NoteTag attribute), 76note_id (workfront.versions.v40.UserNote attribute), 142note_obj_code (workfront.versions.unsupported.Note at-

tribute), 299note_obj_code (workfront.versions.v40.Note attribute),

74note_text (workfront.versions.unsupported.Note at-

tribute), 299note_text (workfront.versions.v40.Note attribute), 74notes (workfront.versions.unsupported.AuditLoginAsSession

attribute), 193NoteTag (class in workfront.versions.unsupported), 301NoteTag (class in workfront.versions.v40), 76notification_config_map (work-

front.versions.unsupported.Customer attribute),224

notification_config_map_id (work-front.versions.unsupported.Customer attribute),224

notification_config_map_id (work-front.versions.v40.Customer attribute), 41

notification_obj_code (work-front.versions.unsupported.NotificationRecordattribute), 302

notification_obj_id (work-front.versions.unsupported.NotificationRecordattribute), 302

notification_records (work-front.versions.unsupported.Approval attribute),179

notification_records (work-front.versions.unsupported.Issue attribute),275

notification_records (work-front.versions.unsupported.MasterTask at-tribute), 293

notification_records (work-front.versions.unsupported.Project attribute),327

notification_records (work-front.versions.unsupported.Task attribute),366

notification_records (work-front.versions.unsupported.Template attribute),376

notification_records (work-

front.versions.unsupported.TemplateTaskattribute), 383

notification_records (work-front.versions.unsupported.Timesheet at-tribute), 388

notification_records (work-front.versions.unsupported.TimesheetProfileattribute), 390

notification_records (work-front.versions.unsupported.Work attribute),423

notification_url (workfront.versions.unsupported.EventSubscriptionattribute), 255

NotificationRecord (class in work-front.versions.unsupported), 301

notified (workfront.versions.unsupported.SandboxMigrationattribute), 350

notify_approver() (work-front.versions.unsupported.DocumentApprovalmethod), 239

notify_share() (workfront.versions.unsupported.DocumentSharemethod), 246

num_likes (workfront.versions.unsupported.Endorsementattribute), 251

num_likes (workfront.versions.unsupported.JournalEntryattribute), 283

num_likes (workfront.versions.unsupported.Note at-tribute), 299

num_likes (workfront.versions.v40.JournalEntry at-tribute), 68

num_likes (workfront.versions.v40.Note attribute), 74num_replies (workfront.versions.unsupported.Endorsement

attribute), 252num_replies (workfront.versions.unsupported.JournalEntry

attribute), 283num_replies (workfront.versions.unsupported.Note at-

tribute), 299num_replies (workfront.versions.v40.JournalEntry

attribute), 68num_replies (workfront.versions.v40.Note attribute), 74number_of_assignments (work-

front.versions.unsupported.UserResourceattribute), 415

number_of_children (work-front.versions.unsupported.Approval attribute),179

number_of_children (work-front.versions.unsupported.Issue attribute),275

number_of_children (work-front.versions.unsupported.Task attribute),366

number_of_children (work-front.versions.unsupported.TemplateTask

534 Index

Page 539: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

attribute), 383number_of_children (work-

front.versions.unsupported.Work attribute),423

number_of_children (workfront.versions.v40.Approvalattribute), 18

number_of_children (workfront.versions.v40.Issueattribute), 62

number_of_children (workfront.versions.v40.Taskattribute), 112

number_of_children (work-front.versions.v40.TemplateTask attribute),125

number_of_children (workfront.versions.v40.Work at-tribute), 148

number_of_comments (work-front.versions.unsupported.RecentUpdateattribute), 339

number_of_days_within_actual_threshold (work-front.versions.unsupported.UserResourceattribute), 415

number_of_days_within_projected_threshold (work-front.versions.unsupported.UserResourceattribute), 415

number_of_days_within_threshold (work-front.versions.unsupported.UserResourceattribute), 415

number_open_op_tasks (work-front.versions.unsupported.Approval attribute),179

number_open_op_tasks (work-front.versions.unsupported.Project attribute),327

number_open_op_tasks (work-front.versions.unsupported.Task attribute),366

number_open_op_tasks (work-front.versions.unsupported.Work attribute),423

number_open_op_tasks (work-front.versions.v40.Approval attribute), 18

number_open_op_tasks (workfront.versions.v40.Projectattribute), 88

number_open_op_tasks (workfront.versions.v40.Task at-tribute), 112

number_open_op_tasks (workfront.versions.v40.Workattribute), 148

number_val (workfront.versions.unsupported.ParameterValueattribute), 305

number_val (workfront.versions.unsupported.ScoreCardAnswerattribute), 355

number_val (workfront.versions.v40.ScoreCardAnswerattribute), 103

Oobj_code (workfront.versions.unsupported.Authentication

attribute), 195obj_code (workfront.versions.unsupported.CalendarFeedEntry

attribute), 206obj_code (workfront.versions.unsupported.CustomerPreferences

attribute), 228obj_code (workfront.versions.unsupported.Email at-

tribute), 249obj_code (workfront.versions.unsupported.KickStart at-

tribute), 285obj_code (workfront.versions.unsupported.MetaRecord

attribute), 295obj_code (workfront.versions.unsupported.UserResource

attribute), 415obj_code (workfront.versions.v40.CustomerPreferences

attribute), 43obj_id (workfront.versions.unsupported.AccessLevel at-

tribute), 157obj_id (workfront.versions.unsupported.AccessScope at-

tribute), 161obj_id (workfront.versions.unsupported.AppEvent

attribute), 168obj_id (workfront.versions.unsupported.CalendarPortalSection

attribute), 208obj_id (workfront.versions.unsupported.CustomMenu at-

tribute), 218obj_id (workfront.versions.unsupported.Document

attribute), 235obj_id (workfront.versions.unsupported.Expense at-

tribute), 257obj_id (workfront.versions.unsupported.ExpenseType at-

tribute), 259obj_id (workfront.versions.unsupported.ExternalSection

attribute), 262obj_id (workfront.versions.unsupported.Favorite at-

tribute), 263obj_id (workfront.versions.unsupported.HourType

attribute), 269obj_id (workfront.versions.unsupported.JournalEntry at-

tribute), 283obj_id (workfront.versions.unsupported.LayoutTemplate

attribute), 287obj_id (workfront.versions.unsupported.NonWorkDay at-

tribute), 296obj_id (workfront.versions.unsupported.Note attribute),

299obj_id (workfront.versions.unsupported.NoteTag at-

tribute), 301obj_id (workfront.versions.unsupported.ObjectCategory

attribute), 303obj_id (workfront.versions.unsupported.ParameterValue

attribute), 306obj_id (workfront.versions.unsupported.PortalProfile at-

Index 535

Page 540: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

tribute), 308obj_id (workfront.versions.unsupported.PortalSection at-

tribute), 311obj_id (workfront.versions.unsupported.Recent attribute),

338obj_id (workfront.versions.unsupported.RecentMenuItem

attribute), 338obj_id (workfront.versions.unsupported.ResourceAllocation

attribute), 342obj_id (workfront.versions.unsupported.ScoreCard

attribute), 354obj_id (workfront.versions.unsupported.ScoreCardAnswer

attribute), 355obj_id (workfront.versions.unsupported.TemplateAssignment

attribute), 379obj_id (workfront.versions.unsupported.UIFilter at-

tribute), 392obj_id (workfront.versions.unsupported.UIGroupBy at-

tribute), 394obj_id (workfront.versions.unsupported.UIView at-

tribute), 396obj_id (workfront.versions.unsupported.WorkItem

attribute), 429obj_id (workfront.versions.v40.Document attribute), 45obj_id (workfront.versions.v40.Expense attribute), 51obj_id (workfront.versions.v40.ExpenseType attribute),

53obj_id (workfront.versions.v40.Favorite attribute), 53obj_id (workfront.versions.v40.HourType attribute), 58obj_id (workfront.versions.v40.JournalEntry attribute),

68obj_id (workfront.versions.v40.LayoutTemplate at-

tribute), 70obj_id (workfront.versions.v40.NonWorkDay attribute),

72obj_id (workfront.versions.v40.Note attribute), 74obj_id (workfront.versions.v40.NoteTag attribute), 76obj_id (workfront.versions.v40.ResourceAllocation at-

tribute), 97obj_id (workfront.versions.v40.ScoreCard attribute), 103obj_id (workfront.versions.v40.ScoreCardAnswer at-

tribute), 103obj_id (workfront.versions.v40.TemplateAssignment at-

tribute), 121obj_id (workfront.versions.v40.UIFilter attribute), 130obj_id (workfront.versions.v40.UIGroupBy attribute),

131obj_id (workfront.versions.v40.UIView attribute), 133obj_id (workfront.versions.v40.WorkItem attribute), 153obj_ids (workfront.versions.unsupported.SearchEvent at-

tribute), 357obj_interface (workfront.versions.unsupported.CustomMenu

attribute), 218obj_interface (workfront.versions.unsupported.ExternalSection

attribute), 262obj_interface (workfront.versions.unsupported.PortalSection

attribute), 311obj_obj_code (workfront.versions.unsupported.AccessLevel

attribute), 157obj_obj_code (workfront.versions.unsupported.AccessLevelPermissions

attribute), 157obj_obj_code (workfront.versions.unsupported.AccessScope

attribute), 161obj_obj_code (workfront.versions.unsupported.AppEvent

attribute), 168obj_obj_code (workfront.versions.unsupported.CalendarPortalSection

attribute), 208obj_obj_code (workfront.versions.unsupported.ExpenseType

attribute), 259obj_obj_code (workfront.versions.unsupported.ExternalSection

attribute), 263obj_obj_code (workfront.versions.unsupported.Favorite

attribute), 263obj_obj_code (workfront.versions.unsupported.HourType

attribute), 269obj_obj_code (workfront.versions.unsupported.JournalEntry

attribute), 283obj_obj_code (workfront.versions.unsupported.JournalField

attribute), 285obj_obj_code (workfront.versions.unsupported.LayoutTemplate

attribute), 287obj_obj_code (workfront.versions.unsupported.NonWorkDay

attribute), 296obj_obj_code (workfront.versions.unsupported.NoteTag

attribute), 301obj_obj_code (workfront.versions.unsupported.ObjectCategory

attribute), 303obj_obj_code (workfront.versions.unsupported.ParameterValue

attribute), 306obj_obj_code (workfront.versions.unsupported.PortalProfile

attribute), 308obj_obj_code (workfront.versions.unsupported.PortalSection

attribute), 311obj_obj_code (workfront.versions.unsupported.Recent

attribute), 338obj_obj_code (workfront.versions.unsupported.RecentMenuItem

attribute), 338obj_obj_code (workfront.versions.unsupported.ResourceAllocation

attribute), 342obj_obj_code (workfront.versions.unsupported.ScoreCard

attribute), 354obj_obj_code (workfront.versions.unsupported.ScoreCardAnswer

attribute), 355obj_obj_code (workfront.versions.unsupported.TemplateAssignment

attribute), 379obj_obj_code (workfront.versions.unsupported.UIFilter

attribute), 392obj_obj_code (workfront.versions.unsupported.UIGroupBy

536 Index

Page 541: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

attribute), 394obj_obj_code (workfront.versions.unsupported.UIView

attribute), 396obj_obj_code (workfront.versions.unsupported.WorkItem

attribute), 429obj_obj_code (workfront.versions.v40.ExpenseType at-

tribute), 53obj_obj_code (workfront.versions.v40.Favorite attribute),

53obj_obj_code (workfront.versions.v40.HourType at-

tribute), 58obj_obj_code (workfront.versions.v40.JournalEntry at-

tribute), 68obj_obj_code (workfront.versions.v40.LayoutTemplate

attribute), 70obj_obj_code (workfront.versions.v40.NonWorkDay at-

tribute), 72obj_obj_code (workfront.versions.v40.NoteTag at-

tribute), 76obj_obj_code (workfront.versions.v40.ResourceAllocation

attribute), 97obj_obj_code (workfront.versions.v40.ScoreCard at-

tribute), 103obj_obj_code (workfront.versions.v40.ScoreCardAnswer

attribute), 103obj_obj_code (workfront.versions.v40.TemplateAssignment

attribute), 121obj_obj_code (workfront.versions.v40.UIFilter attribute),

130obj_obj_code (workfront.versions.v40.UIGroupBy

attribute), 131obj_obj_code (workfront.versions.v40.UIView attribute),

133obj_obj_code (workfront.versions.v40.WorkItem at-

tribute), 153objcode (workfront.versions.unsupported.MessageArg at-

tribute), 294objcode (workfront.versions.v40.MessageArg attribute),

71Object (class in workfront.meta), 8object_categories (work-

front.versions.unsupported.Approval attribute),179

object_categories (work-front.versions.unsupported.ApprovalProcessAttachableattribute), 189

object_categories (work-front.versions.unsupported.Company attribute),215

object_categories (work-front.versions.unsupported.Document at-tribute), 235

object_categories (work-front.versions.unsupported.Expense attribute),

257object_categories (workfront.versions.unsupported.Issue

attribute), 275object_categories (work-

front.versions.unsupported.Iteration attribute),280

object_categories (work-front.versions.unsupported.MasterTask at-tribute), 293

object_categories (work-front.versions.unsupported.Portfolio attribute),316

object_categories (work-front.versions.unsupported.Program attribute),319

object_categories (work-front.versions.unsupported.Project attribute),327

object_categories (work-front.versions.unsupported.QueueDef at-tribute), 334

object_categories (work-front.versions.unsupported.QueueTopic at-tribute), 336

object_categories (workfront.versions.unsupported.Taskattribute), 366

object_categories (work-front.versions.unsupported.Template attribute),376

object_categories (work-front.versions.unsupported.TemplateTaskattribute), 384

object_categories (workfront.versions.unsupported.Userattribute), 405

object_categories (workfront.versions.unsupported.Workattribute), 423

ObjectCategory (class in work-front.versions.unsupported), 303

objid (workfront.versions.unsupported.MessageArg at-tribute), 294

objid (workfront.versions.v40.MessageArg attribute), 71old_date_val (workfront.versions.unsupported.JournalEntry

attribute), 283old_date_val (workfront.versions.v40.JournalEntry at-

tribute), 68old_jexl_expression (work-

front.versions.unsupported.Feature attribute),264

old_number_val (work-front.versions.unsupported.JournalEntryattribute), 283

old_number_val (workfront.versions.v40.JournalEntryattribute), 68

old_text_val (workfront.versions.unsupported.JournalEntry

Index 537

Page 542: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

attribute), 283old_text_val (workfront.versions.v40.JournalEntry

attribute), 68olv (workfront.versions.unsupported.Approval attribute),

179olv (workfront.versions.unsupported.Assignment at-

tribute), 191olv (workfront.versions.unsupported.CustomerTimelineCalc

attribute), 229olv (workfront.versions.unsupported.Issue attribute), 275olv (workfront.versions.unsupported.Project attribute),

327olv (workfront.versions.unsupported.Task attribute), 366olv (workfront.versions.unsupported.Template attribute),

376olv (workfront.versions.unsupported.UserAvailability at-

tribute), 408olv (workfront.versions.unsupported.Work attribute), 423olv (workfront.versions.v40.Approval attribute), 18olv (workfront.versions.v40.Project attribute), 88olv (workfront.versions.v40.Template attribute), 120on_budget (workfront.versions.unsupported.Portfolio at-

tribute), 316on_budget (workfront.versions.v40.Portfolio attribute),

79on_demand_options (work-

front.versions.unsupported.Customer attribute),224

on_demand_options (workfront.versions.v40.Customerattribute), 41

on_time (workfront.versions.unsupported.Portfolio at-tribute), 316

on_time (workfront.versions.v40.Portfolio attribute), 80ONDEMAND_TEMPLATE (in module work-

front.session), 8op_task (workfront.versions.unsupported.ApproverStatus

attribute), 190op_task (workfront.versions.unsupported.Assignment at-

tribute), 191op_task (workfront.versions.unsupported.AwaitingApproval

attribute), 197op_task (workfront.versions.unsupported.CalendarFeedEntry

attribute), 206op_task (workfront.versions.unsupported.Document at-

tribute), 235op_task (workfront.versions.unsupported.DocumentRequest

attribute), 244op_task (workfront.versions.unsupported.Endorsement

attribute), 252op_task (workfront.versions.unsupported.Hour attribute),

267op_task (workfront.versions.unsupported.JournalEntry

attribute), 283op_task (workfront.versions.unsupported.Note attribute),

299op_task (workfront.versions.unsupported.NotificationRecord

attribute), 302op_task (workfront.versions.unsupported.ParameterValue

attribute), 306op_task (workfront.versions.unsupported.TimesheetTemplate

attribute), 390op_task (workfront.versions.unsupported.WorkItem at-

tribute), 429op_task (workfront.versions.v40.ApproverStatus at-

tribute), 27op_task (workfront.versions.v40.Assignment attribute),

29op_task (workfront.versions.v40.Document attribute), 45op_task (workfront.versions.v40.Hour attribute), 56op_task (workfront.versions.v40.JournalEntry attribute),

68op_task (workfront.versions.v40.Note attribute), 74op_task (workfront.versions.v40.WorkItem attribute),

153op_task_assignment_core_action (work-

front.versions.unsupported.SharingSettingsattribute), 357

op_task_assignment_project_core_action (work-front.versions.unsupported.SharingSettingsattribute), 357

op_task_assignment_project_secondary_actions (work-front.versions.unsupported.SharingSettingsattribute), 358

op_task_assignment_secondary_actions (work-front.versions.unsupported.SharingSettingsattribute), 358

op_task_bug_report_statuses (work-front.versions.unsupported.Team attribute),372

op_task_bug_report_statuses (work-front.versions.v40.Team attribute), 117

op_task_change_order_statuses (work-front.versions.unsupported.Team attribute),372

op_task_change_order_statuses (work-front.versions.v40.Team attribute), 117

op_task_count_limit (work-front.versions.unsupported.Customer attribute),225

op_task_count_limit (workfront.versions.v40.Customerattribute), 41

op_task_id (workfront.versions.unsupported.ApproverStatusattribute), 190

op_task_id (workfront.versions.unsupported.Assignmentattribute), 191

op_task_id (workfront.versions.unsupported.AwaitingApprovalattribute), 197

op_task_id (workfront.versions.unsupported.CalendarFeedEntry

538 Index

Page 543: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

attribute), 206op_task_id (workfront.versions.unsupported.Document

attribute), 235op_task_id (workfront.versions.unsupported.DocumentRequest

attribute), 244op_task_id (workfront.versions.unsupported.Endorsement

attribute), 252op_task_id (workfront.versions.unsupported.Hour at-

tribute), 267op_task_id (workfront.versions.unsupported.JournalEntry

attribute), 283op_task_id (workfront.versions.unsupported.Note at-

tribute), 299op_task_id (workfront.versions.unsupported.NotificationRecord

attribute), 302op_task_id (workfront.versions.unsupported.ParameterValue

attribute), 306op_task_id (workfront.versions.unsupported.TimesheetTemplate

attribute), 390op_task_id (workfront.versions.unsupported.WorkItem

attribute), 429op_task_id (workfront.versions.v40.ApproverStatus at-

tribute), 27op_task_id (workfront.versions.v40.Assignment at-

tribute), 29op_task_id (workfront.versions.v40.Document attribute),

45op_task_id (workfront.versions.v40.Hour attribute), 56op_task_id (workfront.versions.v40.JournalEntry at-

tribute), 68op_task_id (workfront.versions.v40.Note attribute), 74op_task_id (workfront.versions.v40.WorkItem attribute),

153op_task_issue_statuses (work-

front.versions.unsupported.Team attribute),372

op_task_issue_statuses (workfront.versions.v40.Team at-tribute), 117

op_task_request_statuses (work-front.versions.unsupported.Team attribute),372

op_task_request_statuses (workfront.versions.v40.Teamattribute), 117

op_task_type (workfront.versions.unsupported.Approvalattribute), 179

op_task_type (workfront.versions.unsupported.Issue at-tribute), 275

op_task_type (workfront.versions.unsupported.Work at-tribute), 423

op_task_type (workfront.versions.v40.Approval at-tribute), 18

op_task_type (workfront.versions.v40.Issue attribute), 62op_task_type (workfront.versions.v40.Work attribute),

148

op_task_type_label (work-front.versions.unsupported.Approval attribute),179

op_task_type_label (work-front.versions.unsupported.Issue attribute),275

op_task_type_label (work-front.versions.unsupported.Work attribute),423

op_task_type_label (workfront.versions.v40.Approval at-tribute), 18

op_task_type_label (workfront.versions.v40.Issue at-tribute), 62

op_task_type_label (workfront.versions.v40.Workattribute), 148

op_tasks (workfront.versions.unsupported.Approval at-tribute), 179

op_tasks (workfront.versions.unsupported.Task attribute),366

op_tasks (workfront.versions.unsupported.Work at-tribute), 423

op_tasks (workfront.versions.v40.Approval attribute), 18op_tasks (workfront.versions.v40.Task attribute), 112op_tasks (workfront.versions.v40.Work attribute), 148open_op_tasks (workfront.versions.unsupported.Approval

attribute), 179open_op_tasks (workfront.versions.unsupported.Project

attribute), 327open_op_tasks (workfront.versions.unsupported.Task at-

tribute), 366open_op_tasks (workfront.versions.unsupported.Work at-

tribute), 423open_op_tasks (workfront.versions.v40.Approval at-

tribute), 19open_op_tasks (workfront.versions.v40.Project attribute),

88open_op_tasks (workfront.versions.v40.Task attribute),

112open_op_tasks (workfront.versions.v40.Work attribute),

148opt_out_date (workfront.versions.unsupported.AnnouncementOptOut

attribute), 166optask (workfront.versions.unsupported.WatchListEntry

attribute), 416optask_id (workfront.versions.unsupported.WatchListEntry

attribute), 416optimization_score (work-

front.versions.unsupported.Approval attribute),179

optimization_score (work-front.versions.unsupported.Project attribute),328

optimization_score (workfront.versions.v40.Approval at-tribute), 19

Index 539

Page 544: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

optimization_score (workfront.versions.v40.Project at-tribute), 89

order_date (workfront.versions.unsupported.LicenseOrderattribute), 290

original_duration (work-front.versions.unsupported.Approval attribute),179

original_duration (workfront.versions.unsupported.Taskattribute), 366

original_duration (work-front.versions.unsupported.TemplateTaskattribute), 384

original_duration (workfront.versions.unsupported.Workattribute), 423

original_duration (workfront.versions.v40.Approval at-tribute), 19

original_duration (workfront.versions.v40.Task attribute),112

original_duration (workfront.versions.v40.TemplateTaskattribute), 125

original_duration (workfront.versions.v40.Work at-tribute), 148

original_total_estimate (work-front.versions.unsupported.Iteration attribute),280

original_work_required (work-front.versions.unsupported.Approval attribute),179

original_work_required (work-front.versions.unsupported.Task attribute),366

original_work_required (work-front.versions.unsupported.TemplateTaskattribute), 384

original_work_required (work-front.versions.unsupported.Work attribute),424

original_work_required (work-front.versions.v40.Approval attribute), 19

original_work_required (workfront.versions.v40.Task at-tribute), 112

original_work_required (work-front.versions.v40.TemplateTask attribute),125

original_work_required (workfront.versions.v40.Workattribute), 148

other_amount (workfront.versions.unsupported.BillingRecordattribute), 203

other_amount (workfront.versions.v40.BillingRecord at-tribute), 34

other_groups (workfront.versions.unsupported.Categoryattribute), 211

other_groups (workfront.versions.unsupported.Scheduleattribute), 351

other_groups (workfront.versions.v40.Category at-tribute), 35

other_groups (workfront.versions.v40.Schedule at-tribute), 102

other_groups (workfront.versions.v40.User attribute),139

other_recipient_names (work-front.versions.unsupported.Announcementattribute), 165

otherwise_parameter (work-front.versions.unsupported.CategoryCascadeRuleattribute), 212

otherwise_parameter_id (work-front.versions.unsupported.CategoryCascadeRuleattribute), 212

overdraft_exp_date (workfront.versions.v40.Customer at-tribute), 41

overhead_type (workfront.versions.unsupported.HourTypeattribute), 269

overhead_type (workfront.versions.v40.HourType at-tribute), 58

overridden_user (work-front.versions.unsupported.ApproverStatusattribute), 190

overridden_user (workfront.versions.v40.ApproverStatusattribute), 27

overridden_user_id (work-front.versions.unsupported.ApproverStatusattribute), 190

overridden_user_id (work-front.versions.v40.ApproverStatus attribute),28

override_attribute (work-front.versions.unsupported.SSOMappingattribute), 347

override_for_session() (work-front.versions.unsupported.Feature method),264

overtime_hours (workfront.versions.unsupported.Timesheetattribute), 388

overtime_hours (workfront.versions.v40.Timesheet at-tribute), 128

owner (workfront.versions.unsupported.Acknowledgementattribute), 164

owner (workfront.versions.unsupported.Approval at-tribute), 180

owner (workfront.versions.unsupported.Documentattribute), 235

owner (workfront.versions.unsupported.DocumentProviderattribute), 243

owner (workfront.versions.unsupported.Hour attribute),267

owner (workfront.versions.unsupported.Issue attribute),275

540 Index

Page 545: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

owner (workfront.versions.unsupported.Iteration at-tribute), 280

owner (workfront.versions.unsupported.Note attribute),299

owner (workfront.versions.unsupported.Portfolio at-tribute), 316

owner (workfront.versions.unsupported.Program at-tribute), 319

owner (workfront.versions.unsupported.Project attribute),328

owner (workfront.versions.unsupported.Team attribute),372

owner (workfront.versions.unsupported.Template at-tribute), 376

owner (workfront.versions.unsupported.Work attribute),424

owner (workfront.versions.v40.Approval attribute), 19owner (workfront.versions.v40.Document attribute), 45owner (workfront.versions.v40.Hour attribute), 56owner (workfront.versions.v40.Issue attribute), 62owner (workfront.versions.v40.Iteration attribute), 66owner (workfront.versions.v40.Note attribute), 74owner (workfront.versions.v40.Portfolio attribute), 80owner (workfront.versions.v40.Program attribute), 81owner (workfront.versions.v40.Project attribute), 89owner (workfront.versions.v40.Team attribute), 117owner (workfront.versions.v40.Work attribute), 148owner_id (workfront.versions.unsupported.Acknowledgement

attribute), 164owner_id (workfront.versions.unsupported.Approval at-

tribute), 180owner_id (workfront.versions.unsupported.Document at-

tribute), 235owner_id (workfront.versions.unsupported.DocumentProvider

attribute), 243owner_id (workfront.versions.unsupported.Hour at-

tribute), 268owner_id (workfront.versions.unsupported.Issue at-

tribute), 275owner_id (workfront.versions.unsupported.Iteration at-

tribute), 280owner_id (workfront.versions.unsupported.Note at-

tribute), 299owner_id (workfront.versions.unsupported.Portfolio at-

tribute), 316owner_id (workfront.versions.unsupported.Program at-

tribute), 319owner_id (workfront.versions.unsupported.Project

attribute), 328owner_id (workfront.versions.unsupported.Team at-

tribute), 372owner_id (workfront.versions.unsupported.Template at-

tribute), 376owner_id (workfront.versions.unsupported.Work at-

tribute), 424owner_id (workfront.versions.v40.Approval attribute), 19owner_id (workfront.versions.v40.Document attribute),

45owner_id (workfront.versions.v40.Hour attribute), 56owner_id (workfront.versions.v40.Issue attribute), 62owner_id (workfront.versions.v40.Iteration attribute), 66owner_id (workfront.versions.v40.Note attribute), 74owner_id (workfront.versions.v40.Portfolio attribute), 80owner_id (workfront.versions.v40.Program attribute), 82owner_id (workfront.versions.v40.Project attribute), 89owner_id (workfront.versions.v40.Team attribute), 117owner_id (workfront.versions.v40.Work attribute), 148owner_privileges (work-

front.versions.unsupported.Approval attribute),180

owner_privileges (work-front.versions.unsupported.Project attribute),328

owner_privileges (work-front.versions.unsupported.Template attribute),376

owner_privileges (workfront.versions.v40.Approval at-tribute), 19

owner_privileges (workfront.versions.v40.Project at-tribute), 89

owner_privileges (workfront.versions.v40.Template at-tribute), 120

Ppage_size (workfront.versions.unsupported.ScheduledReport

attribute), 352page_type (workfront.versions.unsupported.LayoutTemplatePage

attribute), 289Parameter (class in workfront.versions.unsupported), 303Parameter (class in workfront.versions.v40), 76parameter (workfront.versions.unsupported.CategoryCascadeRuleMatch

attribute), 213parameter (workfront.versions.unsupported.CategoryParameter

attribute), 213parameter (workfront.versions.unsupported.JournalField

attribute), 285parameter (workfront.versions.unsupported.ParameterOption

attribute), 305parameter (workfront.versions.unsupported.ParameterValue

attribute), 306parameter (workfront.versions.v40.CategoryParameter

attribute), 36parameter (workfront.versions.v40.ParameterOption at-

tribute), 78parameter_group (work-

front.versions.unsupported.CategoryParameterattribute), 214

Index 541

Page 546: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

parameter_group (work-front.versions.v40.CategoryParameter at-tribute), 36

parameter_group_id (work-front.versions.unsupported.CategoryParameterattribute), 214

parameter_group_id (work-front.versions.v40.CategoryParameter at-tribute), 36

parameter_groups (work-front.versions.unsupported.Customer attribute),225

parameter_groups (workfront.versions.v40.Customer at-tribute), 41

parameter_id (workfront.versions.unsupported.CategoryCascadeRuleMatchattribute), 213

parameter_id (workfront.versions.unsupported.CategoryParameterattribute), 214

parameter_id (workfront.versions.unsupported.JournalFieldattribute), 285

parameter_id (workfront.versions.unsupported.LayoutTemplateCardattribute), 288

parameter_id (workfront.versions.unsupported.ParameterOptionattribute), 305

parameter_id (workfront.versions.unsupported.ParameterValueattribute), 306

parameter_id (workfront.versions.v40.CategoryParameterattribute), 36

parameter_id (workfront.versions.v40.ParameterOptionattribute), 78

parameter_name (work-front.versions.unsupported.ParameterValueattribute), 306

parameter_options (work-front.versions.unsupported.Parameter at-tribute), 304

parameter_options (workfront.versions.v40.Parameter at-tribute), 77

parameter_values (work-front.versions.unsupported.Approval attribute),180

parameter_values (work-front.versions.unsupported.ApprovalProcessAttachableattribute), 189

parameter_values (work-front.versions.unsupported.Company attribute),215

parameter_values (work-front.versions.unsupported.Document at-tribute), 235

parameter_values (work-front.versions.unsupported.Expense attribute),257

parameter_values (workfront.versions.unsupported.Issue

attribute), 275parameter_values (work-

front.versions.unsupported.Iteration attribute),280

parameter_values (work-front.versions.unsupported.MasterTask at-tribute), 293

parameter_values (work-front.versions.unsupported.Portfolio attribute),316

parameter_values (work-front.versions.unsupported.Program attribute),319

parameter_values (work-front.versions.unsupported.Project attribute),328

parameter_values (workfront.versions.unsupported.Taskattribute), 366

parameter_values (work-front.versions.unsupported.Template attribute),376

parameter_values (work-front.versions.unsupported.TemplateTaskattribute), 384

parameter_values (workfront.versions.unsupported.Userattribute), 405

parameter_values (workfront.versions.unsupported.Workattribute), 424

ParameterGroup (class in work-front.versions.unsupported), 304

ParameterGroup (class in workfront.versions.v40), 77ParameterOption (class in work-

front.versions.unsupported), 304ParameterOption (class in workfront.versions.v40), 78parameters (workfront.versions.unsupported.Customer

attribute), 225parameters (workfront.versions.v40.Customer attribute),

41ParameterValue (class in work-

front.versions.unsupported), 305parent (workfront.versions.unsupported.Approval at-

tribute), 180parent (workfront.versions.unsupported.CustomMenuCustomMenu

attribute), 218parent (workfront.versions.unsupported.DocumentFolder

attribute), 240parent (workfront.versions.unsupported.Group attribute),

266parent (workfront.versions.unsupported.Issue attribute),

275parent (workfront.versions.unsupported.QueueTopicGroup

attribute), 336parent (workfront.versions.unsupported.Task attribute),

366

542 Index

Page 547: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

parent (workfront.versions.unsupported.TemplateTask at-tribute), 384

parent (workfront.versions.unsupported.Work attribute),424

parent (workfront.versions.v40.Approval attribute), 19parent (workfront.versions.v40.DocumentFolder at-

tribute), 48parent (workfront.versions.v40.Issue attribute), 62parent (workfront.versions.v40.Task attribute), 112parent (workfront.versions.v40.TemplateTask attribute),

125parent (workfront.versions.v40.Work attribute), 148parent_endorsement (work-

front.versions.unsupported.Note attribute),299

parent_endorsement_id (work-front.versions.unsupported.Note attribute),299

parent_endorsement_id (workfront.versions.v40.Note at-tribute), 74

parent_id (workfront.versions.unsupported.Approval at-tribute), 180

parent_id (workfront.versions.unsupported.CustomMenuCustomMenuattribute), 218

parent_id (workfront.versions.unsupported.DocumentFolderattribute), 240

parent_id (workfront.versions.unsupported.Group at-tribute), 266

parent_id (workfront.versions.unsupported.QueueTopicGroupattribute), 336

parent_id (workfront.versions.unsupported.Task at-tribute), 366

parent_id (workfront.versions.unsupported.TemplateTaskattribute), 384

parent_id (workfront.versions.unsupported.Work at-tribute), 424

parent_id (workfront.versions.v40.Approval attribute), 19parent_id (workfront.versions.v40.DocumentFolder at-

tribute), 48parent_id (workfront.versions.v40.Task attribute), 112parent_id (workfront.versions.v40.TemplateTask at-

tribute), 125parent_id (workfront.versions.v40.Work attribute), 148parent_journal_entry (work-

front.versions.unsupported.Note attribute),299

parent_journal_entry (workfront.versions.v40.Note at-tribute), 74

parent_journal_entry_id (work-front.versions.unsupported.Note attribute),299

parent_journal_entry_id (workfront.versions.v40.Note at-tribute), 74

parent_lag (workfront.versions.unsupported.Approval at-

tribute), 180parent_lag (workfront.versions.unsupported.Task at-

tribute), 366parent_lag (workfront.versions.unsupported.TemplateTask

attribute), 384parent_lag (workfront.versions.unsupported.Work at-

tribute), 424parent_lag (workfront.versions.v40.Approval attribute),

19parent_lag (workfront.versions.v40.Task attribute), 112parent_lag (workfront.versions.v40.TemplateTask at-

tribute), 125parent_lag (workfront.versions.v40.Work attribute), 148parent_lag_type (work-

front.versions.unsupported.Approval attribute),180

parent_lag_type (workfront.versions.unsupported.Taskattribute), 366

parent_lag_type (work-front.versions.unsupported.TemplateTaskattribute), 384

parent_lag_type (workfront.versions.unsupported.Workattribute), 424

parent_lag_type (workfront.versions.v40.Approvalattribute), 19

parent_lag_type (workfront.versions.v40.Task attribute),112

parent_lag_type (workfront.versions.v40.TemplateTaskattribute), 125

parent_lag_type (workfront.versions.v40.Work attribute),148

parent_note (workfront.versions.unsupported.Noteattribute), 299

parent_note (workfront.versions.v40.Note attribute), 74parent_note_id (workfront.versions.unsupported.Note at-

tribute), 299parent_note_id (workfront.versions.v40.Note attribute),

74parent_topic (workfront.versions.unsupported.QueueTopic

attribute), 336parent_topic (workfront.versions.v40.QueueTopic at-

tribute), 95parent_topic_group (work-

front.versions.unsupported.QueueTopic at-tribute), 336

parent_topic_group_id (work-front.versions.unsupported.QueueTopic at-tribute), 336

parent_topic_id (workfront.versions.unsupported.QueueTopicattribute), 336

parent_topic_id (workfront.versions.v40.QueueTopic at-tribute), 95

password (workfront.versions.unsupported.AccountRepattribute), 163

Index 543

Page 548: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

password (workfront.versions.unsupported.User at-tribute), 405

password (workfront.versions.v40.User attribute), 139password_config_map (work-

front.versions.unsupported.Customer attribute),225

password_config_map_id (work-front.versions.unsupported.Customer attribute),225

password_config_map_id (work-front.versions.v40.Customer attribute), 41

password_date (workfront.versions.unsupported.User at-tribute), 405

password_date (workfront.versions.v40.User attribute),139

path (workfront.versions.unsupported.ExternalDocumentattribute), 261

pay_period_type (work-front.versions.unsupported.TimesheetProfileattribute), 390

pending_approval (work-front.versions.unsupported.DocumentShareattribute), 246

pending_calculation (work-front.versions.unsupported.Approval attribute),180

pending_calculation (work-front.versions.unsupported.Project attribute),328

pending_calculation (work-front.versions.unsupported.Task attribute),366

pending_calculation (work-front.versions.unsupported.Template attribute),376

pending_calculation (work-front.versions.unsupported.TemplateTaskattribute), 384

pending_calculation (work-front.versions.unsupported.Work attribute),424

pending_predecessors (work-front.versions.unsupported.Approval attribute),180

pending_predecessors (work-front.versions.unsupported.Task attribute),366

pending_predecessors (work-front.versions.unsupported.Work attribute),424

pending_update_methods (work-front.versions.unsupported.Approval attribute),180

pending_update_methods (work-

front.versions.unsupported.Project attribute),328

pending_update_methods (work-front.versions.unsupported.Task attribute),367

pending_update_methods (work-front.versions.unsupported.Template attribute),377

pending_update_methods (work-front.versions.unsupported.TemplateTaskattribute), 384

pending_update_methods (work-front.versions.unsupported.Work attribute),424

percent_complete (work-front.versions.unsupported.Approval attribute),180

percent_complete (work-front.versions.unsupported.BackgroundJobattribute), 199

percent_complete (work-front.versions.unsupported.Baseline attribute),201

percent_complete (work-front.versions.unsupported.BaselineTaskattribute), 202

percent_complete (work-front.versions.unsupported.CalendarFeedEntryattribute), 206

percent_complete (work-front.versions.unsupported.Iteration attribute),280

percent_complete (work-front.versions.unsupported.Project attribute),328

percent_complete (workfront.versions.unsupported.Taskattribute), 367

percent_complete (workfront.versions.unsupported.Workattribute), 424

percent_complete (workfront.versions.v40.Approval at-tribute), 19

percent_complete (workfront.versions.v40.Baseline at-tribute), 31

percent_complete (workfront.versions.v40.BaselineTaskattribute), 33

percent_complete (workfront.versions.v40.Iteration at-tribute), 66

percent_complete (workfront.versions.v40.Projectattribute), 89

percent_complete (workfront.versions.v40.Task at-tribute), 113

percent_complete (workfront.versions.v40.Work at-tribute), 148

perform_upgrade() (work-

544 Index

Page 549: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

front.versions.unsupported.Authenticationmethod), 195

performance_index_method (work-front.versions.unsupported.Approval attribute),180

performance_index_method (work-front.versions.unsupported.Project attribute),328

performance_index_method (work-front.versions.unsupported.Template attribute),377

performance_index_method (work-front.versions.v40.Approval attribute), 19

performance_index_method (work-front.versions.v40.Project attribute), 89

performance_index_method (work-front.versions.v40.Template attribute), 120

period_start (workfront.versions.unsupported.TimesheetProfileattribute), 390

period_start_display_name (work-front.versions.unsupported.TimesheetProfileattribute), 390

persona (workfront.versions.unsupported.User attribute),405

persona (workfront.versions.v40.User attribute), 139personal (workfront.versions.unsupported.Approval at-

tribute), 180personal (workfront.versions.unsupported.Project at-

tribute), 328personal (workfront.versions.unsupported.Task attribute),

367personal (workfront.versions.unsupported.Work at-

tribute), 424personal (workfront.versions.v40.Approval attribute), 19personal (workfront.versions.v40.Project attribute), 89personal (workfront.versions.v40.Task attribute), 113personal (workfront.versions.v40.Work attribute), 148phone_extension (workfront.versions.unsupported.User

attribute), 405phone_extension (workfront.versions.v40.User attribute),

139phone_number (workfront.versions.unsupported.AccountRep

attribute), 163phone_number (workfront.versions.unsupported.Customer

attribute), 225phone_number (workfront.versions.unsupported.Reseller

attribute), 341phone_number (workfront.versions.unsupported.User at-

tribute), 405phone_number (workfront.versions.v40.Customer at-

tribute), 41phone_number (workfront.versions.v40.User attribute),

139pin_timesheet_object() (work-

front.versions.unsupported.Timesheet method),388

pk_field_name (workfront.versions.unsupported.MetaRecordattribute), 295

pk_table_name (workfront.versions.unsupported.MetaRecordattribute), 295

planned_allocation_percent (work-front.versions.unsupported.UserAvailabilityattribute), 409

planned_amount (work-front.versions.unsupported.Expense attribute),258

planned_amount (workfront.versions.v40.Expenseattribute), 51

planned_assigned_minutes (work-front.versions.unsupported.UserAvailabilityattribute), 409

planned_benefit (work-front.versions.unsupported.Approval attribute),180

planned_benefit (workfront.versions.unsupported.Projectattribute), 328

planned_benefit (work-front.versions.unsupported.Template attribute),377

planned_benefit (workfront.versions.v40.Approvalattribute), 19

planned_benefit (workfront.versions.v40.Project at-tribute), 89

planned_completion_date (work-front.versions.unsupported.Approval attribute),180

planned_completion_date (work-front.versions.unsupported.Baseline attribute),201

planned_completion_date (work-front.versions.unsupported.BaselineTaskattribute), 202

planned_completion_date (work-front.versions.unsupported.Issue attribute),275

planned_completion_date (work-front.versions.unsupported.Project attribute),328

planned_completion_date (work-front.versions.unsupported.Task attribute),367

planned_completion_date (work-front.versions.unsupported.Work attribute),424

planned_completion_date (work-front.versions.v40.Approval attribute), 19

planned_completion_date (work-front.versions.v40.Baseline attribute), 31

Index 545

Page 550: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

planned_completion_date (work-front.versions.v40.BaselineTask attribute),33

planned_completion_date (workfront.versions.v40.Issueattribute), 62

planned_completion_date (work-front.versions.v40.Project attribute), 89

planned_completion_date (workfront.versions.v40.Taskattribute), 113

planned_completion_date (workfront.versions.v40.Workattribute), 148

planned_cost (workfront.versions.unsupported.Approvalattribute), 180

planned_cost (workfront.versions.unsupported.Baselineattribute), 201

planned_cost (workfront.versions.unsupported.BaselineTaskattribute), 202

planned_cost (workfront.versions.unsupported.MasterTaskattribute), 293

planned_cost (workfront.versions.unsupported.Project at-tribute), 328

planned_cost (workfront.versions.unsupported.Task at-tribute), 367

planned_cost (workfront.versions.unsupported.Templateattribute), 377

planned_cost (workfront.versions.unsupported.TemplateTaskattribute), 384

planned_cost (workfront.versions.unsupported.Work at-tribute), 424

planned_cost (workfront.versions.v40.Approval at-tribute), 19

planned_cost (workfront.versions.v40.Baseline attribute),32

planned_cost (workfront.versions.v40.BaselineTask at-tribute), 33

planned_cost (workfront.versions.v40.Project attribute),89

planned_cost (workfront.versions.v40.Task attribute),113

planned_cost (workfront.versions.v40.Template at-tribute), 120

planned_cost (workfront.versions.v40.TemplateTask at-tribute), 125

planned_cost (workfront.versions.v40.Work attribute),149

planned_date (workfront.versions.unsupported.CalendarSectionattribute), 209

planned_date (workfront.versions.unsupported.Expenseattribute), 258

planned_date (workfront.versions.v40.Expense attribute),51

planned_date_alignment (work-front.versions.unsupported.Approval attribute),180

planned_date_alignment (work-front.versions.unsupported.Issue attribute),275

planned_date_alignment (work-front.versions.unsupported.Project attribute),328

planned_date_alignment (work-front.versions.unsupported.Task attribute),367

planned_date_alignment (work-front.versions.unsupported.Work attribute),424

planned_date_alignment (work-front.versions.v40.Approval attribute), 19

planned_date_alignment (workfront.versions.v40.Issueattribute), 62

planned_date_alignment (workfront.versions.v40.Projectattribute), 89

planned_date_alignment (workfront.versions.v40.Taskattribute), 113

planned_date_alignment (workfront.versions.v40.Workattribute), 149

planned_duration (work-front.versions.unsupported.Approval attribute),180

planned_duration (workfront.versions.unsupported.Taskattribute), 367

planned_duration (work-front.versions.unsupported.TemplateTaskattribute), 384

planned_duration (workfront.versions.unsupported.Workattribute), 424

planned_duration (workfront.versions.v40.Approval at-tribute), 19

planned_duration (workfront.versions.v40.Task at-tribute), 113

planned_duration (workfront.versions.v40.TemplateTaskattribute), 125

planned_duration (workfront.versions.v40.Work at-tribute), 149

planned_duration_minutes (work-front.versions.unsupported.Approval attribute),180

planned_duration_minutes (work-front.versions.unsupported.Issue attribute),275

planned_duration_minutes (work-front.versions.unsupported.Task attribute),367

planned_duration_minutes (work-front.versions.unsupported.TemplateTaskattribute), 384

planned_duration_minutes (work-front.versions.unsupported.Work attribute),

546 Index

Page 551: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

424planned_duration_minutes (work-

front.versions.v40.Approval attribute), 19planned_duration_minutes (workfront.versions.v40.Task

attribute), 113planned_duration_minutes (work-

front.versions.v40.TemplateTask attribute),125

planned_duration_minutes (workfront.versions.v40.Workattribute), 149

planned_expense_cost (work-front.versions.unsupported.Approval attribute),180

planned_expense_cost (work-front.versions.unsupported.FinancialDataattribute), 264

planned_expense_cost (work-front.versions.unsupported.Project attribute),328

planned_expense_cost (work-front.versions.unsupported.Task attribute),367

planned_expense_cost (work-front.versions.unsupported.Template attribute),377

planned_expense_cost (work-front.versions.unsupported.TemplateTaskattribute), 384

planned_expense_cost (work-front.versions.unsupported.Work attribute),424

planned_expense_cost (workfront.versions.v40.Approvalattribute), 19

planned_expense_cost (work-front.versions.v40.FinancialData attribute),54

planned_expense_cost (workfront.versions.v40.Projectattribute), 89

planned_expense_cost (workfront.versions.v40.Task at-tribute), 113

planned_expense_cost (workfront.versions.v40.Templateattribute), 120

planned_expense_cost (work-front.versions.v40.TemplateTask attribute),125

planned_expense_cost (workfront.versions.v40.Work at-tribute), 149

planned_fixed_revenue (work-front.versions.unsupported.FinancialDataattribute), 264

planned_fixed_revenue (work-front.versions.v40.FinancialData attribute),54

planned_hours_alignment (work-

front.versions.unsupported.Approval attribute),181

planned_hours_alignment (work-front.versions.unsupported.Issue attribute),276

planned_hours_alignment (work-front.versions.unsupported.Project attribute),328

planned_hours_alignment (work-front.versions.unsupported.Task attribute),367

planned_hours_alignment (work-front.versions.unsupported.Work attribute),424

planned_hours_alignment (work-front.versions.v40.Approval attribute), 20

planned_hours_alignment (workfront.versions.v40.Issueattribute), 62

planned_hours_alignment (work-front.versions.v40.Project attribute), 89

planned_hours_alignment (workfront.versions.v40.Taskattribute), 113

planned_hours_alignment (workfront.versions.v40.Workattribute), 149

planned_labor_cost (work-front.versions.unsupported.Approval attribute),181

planned_labor_cost (work-front.versions.unsupported.FinancialDataattribute), 265

planned_labor_cost (work-front.versions.unsupported.Project attribute),328

planned_labor_cost (work-front.versions.unsupported.Task attribute),367

planned_labor_cost (work-front.versions.unsupported.Template attribute),377

planned_labor_cost (work-front.versions.unsupported.TemplateTaskattribute), 384

planned_labor_cost (work-front.versions.unsupported.Work attribute),424

planned_labor_cost (workfront.versions.v40.Approval at-tribute), 20

planned_labor_cost (work-front.versions.v40.FinancialData attribute),54

planned_labor_cost (workfront.versions.v40.Project at-tribute), 89

planned_labor_cost (workfront.versions.v40.Task at-tribute), 113

Index 547

Page 552: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

planned_labor_cost (workfront.versions.v40.Template at-tribute), 120

planned_labor_cost (work-front.versions.v40.TemplateTask attribute),126

planned_labor_cost (workfront.versions.v40.Workattribute), 149

planned_labor_cost_hours (work-front.versions.unsupported.FinancialDataattribute), 265

planned_labor_cost_hours (work-front.versions.v40.FinancialData attribute),54

planned_labor_revenue (work-front.versions.unsupported.FinancialDataattribute), 265

planned_labor_revenue (work-front.versions.v40.FinancialData attribute),54

planned_remaining_minutes (work-front.versions.unsupported.UserAvailabilityattribute), 409

planned_revenue (work-front.versions.unsupported.Approval attribute),181

planned_revenue (work-front.versions.unsupported.MasterTask at-tribute), 293

planned_revenue (work-front.versions.unsupported.Project attribute),328

planned_revenue (workfront.versions.unsupported.Taskattribute), 367

planned_revenue (work-front.versions.unsupported.Template attribute),377

planned_revenue (work-front.versions.unsupported.TemplateTaskattribute), 384

planned_revenue (workfront.versions.unsupported.Workattribute), 425

planned_revenue (workfront.versions.v40.Approval at-tribute), 20

planned_revenue (workfront.versions.v40.Project at-tribute), 89

planned_revenue (workfront.versions.v40.Task attribute),113

planned_revenue (workfront.versions.v40.Template at-tribute), 120

planned_revenue (workfront.versions.v40.TemplateTaskattribute), 126

planned_revenue (workfront.versions.v40.Work at-tribute), 149

planned_risk_cost (work-

front.versions.unsupported.Approval attribute),181

planned_risk_cost (work-front.versions.unsupported.Project attribute),328

planned_risk_cost (work-front.versions.unsupported.Template attribute),377

planned_risk_cost (workfront.versions.v40.Approval at-tribute), 20

planned_risk_cost (workfront.versions.v40.Projectattribute), 89

planned_risk_cost (workfront.versions.v40.Template at-tribute), 120

planned_start_date (work-front.versions.unsupported.Approval attribute),181

planned_start_date (work-front.versions.unsupported.Baseline attribute),201

planned_start_date (work-front.versions.unsupported.BaselineTaskattribute), 202

planned_start_date (work-front.versions.unsupported.Issue attribute),276

planned_start_date (work-front.versions.unsupported.Project attribute),328

planned_start_date (workfront.versions.unsupported.Taskattribute), 367

planned_start_date (work-front.versions.unsupported.Work attribute),425

planned_start_date (workfront.versions.v40.Approval at-tribute), 20

planned_start_date (workfront.versions.v40.Baseline at-tribute), 32

planned_start_date (workfront.versions.v40.BaselineTaskattribute), 33

planned_start_date (workfront.versions.v40.Issue at-tribute), 62

planned_start_date (workfront.versions.v40.Project at-tribute), 89

planned_start_date (workfront.versions.v40.Task at-tribute), 113

planned_start_date (workfront.versions.v40.Work at-tribute), 149

planned_unit_amount (work-front.versions.unsupported.Expense attribute),258

planned_unit_amount (workfront.versions.v40.Expenseattribute), 51

planned_user_allocation_percentage (work-

548 Index

Page 553: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

front.versions.unsupported.Assignment at-tribute), 191

planned_value (workfront.versions.unsupported.Approvalattribute), 181

planned_value (workfront.versions.unsupported.Projectattribute), 328

planned_value (workfront.versions.v40.Approval at-tribute), 20

planned_value (workfront.versions.v40.Project attribute),89

po_number (workfront.versions.unsupported.BillingRecordattribute), 203

po_number (workfront.versions.v40.BillingRecordattribute), 34

pop_account (workfront.versions.unsupported.Approvalattribute), 181

pop_account (workfront.versions.unsupported.Project at-tribute), 329

pop_account_id (work-front.versions.unsupported.Approval attribute),181

pop_account_id (workfront.versions.unsupported.Projectattribute), 329

pop_account_id (workfront.versions.v40.Approvalattribute), 20

pop_account_id (workfront.versions.v40.Project at-tribute), 89

pop_disabled (workfront.versions.unsupported.PopAccountattribute), 307

pop_enforce_ssl (work-front.versions.unsupported.PopAccount at-tribute), 307

pop_errors (workfront.versions.unsupported.PopAccountattribute), 307

pop_password (workfront.versions.unsupported.PopAccountattribute), 307

pop_port (workfront.versions.unsupported.PopAccountattribute), 307

pop_server (workfront.versions.unsupported.PopAccountattribute), 307

pop_user (workfront.versions.unsupported.PopAccountattribute), 307

PopAccount (class in workfront.versions.unsupported),307

portal_profile (workfront.versions.unsupported.CustomMenuattribute), 218

portal_profile (workfront.versions.unsupported.PortalTabattribute), 314

portal_profile (workfront.versions.unsupported.User at-tribute), 405

portal_profile_id (work-front.versions.unsupported.PortalTab attribute),314

portal_profile_id (workfront.versions.unsupported.User

attribute), 405portal_profile_id (workfront.versions.v40.User attribute),

139portal_profiles (workfront.versions.unsupported.AppGlobal

attribute), 169portal_profiles (workfront.versions.unsupported.Customer

attribute), 225portal_section (workfront.versions.unsupported.ScheduledReport

attribute), 352portal_section_id (work-

front.versions.unsupported.ScheduledReportattribute), 352

portal_section_obj_code (work-front.versions.unsupported.PortalTabSectionattribute), 314

portal_section_obj_id (work-front.versions.unsupported.PortalTabSectionattribute), 314

portal_sections (workfront.versions.unsupported.AppGlobalattribute), 169

portal_sections (workfront.versions.unsupported.Customerattribute), 225

portal_sections (workfront.versions.unsupported.PortalProfileattribute), 308

portal_sections (workfront.versions.unsupported.User at-tribute), 405

portal_tab (workfront.versions.unsupported.PortalTabSectionattribute), 314

portal_tab_id (workfront.versions.unsupported.PortalTabSectionattribute), 315

portal_tab_sections (work-front.versions.unsupported.PortalSectionattribute), 311

portal_tab_sections (work-front.versions.unsupported.PortalTab attribute),314

portal_tabs (workfront.versions.unsupported.PortalProfileattribute), 308

portal_tabs (workfront.versions.unsupported.User at-tribute), 405

PortalProfile (class in workfront.versions.unsupported),307

PortalSection (class in workfront.versions.unsupported),308

PortalTab (class in workfront.versions.unsupported), 312PortalTabSection (class in work-

front.versions.unsupported), 314Portfolio (class in workfront.versions.unsupported), 315Portfolio (class in workfront.versions.v40), 78portfolio (workfront.versions.unsupported.Approval at-

tribute), 181portfolio (workfront.versions.unsupported.Document at-

tribute), 235portfolio (workfront.versions.unsupported.DocumentFolder

Index 549

Page 554: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

attribute), 240portfolio (workfront.versions.unsupported.DocumentRequest

attribute), 244portfolio (workfront.versions.unsupported.Endorsement

attribute), 252portfolio (workfront.versions.unsupported.JournalEntry

attribute), 283portfolio (workfront.versions.unsupported.Note at-

tribute), 299portfolio (workfront.versions.unsupported.ParameterValue

attribute), 306portfolio (workfront.versions.unsupported.Program at-

tribute), 319portfolio (workfront.versions.unsupported.Project at-

tribute), 329portfolio (workfront.versions.unsupported.Template at-

tribute), 377portfolio (workfront.versions.v40.Approval attribute), 20portfolio (workfront.versions.v40.Document attribute),

45portfolio (workfront.versions.v40.DocumentFolder at-

tribute), 48portfolio (workfront.versions.v40.JournalEntry attribute),

68portfolio (workfront.versions.v40.Note attribute), 74portfolio (workfront.versions.v40.Program attribute), 82portfolio (workfront.versions.v40.Project attribute), 89portfolio_id (workfront.versions.unsupported.Approval

attribute), 181portfolio_id (workfront.versions.unsupported.Document

attribute), 235portfolio_id (workfront.versions.unsupported.DocumentFolder

attribute), 240portfolio_id (workfront.versions.unsupported.DocumentRequest

attribute), 244portfolio_id (workfront.versions.unsupported.Endorsement

attribute), 252portfolio_id (workfront.versions.unsupported.JournalEntry

attribute), 283portfolio_id (workfront.versions.unsupported.Note

attribute), 299portfolio_id (workfront.versions.unsupported.ParameterValue

attribute), 306portfolio_id (workfront.versions.unsupported.Program

attribute), 319portfolio_id (workfront.versions.unsupported.Project at-

tribute), 329portfolio_id (workfront.versions.unsupported.Template

attribute), 377portfolio_id (workfront.versions.v40.Approval attribute),

20portfolio_id (workfront.versions.v40.Document at-

tribute), 45portfolio_id (workfront.versions.v40.DocumentFolder at-

tribute), 48portfolio_id (workfront.versions.v40.JournalEntry

attribute), 68portfolio_id (workfront.versions.v40.Note attribute), 74portfolio_id (workfront.versions.v40.Program attribute),

82portfolio_id (workfront.versions.v40.Project attribute), 89portfolio_management_config_map (work-

front.versions.unsupported.Customer attribute),225

portfolio_management_config_map_id (work-front.versions.unsupported.Customer attribute),225

portfolio_management_config_map_id (work-front.versions.v40.Customer attribute), 41

portfolio_priority (work-front.versions.unsupported.Approval attribute),181

portfolio_priority (work-front.versions.unsupported.Project attribute),329

portfolio_priority (workfront.versions.v40.Approval at-tribute), 20

portfolio_priority (workfront.versions.v40.Project at-tribute), 90

possible_values (workfront.versions.unsupported.CustomerPreferencesattribute), 229

possible_values (workfront.versions.v40.CustomerPreferencesattribute), 43

post() (workfront.Session method), 6postal_code (workfront.versions.unsupported.Customer

attribute), 225postal_code (workfront.versions.unsupported.Reseller at-

tribute), 341postal_code (workfront.versions.unsupported.User

attribute), 405postal_code (workfront.versions.v40.Customer attribute),

41postal_code (workfront.versions.v40.User attribute), 139Predecessor (class in workfront.versions.unsupported),

316Predecessor (class in workfront.versions.v40), 80predecessor (workfront.versions.unsupported.Predecessor

attribute), 317predecessor (workfront.versions.unsupported.TemplatePredecessor

attribute), 380predecessor (workfront.versions.v40.Predecessor at-

tribute), 80predecessor (workfront.versions.v40.TemplatePredecessor

attribute), 122predecessor_expression (work-

front.versions.unsupported.Approval attribute),181

predecessor_expression (work-

550 Index

Page 555: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

front.versions.unsupported.Task attribute),367

predecessor_expression (work-front.versions.unsupported.TemplateTaskattribute), 384

predecessor_expression (work-front.versions.unsupported.Work attribute),425

predecessor_expression (work-front.versions.v40.Approval attribute), 20

predecessor_expression (workfront.versions.v40.Task at-tribute), 113

predecessor_expression (workfront.versions.v40.Workattribute), 149

predecessor_id (workfront.versions.unsupported.Predecessorattribute), 317

predecessor_id (workfront.versions.unsupported.TemplatePredecessorattribute), 380

predecessor_id (workfront.versions.v40.Predecessor at-tribute), 80

predecessor_id (workfront.versions.v40.TemplatePredecessorattribute), 122

predecessor_type (work-front.versions.unsupported.Predecessor at-tribute), 317

predecessor_type (work-front.versions.unsupported.TemplatePredecessorattribute), 380

predecessor_type (workfront.versions.v40.Predecessorattribute), 80

predecessor_type (work-front.versions.v40.TemplatePredecessorattribute), 122

predecessors (workfront.versions.unsupported.Approvalattribute), 181

predecessors (workfront.versions.unsupported.Task at-tribute), 367

predecessors (workfront.versions.unsupported.TemplateTaskattribute), 384

predecessors (workfront.versions.unsupported.Work at-tribute), 425

predecessors (workfront.versions.v40.Approval at-tribute), 20

predecessors (workfront.versions.v40.Task attribute), 113predecessors (workfront.versions.v40.TemplateTask at-

tribute), 126predecessors (workfront.versions.v40.Work attribute),

149pref_name (workfront.versions.unsupported.CustomerPref

attribute), 228pref_value (workfront.versions.unsupported.CustomerPref

attribute), 228Preference (class in workfront.versions.unsupported), 317preference (workfront.versions.unsupported.PortalSection

attribute), 311preference (workfront.versions.unsupported.UIFilter at-

tribute), 392preference (workfront.versions.unsupported.UIGroupBy

attribute), 394preference (workfront.versions.unsupported.UIView at-

tribute), 396preference_id (workfront.versions.unsupported.PortalSection

attribute), 311preference_id (workfront.versions.unsupported.UIFilter

attribute), 392preference_id (workfront.versions.unsupported.UIGroupBy

attribute), 394preference_id (workfront.versions.unsupported.UIView

attribute), 396preference_id (workfront.versions.v40.UIFilter attribute),

130preference_id (workfront.versions.v40.UIGroupBy at-

tribute), 131preference_id (workfront.versions.v40.UIView attribute),

133preview_url (workfront.versions.unsupported.Document

attribute), 235preview_url (workfront.versions.unsupported.ExternalDocument

attribute), 261preview_user_id (work-

front.versions.unsupported.Announcementattribute), 165

previous_status (workfront.versions.unsupported.Approvalattribute), 181

previous_status (workfront.versions.unsupported.ApprovalProcessAttachableattribute), 189

previous_status (workfront.versions.unsupported.Issueattribute), 276

previous_status (workfront.versions.unsupported.Projectattribute), 329

previous_status (workfront.versions.unsupported.Task at-tribute), 367

previous_status (workfront.versions.unsupported.Workattribute), 425

previous_status (workfront.versions.v40.Approvalattribute), 20

previous_status (workfront.versions.v40.Issue attribute),62

previous_status (workfront.versions.v40.Project at-tribute), 90

previous_status (workfront.versions.v40.Task attribute),113

previous_status (workfront.versions.v40.Work attribute),149

primary_assignment (work-front.versions.unsupported.Approval attribute),181

primary_assignment (work-

Index 551

Page 556: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

front.versions.unsupported.Issue attribute),276

primary_assignment (work-front.versions.unsupported.Task attribute),367

primary_assignment (work-front.versions.unsupported.Work attribute),425

primary_assignment (workfront.versions.v40.Approvalattribute), 20

primary_assignment (workfront.versions.v40.Issueattribute), 62

primary_assignment (workfront.versions.v40.Taskattribute), 113

primary_assignment (workfront.versions.v40.Work at-tribute), 149

priority (workfront.versions.unsupported.Approvalattribute), 181

priority (workfront.versions.unsupported.Issue attribute),276

priority (workfront.versions.unsupported.MasterTask at-tribute), 293

priority (workfront.versions.unsupported.Project at-tribute), 329

priority (workfront.versions.unsupported.Task attribute),367

priority (workfront.versions.unsupported.Templateattribute), 377

priority (workfront.versions.unsupported.TemplateTaskattribute), 384

priority (workfront.versions.unsupported.Work attribute),425

priority (workfront.versions.unsupported.WorkItem at-tribute), 429

priority (workfront.versions.v40.Approval attribute), 20priority (workfront.versions.v40.Issue attribute), 62priority (workfront.versions.v40.Project attribute), 90priority (workfront.versions.v40.Task attribute), 113priority (workfront.versions.v40.TemplateTask attribute),

126priority (workfront.versions.v40.Work attribute), 149priority (workfront.versions.v40.WorkItem attribute), 153probability (workfront.versions.unsupported.Risk at-

tribute), 344probability (workfront.versions.v40.Risk attribute), 98process_google_drive_change_notification() (work-

front.versions.unsupported.Document method),235

product_toggle (workfront.versions.unsupported.WhatsNewattribute), 417

Program (class in workfront.versions.unsupported), 317Program (class in workfront.versions.v40), 80program (workfront.versions.unsupported.Approval at-

tribute), 181

program (workfront.versions.unsupported.Document at-tribute), 235

program (workfront.versions.unsupported.DocumentFolderattribute), 241

program (workfront.versions.unsupported.DocumentRequestattribute), 244

program (workfront.versions.unsupported.Endorsementattribute), 252

program (workfront.versions.unsupported.JournalEntryattribute), 283

program (workfront.versions.unsupported.Note attribute),299

program (workfront.versions.unsupported.ParameterValueattribute), 306

program (workfront.versions.unsupported.Project at-tribute), 329

program (workfront.versions.unsupported.Template at-tribute), 377

program (workfront.versions.v40.Approval attribute), 20program (workfront.versions.v40.Document attribute), 45program (workfront.versions.v40.DocumentFolder

attribute), 48program (workfront.versions.v40.JournalEntry attribute),

68program (workfront.versions.v40.Note attribute), 74program (workfront.versions.v40.Project attribute), 90program_id (workfront.versions.unsupported.Approval

attribute), 181program_id (workfront.versions.unsupported.Document

attribute), 236program_id (workfront.versions.unsupported.DocumentFolder

attribute), 241program_id (workfront.versions.unsupported.DocumentRequest

attribute), 245program_id (workfront.versions.unsupported.Endorsement

attribute), 252program_id (workfront.versions.unsupported.JournalEntry

attribute), 283program_id (workfront.versions.unsupported.Note

attribute), 300program_id (workfront.versions.unsupported.ParameterValue

attribute), 306program_id (workfront.versions.unsupported.Project at-

tribute), 329program_id (workfront.versions.unsupported.Template

attribute), 377program_id (workfront.versions.v40.Approval attribute),

20program_id (workfront.versions.v40.Document at-

tribute), 45program_id (workfront.versions.v40.DocumentFolder at-

tribute), 48program_id (workfront.versions.v40.JournalEntry at-

tribute), 68

552 Index

Page 557: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

program_id (workfront.versions.v40.Note attribute), 74program_id (workfront.versions.v40.Project attribute), 90programs (workfront.versions.unsupported.Portfolio at-

tribute), 316programs (workfront.versions.v40.Portfolio attribute), 80progress (workfront.versions.unsupported.BackgroundJob

attribute), 199progress_status (workfront.versions.unsupported.Approval

attribute), 181progress_status (workfront.versions.unsupported.Baseline

attribute), 201progress_status (workfront.versions.unsupported.BaselineTask

attribute), 202progress_status (workfront.versions.unsupported.Project

attribute), 329progress_status (workfront.versions.unsupported.Task at-

tribute), 367progress_status (workfront.versions.unsupported.Work

attribute), 425progress_status (workfront.versions.v40.Approval at-

tribute), 20progress_status (workfront.versions.v40.Baseline at-

tribute), 32progress_status (workfront.versions.v40.BaselineTask at-

tribute), 33progress_status (workfront.versions.v40.Project at-

tribute), 90progress_status (workfront.versions.v40.Task attribute),

113progress_status (workfront.versions.v40.Work attribute),

149progress_text (workfront.versions.unsupported.BackgroundJob

attribute), 199Project (class in workfront.versions.unsupported), 319Project (class in workfront.versions.v40), 82project (workfront.versions.unsupported.Approval

attribute), 181project (workfront.versions.unsupported.ApproverStatus

attribute), 190project (workfront.versions.unsupported.Assignment at-

tribute), 192project (workfront.versions.unsupported.AwaitingApproval

attribute), 197project (workfront.versions.unsupported.Baseline at-

tribute), 201project (workfront.versions.unsupported.BillingRecord

attribute), 203project (workfront.versions.unsupported.CalendarFeedEntry

attribute), 206project (workfront.versions.unsupported.Document at-

tribute), 236project (workfront.versions.unsupported.DocumentFolder

attribute), 241project (workfront.versions.unsupported.DocumentRequest

attribute), 245project (workfront.versions.unsupported.Endorsement at-

tribute), 252project (workfront.versions.unsupported.ExchangeRate

attribute), 255project (workfront.versions.unsupported.Expense at-

tribute), 258project (workfront.versions.unsupported.FinancialData

attribute), 265project (workfront.versions.unsupported.Hour attribute),

268project (workfront.versions.unsupported.Issue attribute),

276project (workfront.versions.unsupported.JournalEntry at-

tribute), 283project (workfront.versions.unsupported.Note attribute),

300project (workfront.versions.unsupported.NotificationRecord

attribute), 302project (workfront.versions.unsupported.ParameterValue

attribute), 306project (workfront.versions.unsupported.PopAccount at-

tribute), 307project (workfront.versions.unsupported.Project at-

tribute), 329project (workfront.versions.unsupported.ProjectUser at-

tribute), 332project (workfront.versions.unsupported.ProjectUserRole

attribute), 333project (workfront.versions.unsupported.QueueDef at-

tribute), 334project (workfront.versions.unsupported.Rate attribute),

337project (workfront.versions.unsupported.ResourceAllocation

attribute), 342project (workfront.versions.unsupported.Risk attribute),

344project (workfront.versions.unsupported.RoutingRule at-

tribute), 346project (workfront.versions.unsupported.ScoreCard at-

tribute), 354project (workfront.versions.unsupported.ScoreCardAnswer

attribute), 355project (workfront.versions.unsupported.SharingSettings

attribute), 358project (workfront.versions.unsupported.Task attribute),

367project (workfront.versions.unsupported.TimesheetTemplate

attribute), 390project (workfront.versions.unsupported.WatchListEntry

attribute), 416project (workfront.versions.unsupported.Work attribute),

425project (workfront.versions.unsupported.WorkItem at-

Index 553

Page 558: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

tribute), 429project (workfront.versions.v40.Approval attribute), 20project (workfront.versions.v40.ApproverStatus at-

tribute), 28project (workfront.versions.v40.Assignment attribute), 29project (workfront.versions.v40.Baseline attribute), 32project (workfront.versions.v40.BillingRecord attribute),

34project (workfront.versions.v40.Document attribute), 45project (workfront.versions.v40.DocumentFolder at-

tribute), 48project (workfront.versions.v40.ExchangeRate attribute),

50project (workfront.versions.v40.Expense attribute), 52project (workfront.versions.v40.FinancialData attribute),

54project (workfront.versions.v40.Hour attribute), 56project (workfront.versions.v40.Issue attribute), 62project (workfront.versions.v40.JournalEntry attribute),

68project (workfront.versions.v40.Note attribute), 75project (workfront.versions.v40.Project attribute), 90project (workfront.versions.v40.ProjectUser attribute), 93project (workfront.versions.v40.ProjectUserRole at-

tribute), 93project (workfront.versions.v40.QueueDef attribute), 94project (workfront.versions.v40.Rate attribute), 96project (workfront.versions.v40.ResourceAllocation at-

tribute), 97project (workfront.versions.v40.Risk attribute), 98project (workfront.versions.v40.RoutingRule attribute),

100project (workfront.versions.v40.ScoreCard attribute), 103project (workfront.versions.v40.ScoreCardAnswer

attribute), 103project (workfront.versions.v40.Task attribute), 113project (workfront.versions.v40.Work attribute), 149project (workfront.versions.v40.WorkItem attribute), 153project_display_name (work-

front.versions.unsupported.CalendarFeedEntryattribute), 206

project_id (workfront.versions.unsupported.Approval at-tribute), 181

project_id (workfront.versions.unsupported.ApproverStatusattribute), 190

project_id (workfront.versions.unsupported.Assignmentattribute), 192

project_id (workfront.versions.unsupported.AwaitingApprovalattribute), 198

project_id (workfront.versions.unsupported.Baseline at-tribute), 201

project_id (workfront.versions.unsupported.BillingRecordattribute), 203

project_id (workfront.versions.unsupported.CalendarFeedEntry

attribute), 206project_id (workfront.versions.unsupported.Document

attribute), 236project_id (workfront.versions.unsupported.DocumentFolder

attribute), 241project_id (workfront.versions.unsupported.DocumentRequest

attribute), 245project_id (workfront.versions.unsupported.Endorsement

attribute), 252project_id (workfront.versions.unsupported.ExchangeRate

attribute), 256project_id (workfront.versions.unsupported.Expense at-

tribute), 258project_id (workfront.versions.unsupported.FinancialData

attribute), 265project_id (workfront.versions.unsupported.Hour at-

tribute), 268project_id (workfront.versions.unsupported.Issue at-

tribute), 276project_id (workfront.versions.unsupported.JournalEntry

attribute), 284project_id (workfront.versions.unsupported.Note at-

tribute), 300project_id (workfront.versions.unsupported.NotificationRecord

attribute), 302project_id (workfront.versions.unsupported.ParameterValue

attribute), 306project_id (workfront.versions.unsupported.PopAccount

attribute), 307project_id (workfront.versions.unsupported.ProjectUser

attribute), 332project_id (workfront.versions.unsupported.ProjectUserRole

attribute), 333project_id (workfront.versions.unsupported.QueueDef at-

tribute), 334project_id (workfront.versions.unsupported.Rate at-

tribute), 337project_id (workfront.versions.unsupported.RecentUpdate

attribute), 339project_id (workfront.versions.unsupported.ResourceAllocation

attribute), 342project_id (workfront.versions.unsupported.Risk at-

tribute), 344project_id (workfront.versions.unsupported.RoutingRule

attribute), 346project_id (workfront.versions.unsupported.ScoreCard

attribute), 354project_id (workfront.versions.unsupported.ScoreCardAnswer

attribute), 355project_id (workfront.versions.unsupported.SharingSettings

attribute), 358project_id (workfront.versions.unsupported.Task at-

tribute), 367project_id (workfront.versions.unsupported.TimesheetTemplate

554 Index

Page 559: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

attribute), 390project_id (workfront.versions.unsupported.WatchListEntry

attribute), 416project_id (workfront.versions.unsupported.Work at-

tribute), 425project_id (workfront.versions.unsupported.WorkItem at-

tribute), 429project_id (workfront.versions.v40.Approval attribute),

20project_id (workfront.versions.v40.ApproverStatus at-

tribute), 28project_id (workfront.versions.v40.Assignment at-

tribute), 29project_id (workfront.versions.v40.Baseline attribute), 32project_id (workfront.versions.v40.BillingRecord at-

tribute), 34project_id (workfront.versions.v40.Document attribute),

45project_id (workfront.versions.v40.DocumentFolder at-

tribute), 48project_id (workfront.versions.v40.ExchangeRate at-

tribute), 50project_id (workfront.versions.v40.Expense attribute), 52project_id (workfront.versions.v40.FinancialData at-

tribute), 54project_id (workfront.versions.v40.Hour attribute), 56project_id (workfront.versions.v40.Issue attribute), 62project_id (workfront.versions.v40.JournalEntry at-

tribute), 69project_id (workfront.versions.v40.Note attribute), 75project_id (workfront.versions.v40.ProjectUser attribute),

93project_id (workfront.versions.v40.ProjectUserRole at-

tribute), 93project_id (workfront.versions.v40.QueueDef attribute),

94project_id (workfront.versions.v40.Rate attribute), 96project_id (workfront.versions.v40.ResourceAllocation

attribute), 97project_id (workfront.versions.v40.Risk attribute), 98project_id (workfront.versions.v40.RoutingRule at-

tribute), 100project_id (workfront.versions.v40.ScoreCard attribute),

103project_id (workfront.versions.v40.ScoreCardAnswer at-

tribute), 104project_id (workfront.versions.v40.Task attribute), 113project_id (workfront.versions.v40.Work attribute), 149project_id (workfront.versions.v40.WorkItem attribute),

153project_management_config_map (work-

front.versions.unsupported.Customer attribute),225

project_management_config_map_id (work-

front.versions.unsupported.Customer attribute),225

project_management_config_map_id (work-front.versions.v40.Customer attribute), 41

project_name (workfront.versions.unsupported.RecentUpdateattribute), 339

project_overhead (workfront.versions.unsupported.Hourattribute), 268

project_overhead (workfront.versions.v40.Hour at-tribute), 56

project_overhead_id (work-front.versions.unsupported.Hour attribute),268

project_overhead_id (workfront.versions.v40.Hour at-tribute), 56

project_user_roles (work-front.versions.unsupported.Approval attribute),182

project_user_roles (work-front.versions.unsupported.Project attribute),329

project_user_roles (workfront.versions.v40.Approval at-tribute), 20

project_user_roles (workfront.versions.v40.Projectattribute), 90

project_users (workfront.versions.unsupported.Approvalattribute), 182

project_users (workfront.versions.unsupported.Project at-tribute), 329

project_users (workfront.versions.v40.Approval at-tribute), 21

project_users (workfront.versions.v40.Project attribute),90

projected_allocation_percent (work-front.versions.unsupported.UserAvailabilityattribute), 409

projected_allocation_percentage (work-front.versions.unsupported.UserResourceattribute), 415

projected_assigned_minutes (work-front.versions.unsupported.UserAvailabilityattribute), 409

projected_avg_work_per_day (work-front.versions.unsupported.Assignment at-tribute), 192

projected_completion_date (work-front.versions.unsupported.Approval attribute),182

projected_completion_date (work-front.versions.unsupported.Baseline attribute),201

projected_completion_date (work-front.versions.unsupported.BaselineTaskattribute), 202

Index 555

Page 560: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

projected_completion_date (work-front.versions.unsupported.Issue attribute),276

projected_completion_date (work-front.versions.unsupported.Project attribute),329

projected_completion_date (work-front.versions.unsupported.Task attribute),368

projected_completion_date (work-front.versions.unsupported.Work attribute),425

projected_completion_date (work-front.versions.v40.Approval attribute), 21

projected_completion_date (work-front.versions.v40.Baseline attribute), 32

projected_completion_date (work-front.versions.v40.BaselineTask attribute),33

projected_completion_date (work-front.versions.v40.Project attribute), 90

projected_completion_date (workfront.versions.v40.Taskattribute), 113

projected_completion_date (work-front.versions.v40.Work attribute), 149

projected_day_summaries (work-front.versions.unsupported.UserResourceattribute), 415

projected_duration_minutes (work-front.versions.unsupported.Approval attribute),182

projected_duration_minutes (work-front.versions.unsupported.Issue attribute),276

projected_duration_minutes (work-front.versions.unsupported.Task attribute),368

projected_duration_minutes (work-front.versions.unsupported.Work attribute),425

projected_duration_minutes (work-front.versions.v40.Approval attribute), 21

projected_duration_minutes (work-front.versions.v40.Issue attribute), 62

projected_duration_minutes (work-front.versions.v40.Task attribute), 114

projected_duration_minutes (work-front.versions.v40.Work attribute), 149

projected_remaining_minutes (work-front.versions.unsupported.UserAvailabilityattribute), 409

projected_scheduled_hours (work-front.versions.unsupported.ResourceAllocationattribute), 342

projected_start_date (work-front.versions.unsupported.Approval attribute),182

projected_start_date (work-front.versions.unsupported.Baseline attribute),201

projected_start_date (work-front.versions.unsupported.BaselineTaskattribute), 202

projected_start_date (work-front.versions.unsupported.Issue attribute),276

projected_start_date (work-front.versions.unsupported.Project attribute),329

projected_start_date (work-front.versions.unsupported.Task attribute),368

projected_start_date (work-front.versions.unsupported.Work attribute),425

projected_start_date (workfront.versions.v40.Approvalattribute), 21

projected_start_date (workfront.versions.v40.Baseline at-tribute), 32

projected_start_date (work-front.versions.v40.BaselineTask attribute),33

projected_start_date (workfront.versions.v40.Issueattribute), 62

projected_start_date (workfront.versions.v40.Project at-tribute), 90

projected_start_date (workfront.versions.v40.Taskattribute), 114

projected_start_date (workfront.versions.v40.Work at-tribute), 149

projected_user_allocation_percentage (work-front.versions.unsupported.Assignment at-tribute), 192

projects (workfront.versions.unsupported.Portfolioattribute), 316

projects (workfront.versions.unsupported.Programattribute), 319

projects (workfront.versions.v40.Portfolio attribute), 80projects (workfront.versions.v40.Program attribute), 82ProjectUser (class in workfront.versions.unsupported),

332ProjectUser (class in workfront.versions.v40), 92ProjectUserRole (class in work-

front.versions.unsupported), 333ProjectUserRole (class in workfront.versions.v40), 93proof_account_id (work-

front.versions.unsupported.Customer attribute),225

556 Index

Page 561: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

proof_account_id (workfront.versions.v40.Customer at-tribute), 41

proof_account_password (workfront.versions.v40.Userattribute), 139

proof_id (workfront.versions.unsupported.DocumentVersionattribute), 249

proof_id (workfront.versions.v40.DocumentVersion at-tribute), 49

proof_stage_id (workfront.versions.unsupported.DocumentVersionattribute), 249

proof_status (workfront.versions.unsupported.DocumentVersionattribute), 249

proof_status (workfront.versions.v40.DocumentVersionattribute), 49

proof_status_date (work-front.versions.unsupported.DocumentVersionattribute), 249

proof_status_msg_key (work-front.versions.unsupported.DocumentVersionattribute), 249

provider_port (workfront.versions.unsupported.SSOOptionattribute), 348

provider_type (workfront.versions.unsupported.ExternalDocumentattribute), 261

provider_url (workfront.versions.unsupported.SSOOptionattribute), 348

provision_users (workfront.versions.unsupported.SSOOptionattribute), 348

public_file_handle() (work-front.versions.unsupported.DocumentVersionmethod), 249

public_run_as_user (work-front.versions.unsupported.PortalSectionattribute), 311

public_run_as_user_id (work-front.versions.unsupported.PortalSectionattribute), 311

public_token (workfront.versions.unsupported.CalendarInfoattribute), 207

public_token (workfront.versions.unsupported.Documentattribute), 236

public_token (workfront.versions.unsupported.PortalSectionattribute), 311

public_token (workfront.versions.v40.Document at-tribute), 45

put() (workfront.Session method), 7

Qquarter_label (workfront.versions.unsupported.CustomQuarter

attribute), 219query_expression (work-

front.versions.unsupported.AppEvent at-tribute), 168

query_limit (workfront.versions.unsupported.Customerattribute), 225

queue_def (workfront.versions.unsupported.Approval at-tribute), 182

queue_def (workfront.versions.unsupported.Project at-tribute), 329

queue_def (workfront.versions.unsupported.QueueTopicattribute), 336

queue_def (workfront.versions.unsupported.QueueTopicGroupattribute), 336

queue_def (workfront.versions.unsupported.Template at-tribute), 377

queue_def (workfront.versions.v40.Approval attribute),21

queue_def (workfront.versions.v40.Project attribute), 90queue_def (workfront.versions.v40.QueueTopic at-

tribute), 95queue_def (workfront.versions.v40.Template attribute),

120queue_def_id (workfront.versions.unsupported.Approval

attribute), 182queue_def_id (workfront.versions.unsupported.Project

attribute), 329queue_def_id (workfront.versions.unsupported.QueueTopic

attribute), 336queue_def_id (workfront.versions.unsupported.QueueTopicGroup

attribute), 336queue_def_id (workfront.versions.unsupported.Template

attribute), 377queue_def_id (workfront.versions.v40.Approval at-

tribute), 21queue_def_id (workfront.versions.v40.Project attribute),

90queue_def_id (workfront.versions.v40.QueueTopic at-

tribute), 95queue_def_id (workfront.versions.v40.Template at-

tribute), 120queue_topic (workfront.versions.unsupported.Approval

attribute), 182queue_topic (workfront.versions.unsupported.Issue at-

tribute), 276queue_topic (workfront.versions.unsupported.Work at-

tribute), 425queue_topic (workfront.versions.v40.Approval attribute),

21queue_topic (workfront.versions.v40.Issue attribute), 63queue_topic (workfront.versions.v40.Work attribute), 149queue_topic_breadcrumb (work-

front.versions.unsupported.Approval attribute),182

queue_topic_breadcrumb (work-front.versions.unsupported.Issue attribute),276

queue_topic_breadcrumb (work-

Index 557

Page 562: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

front.versions.unsupported.Work attribute),425

queue_topic_groups (work-front.versions.unsupported.QueueTopicGroupattribute), 336

queue_topic_id (workfront.versions.unsupported.Approvalattribute), 182

queue_topic_id (workfront.versions.unsupported.Issueattribute), 276

queue_topic_id (workfront.versions.unsupported.Workattribute), 425

queue_topic_id (workfront.versions.v40.Approval at-tribute), 21

queue_topic_id (workfront.versions.v40.Issue attribute),63

queue_topic_id (workfront.versions.v40.Work attribute),150

queue_topics (workfront.versions.unsupported.QueueDefattribute), 334

queue_topics (workfront.versions.unsupported.QueueTopicGroupattribute), 336

queue_topics (workfront.versions.v40.QueueDef at-tribute), 94

QueueDef (class in workfront.versions.unsupported), 333QueueDef (class in workfront.versions.v40), 93QueueTopic (class in workfront.versions.unsupported),

335QueueTopic (class in workfront.versions.v40), 94QueueTopicGroup (class in work-

front.versions.unsupported), 336

Rrank (workfront.versions.unsupported.AccessLevel at-

tribute), 157Rate (class in workfront.versions.unsupported), 337Rate (class in workfront.versions.v40), 96rate (workfront.versions.unsupported.ExchangeRate at-

tribute), 256rate (workfront.versions.unsupported.ExpenseType at-

tribute), 259rate (workfront.versions.v40.ExchangeRate attribute), 50rate (workfront.versions.v40.ExpenseType attribute), 53rate_unit (workfront.versions.unsupported.ExpenseType

attribute), 259rate_unit (workfront.versions.v40.ExpenseType at-

tribute), 53rate_value (workfront.versions.unsupported.Rate at-

tribute), 337rate_value (workfront.versions.v40.Rate attribute), 96rates (workfront.versions.unsupported.Approval at-

tribute), 182rates (workfront.versions.unsupported.Company at-

tribute), 215

rates (workfront.versions.unsupported.Project attribute),329

rates (workfront.versions.unsupported.Template at-tribute), 377

rates (workfront.versions.v40.Approval attribute), 21rates (workfront.versions.v40.Company attribute), 37rates (workfront.versions.v40.Project attribute), 90read_only (workfront.versions.unsupported.ExternalDocument

attribute), 261recall() (workfront.versions.unsupported.AccessRequest

method), 159recall_approval() (workfront.versions.unsupported.Issue

method), 276recall_approval() (work-

front.versions.unsupported.Project method),329

recall_approval() (workfront.versions.unsupported.Taskmethod), 368

recall_approval() (workfront.versions.v40.Issue method),63

recall_approval() (workfront.versions.v40.Projectmethod), 90

recall_approval() (workfront.versions.v40.Task method),114

receiver (workfront.versions.unsupported.Endorsementattribute), 252

receiver_id (workfront.versions.unsupported.Endorsementattribute), 252

Recent (class in workfront.versions.unsupported), 337recent_item_string (work-

front.versions.unsupported.RecentMenuItemattribute), 338

RecentMenuItem (class in work-front.versions.unsupported), 338

RecentUpdate (class in workfront.versions.unsupported),339

recipient_id (workfront.versions.unsupported.AnnouncementRecipientattribute), 167

recipient_obj_code (work-front.versions.unsupported.AnnouncementRecipientattribute), 167

recipient_types (workfront.versions.unsupported.Announcementattribute), 165

recipients (workfront.versions.unsupported.NotificationRecordattribute), 302

recipients (workfront.versions.unsupported.ScheduledReportattribute), 352

recipients (workfront.versions.unsupported.TimedNotificationattribute), 387

record_limit (workfront.versions.unsupported.Customerattribute), 225

record_limit (workfront.versions.v40.Customer at-tribute), 41

recur_on (workfront.versions.unsupported.RecurrenceRule

558 Index

Page 563: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

attribute), 340recurrence_count (work-

front.versions.unsupported.RecurrenceRuleattribute), 340

recurrence_interval (work-front.versions.unsupported.RecurrenceRuleattribute), 340

recurrence_number (work-front.versions.unsupported.Approval attribute),182

recurrence_number (work-front.versions.unsupported.Task attribute),368

recurrence_number (work-front.versions.unsupported.TemplateTaskattribute), 384

recurrence_number (work-front.versions.unsupported.Work attribute),425

recurrence_number (workfront.versions.v40.Approval at-tribute), 21

recurrence_number (workfront.versions.v40.Task at-tribute), 114

recurrence_number (work-front.versions.v40.TemplateTask attribute),126

recurrence_number (workfront.versions.v40.Workattribute), 150

recurrence_rule (workfront.versions.unsupported.Approvalattribute), 182

recurrence_rule (workfront.versions.unsupported.ScheduledReportattribute), 352

recurrence_rule (workfront.versions.unsupported.Task at-tribute), 368

recurrence_rule (workfront.versions.unsupported.TemplateTaskattribute), 384

recurrence_rule (workfront.versions.unsupported.Workattribute), 425

recurrence_rule_id (work-front.versions.unsupported.Approval attribute),182

recurrence_rule_id (workfront.versions.unsupported.Taskattribute), 368

recurrence_rule_id (work-front.versions.unsupported.TemplateTaskattribute), 385

recurrence_rule_id (work-front.versions.unsupported.Work attribute),425

recurrence_rule_id (workfront.versions.v40.Approval at-tribute), 21

recurrence_rule_id (workfront.versions.v40.Task at-tribute), 114

recurrence_rule_id (work-

front.versions.v40.TemplateTask attribute),126

recurrence_rule_id (workfront.versions.v40.Work at-tribute), 150

recurrence_type (work-front.versions.unsupported.RecurrenceRuleattribute), 340

RecurrenceRule (class in work-front.versions.unsupported), 340

ref_name (workfront.versions.unsupported.CalendarFeedEntryattribute), 206

ref_name (workfront.versions.unsupported.Updateattribute), 398

ref_name (workfront.versions.v40.Update attribute), 134ref_obj_code (workfront.versions.unsupported.AccessToken

attribute), 163ref_obj_code (workfront.versions.unsupported.CalendarFeedEntry

attribute), 206ref_obj_code (workfront.versions.unsupported.DocumentRequest

attribute), 245ref_obj_code (workfront.versions.unsupported.Endorsement

attribute), 252ref_obj_code (workfront.versions.unsupported.SecurityAncestor

attribute), 357ref_obj_code (workfront.versions.unsupported.TimesheetTemplate

attribute), 390ref_obj_code (workfront.versions.unsupported.Update at-

tribute), 398ref_obj_code (workfront.versions.unsupported.UserObjectPref

attribute), 413ref_obj_code (workfront.versions.v40.Update attribute),

134ref_obj_id (workfront.versions.unsupported.AccessToken

attribute), 163ref_obj_id (workfront.versions.unsupported.CalendarFeedEntry

attribute), 206ref_obj_id (workfront.versions.unsupported.DocumentRequest

attribute), 245ref_obj_id (workfront.versions.unsupported.Endorsement

attribute), 252ref_obj_id (workfront.versions.unsupported.SecurityAncestor

attribute), 357ref_obj_id (workfront.versions.unsupported.TimesheetTemplate

attribute), 390ref_obj_id (workfront.versions.unsupported.Update at-

tribute), 398ref_obj_id (workfront.versions.unsupported.UserObjectPref

attribute), 413ref_obj_id (workfront.versions.v40.Update attribute), 134Reference (class in workfront.meta), 8reference_number (work-

front.versions.unsupported.Approval attribute),182

reference_number (work-

Index 559

Page 564: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

front.versions.unsupported.Document at-tribute), 236

reference_number (workfront.versions.unsupported.Issueattribute), 276

reference_number (work-front.versions.unsupported.Project attribute),329

reference_number (workfront.versions.unsupported.Taskattribute), 368

reference_number (work-front.versions.unsupported.Template attribute),377

reference_number (work-front.versions.unsupported.TemplateTaskattribute), 385

reference_number (work-front.versions.unsupported.Work attribute),425

reference_number (workfront.versions.v40.Approval at-tribute), 21

reference_number (workfront.versions.v40.Issue at-tribute), 63

reference_number (workfront.versions.v40.Projectattribute), 90

reference_number (workfront.versions.v40.Task at-tribute), 114

reference_number (workfront.versions.v40.Template at-tribute), 120

reference_number (workfront.versions.v40.TemplateTaskattribute), 126

reference_number (workfront.versions.v40.Work at-tribute), 150

reference_obj_code (work-front.versions.unsupported.Approval attribute),182

reference_obj_code (work-front.versions.unsupported.Document at-tribute), 236

reference_obj_code (work-front.versions.unsupported.Expense attribute),258

reference_obj_code (work-front.versions.unsupported.Hour attribute),268

reference_obj_code (work-front.versions.unsupported.Issue attribute),276

reference_obj_code (work-front.versions.unsupported.Work attribute),425

reference_obj_code (workfront.versions.v40.Approval at-tribute), 21

reference_obj_code (workfront.versions.v40.Documentattribute), 45

reference_obj_code (workfront.versions.v40.Expense at-tribute), 52

reference_obj_code (workfront.versions.v40.Hourattribute), 57

reference_obj_code (workfront.versions.v40.Issueattribute), 63

reference_obj_code (workfront.versions.v40.Workattribute), 150

reference_obj_id (work-front.versions.unsupported.Approval attribute),182

reference_obj_id (work-front.versions.unsupported.Document at-tribute), 236

reference_obj_id (work-front.versions.unsupported.Expense attribute),258

reference_obj_id (workfront.versions.unsupported.Hourattribute), 268

reference_obj_id (workfront.versions.unsupported.Issueattribute), 276

reference_obj_id (workfront.versions.unsupported.Workattribute), 426

reference_obj_id (workfront.versions.v40.Approval at-tribute), 21

reference_obj_id (workfront.versions.v40.Document at-tribute), 45

reference_obj_id (workfront.versions.v40.Expenseattribute), 52

reference_obj_id (workfront.versions.v40.Hour at-tribute), 57

reference_obj_id (workfront.versions.v40.Issue at-tribute), 63

reference_obj_id (workfront.versions.v40.Work at-tribute), 150

reference_object_closed (work-front.versions.unsupported.Document at-tribute), 236

reference_object_commit_date (work-front.versions.unsupported.WorkItem at-tribute), 429

reference_object_commit_date (work-front.versions.v40.WorkItem attribute), 153

reference_object_name (work-front.versions.unsupported.Acknowledgementattribute), 164

reference_object_name (work-front.versions.unsupported.Document at-tribute), 236

reference_object_name (work-front.versions.unsupported.Endorsementattribute), 252

reference_object_name (work-front.versions.unsupported.Expense attribute),

560 Index

Page 565: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

258reference_object_name (work-

front.versions.unsupported.JournalEntryattribute), 284

reference_object_name (work-front.versions.unsupported.Note attribute),300

reference_object_name (work-front.versions.unsupported.NoteTag attribute),301

reference_object_name (work-front.versions.unsupported.WorkItem at-tribute), 430

reference_object_name (work-front.versions.v40.Document attribute), 45

reference_object_name (workfront.versions.v40.Expenseattribute), 52

reference_object_name (workfront.versions.v40.Note at-tribute), 75

reference_object_name (workfront.versions.v40.NoteTagattribute), 76

reference_object_name (work-front.versions.v40.WorkItem attribute), 153

refresh_external_document_info() (work-front.versions.unsupported.Document method),236

refresh_external_documents() (work-front.versions.unsupported.Document method),236

refresh_linked_folder() (work-front.versions.unsupported.DocumentFoldermethod), 241

refresh_linked_folder_contents() (work-front.versions.unsupported.DocumentFoldermethod), 241

refresh_linked_folder_meta_data() (work-front.versions.unsupported.DocumentFoldermethod), 241

regenerate_box_shared_link() (work-front.versions.unsupported.Document method),236

registration_expire_date (work-front.versions.unsupported.User attribute),405

registration_expire_date (workfront.versions.v40.User at-tribute), 139

regular_hours (workfront.versions.unsupported.Timesheetattribute), 388

regular_hours (workfront.versions.v40.Timesheet at-tribute), 128

reject_approval() (workfront.versions.unsupported.Issuemethod), 276

reject_approval() (work-front.versions.unsupported.Project method),

329reject_approval() (workfront.versions.unsupported.Task

method), 368reject_approval() (workfront.versions.v40.Issue method),

63reject_approval() (workfront.versions.v40.Project

method), 90reject_approval() (workfront.versions.v40.Task method),

114rejected_status (workfront.versions.unsupported.ApprovalPath

attribute), 187rejected_status (workfront.versions.v40.ApprovalPath at-

tribute), 25rejected_status_label (work-

front.versions.unsupported.ApprovalPathattribute), 187

rejected_status_label (work-front.versions.v40.ApprovalPath attribute),25

rejection_issue (workfront.versions.unsupported.Approvalattribute), 182

rejection_issue (workfront.versions.unsupported.ApprovalProcessAttachableattribute), 189

rejection_issue (workfront.versions.unsupported.Issue at-tribute), 277

rejection_issue (workfront.versions.unsupported.Projectattribute), 330

rejection_issue (workfront.versions.unsupported.Task at-tribute), 368

rejection_issue (workfront.versions.unsupported.Work at-tribute), 426

rejection_issue (workfront.versions.v40.Approval at-tribute), 21

rejection_issue (workfront.versions.v40.Issue attribute),63

rejection_issue (workfront.versions.v40.Project at-tribute), 91

rejection_issue (workfront.versions.v40.Task attribute),114

rejection_issue (workfront.versions.v40.Work attribute),150

rejection_issue_id (work-front.versions.unsupported.Approval attribute),182

rejection_issue_id (work-front.versions.unsupported.ApprovalProcessAttachableattribute), 189

rejection_issue_id (workfront.versions.unsupported.Issueattribute), 277

rejection_issue_id (work-front.versions.unsupported.Project attribute),330

rejection_issue_id (workfront.versions.unsupported.Taskattribute), 368

Index 561

Page 566: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

rejection_issue_id (work-front.versions.unsupported.Work attribute),426

rejection_issue_id (workfront.versions.v40.Approval at-tribute), 21

rejection_issue_id (workfront.versions.v40.Issue at-tribute), 63

rejection_issue_id (workfront.versions.v40.Projectattribute), 91

rejection_issue_id (workfront.versions.v40.Task at-tribute), 114

rejection_issue_id (workfront.versions.v40.Work at-tribute), 150

release_version (workfront.versions.unsupported.Documentattribute), 236

release_version (workfront.versions.v40.Document at-tribute), 45

release_version_id (work-front.versions.unsupported.Document at-tribute), 236

release_version_id (workfront.versions.v40.Document at-tribute), 45

remaining_cost (workfront.versions.unsupported.Approvalattribute), 182

remaining_cost (workfront.versions.unsupported.Projectattribute), 330

remaining_cost (workfront.versions.v40.Approval at-tribute), 21

remaining_cost (workfront.versions.v40.Project at-tribute), 91

remaining_duration_minutes (work-front.versions.unsupported.Approval attribute),182

remaining_duration_minutes (work-front.versions.unsupported.Issue attribute),277

remaining_duration_minutes (work-front.versions.unsupported.Task attribute),368

remaining_duration_minutes (work-front.versions.unsupported.Work attribute),426

remaining_duration_minutes (work-front.versions.v40.Approval attribute), 21

remaining_duration_minutes (work-front.versions.v40.Issue attribute), 63

remaining_duration_minutes (work-front.versions.v40.Task attribute), 114

remaining_duration_minutes (work-front.versions.v40.Work attribute), 150

remaining_revenue (work-front.versions.unsupported.Approval attribute),183

remaining_revenue (work-

front.versions.unsupported.Project attribute),330

remaining_revenue (workfront.versions.v40.Approval at-tribute), 21

remaining_revenue (workfront.versions.v40.Project at-tribute), 91

remaining_risk_cost (work-front.versions.unsupported.Approval attribute),183

remaining_risk_cost (work-front.versions.unsupported.Project attribute),330

remaining_risk_cost (workfront.versions.v40.Approvalattribute), 21

remaining_risk_cost (workfront.versions.v40.Project at-tribute), 91

remind() (workfront.versions.unsupported.AccessRequestmethod), 159

remind_requestee() (work-front.versions.unsupported.Document method),236

remote_attribute (work-front.versions.unsupported.SSOMappingattribute), 347

remote_attribute (work-front.versions.unsupported.SSOMappingRuleattribute), 348

remote_entity_id (work-front.versions.unsupported.SSOOption at-tribute), 348

remove_document_version() (work-front.versions.unsupported.DocumentVersionmethod), 249

remove_mobile_device() (work-front.versions.unsupported.User method),405

remove_users_from_project() (work-front.versions.unsupported.Project method),330

remove_users_from_template() (work-front.versions.unsupported.Template method),377

reorder_categories() (work-front.versions.unsupported.Category method),211

replace_delete_groups() (work-front.versions.unsupported.Group method),266

replies (workfront.versions.unsupported.Endorsement at-tribute), 252

replies (workfront.versions.unsupported.JournalEntry at-tribute), 284

replies (workfront.versions.unsupported.Note attribute),300

562 Index

Page 567: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

replies (workfront.versions.unsupported.Update at-tribute), 398

replies (workfront.versions.v40.JournalEntry attribute),69

replies (workfront.versions.v40.Note attribute), 75replies (workfront.versions.v40.Update attribute), 134reply_to_assignment() (work-

front.versions.unsupported.Issue method),277

reply_to_assignment() (work-front.versions.unsupported.Task method),368

reply_to_assignment() (workfront.versions.v40.Issuemethod), 63

reply_to_assignment() (workfront.versions.v40.Taskmethod), 114

report_folder (workfront.versions.unsupported.PortalSectionattribute), 311

report_folder_id (work-front.versions.unsupported.PortalSectionattribute), 311

report_type (workfront.versions.unsupported.PortalSectionattribute), 311

ReportFolder (class in workfront.versions.unsupported),341

request() (workfront.Session method), 6request_access() (work-

front.versions.unsupported.AccessRequestmethod), 159

request_date (workfront.versions.unsupported.AccessRequestattribute), 159

request_date (workfront.versions.unsupported.DocumentApprovalattribute), 239

request_date (workfront.versions.v40.DocumentApprovalattribute), 47

requested_obj_code (work-front.versions.unsupported.AccessRequestattribute), 159

requested_obj_id (work-front.versions.unsupported.AccessRequestattribute), 159

requested_object_name (work-front.versions.unsupported.AccessRequestattribute), 159

requestee (workfront.versions.unsupported.DocumentRequestattribute), 245

requestee_id (workfront.versions.unsupported.DocumentRequestattribute), 245

requestor (workfront.versions.unsupported.AccessRequestattribute), 159

requestor (workfront.versions.unsupported.DocumentApprovalattribute), 239

requestor (workfront.versions.unsupported.DocumentRequestattribute), 245

requestor (workfront.versions.v40.DocumentApproval at-tribute), 47

requestor_actions (work-front.versions.unsupported.MetaRecord at-tribute), 295

requestor_core_action (work-front.versions.unsupported.QueueDef at-tribute), 334

requestor_core_action (work-front.versions.v40.QueueDef attribute), 94

requestor_forbidden_actions (work-front.versions.unsupported.QueueDef at-tribute), 334

requestor_forbidden_actions (work-front.versions.v40.QueueDef attribute), 94

requestor_id (workfront.versions.unsupported.AccessRequestattribute), 159

requestor_id (workfront.versions.unsupported.DocumentApprovalattribute), 239

requestor_id (workfront.versions.unsupported.DocumentRequestattribute), 245

requestor_id (workfront.versions.v40.DocumentApprovalattribute), 47

requestor_users (workfront.versions.unsupported.Customerattribute), 225

requestor_users (workfront.versions.unsupported.LicenseOrderattribute), 290

requestor_users (workfront.versions.v40.Customerattribute), 41

requests_view (workfront.versions.unsupported.Team at-tribute), 372

requests_view (workfront.versions.v40.Team attribute),117

requests_view_id (workfront.versions.unsupported.Teamattribute), 372

requests_view_id (workfront.versions.v40.Team at-tribute), 117

require_sslconnection (work-front.versions.unsupported.SSOOption at-tribute), 348

Reseller (class in workfront.versions.unsupported), 341reseller (workfront.versions.unsupported.AccountRep at-

tribute), 163reseller (workfront.versions.unsupported.Customer at-

tribute), 225reseller_id (workfront.versions.unsupported.AccountRep

attribute), 163reseller_id (workfront.versions.unsupported.Customer at-

tribute), 225reseller_id (workfront.versions.v40.Customer attribute),

41reserved_time (workfront.versions.unsupported.Approval

attribute), 183reserved_time (workfront.versions.unsupported.Task at-

Index 563

Page 568: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

tribute), 368reserved_time (workfront.versions.unsupported.Work at-

tribute), 426reserved_time (workfront.versions.v40.Approval at-

tribute), 21reserved_time (workfront.versions.v40.Task attribute),

114reserved_time (workfront.versions.v40.Work attribute),

150reserved_time_id (work-

front.versions.unsupported.Approval attribute),183

reserved_time_id (workfront.versions.unsupported.Taskattribute), 368

reserved_time_id (workfront.versions.unsupported.Workattribute), 426

reserved_time_id (workfront.versions.v40.Approval at-tribute), 22

reserved_time_id (workfront.versions.v40.Task attribute),114

reserved_time_id (workfront.versions.v40.Work at-tribute), 150

reserved_times (workfront.versions.unsupported.User at-tribute), 405

reserved_times (workfront.versions.v40.User attribute),139

ReservedTime (class in workfront.versions.unsupported),342

ReservedTime (class in workfront.versions.v40), 96reset_lucid_security_migration_progress() (work-

front.versions.unsupported.Customer method),225

reset_password() (work-front.versions.unsupported.Authenticationmethod), 195

reset_password() (workfront.versions.unsupported.Usermethod), 406

reset_password_by_token() (work-front.versions.unsupported.Authenticationmethod), 195

reset_password_expire_date (work-front.versions.unsupported.User attribute),406

reset_password_expire_date (work-front.versions.v40.User attribute), 139

reset_subjects_to_default() (work-front.versions.unsupported.EventHandlermethod), 254

resize_unsaved_avatar_file() (work-front.versions.unsupported.Avatar method),197

resolution_time (workfront.versions.unsupported.Approvalattribute), 183

resolution_time (workfront.versions.unsupported.Issue

attribute), 277resolution_time (workfront.versions.unsupported.Work

attribute), 426resolution_time (workfront.versions.v40.Approval

attribute), 22resolution_time (workfront.versions.v40.Issue attribute),

63resolution_time (workfront.versions.v40.Work attribute),

150resolvables (workfront.versions.unsupported.Approval at-

tribute), 183resolvables (workfront.versions.unsupported.Issue

attribute), 277resolvables (workfront.versions.unsupported.Project at-

tribute), 330resolvables (workfront.versions.unsupported.Task at-

tribute), 369resolvables (workfront.versions.unsupported.Work

attribute), 426resolvables (workfront.versions.v40.Approval attribute),

22resolvables (workfront.versions.v40.Issue attribute), 63resolvables (workfront.versions.v40.Project attribute), 91resolvables (workfront.versions.v40.Task attribute), 114resolvables (workfront.versions.v40.Work attribute), 150resolve_op_task (work-

front.versions.unsupported.Approval attribute),183

resolve_op_task (workfront.versions.unsupported.Issueattribute), 277

resolve_op_task (workfront.versions.unsupported.Workattribute), 426

resolve_op_task (workfront.versions.v40.Approvalattribute), 22

resolve_op_task (workfront.versions.v40.Issue attribute),63

resolve_op_task (workfront.versions.v40.Work attribute),150

resolve_op_task_id (work-front.versions.unsupported.Approval attribute),183

resolve_op_task_id (work-front.versions.unsupported.Issue attribute),277

resolve_op_task_id (work-front.versions.unsupported.Work attribute),426

resolve_op_task_id (workfront.versions.v40.Approval at-tribute), 22

resolve_op_task_id (workfront.versions.v40.Issue at-tribute), 63

resolve_op_task_id (workfront.versions.v40.Workattribute), 150

resolve_project (workfront.versions.unsupported.Approval

564 Index

Page 569: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

attribute), 183resolve_project (workfront.versions.unsupported.Issue at-

tribute), 277resolve_project (workfront.versions.unsupported.Work

attribute), 426resolve_project (workfront.versions.v40.Approval at-

tribute), 22resolve_project (workfront.versions.v40.Issue attribute),

64resolve_project (workfront.versions.v40.Work attribute),

150resolve_project_id (work-

front.versions.unsupported.Approval attribute),183

resolve_project_id (work-front.versions.unsupported.Issue attribute),277

resolve_project_id (work-front.versions.unsupported.Work attribute),426

resolve_project_id (workfront.versions.v40.Approval at-tribute), 22

resolve_project_id (workfront.versions.v40.Issue at-tribute), 64

resolve_project_id (workfront.versions.v40.Work at-tribute), 150

resolve_task (workfront.versions.unsupported.Approvalattribute), 183

resolve_task (workfront.versions.unsupported.Issue at-tribute), 277

resolve_task (workfront.versions.unsupported.Work at-tribute), 426

resolve_task (workfront.versions.v40.Approval attribute),22

resolve_task (workfront.versions.v40.Issue attribute), 64resolve_task (workfront.versions.v40.Work attribute),

150resolve_task_id (workfront.versions.unsupported.Approval

attribute), 183resolve_task_id (workfront.versions.unsupported.Issue

attribute), 277resolve_task_id (workfront.versions.unsupported.Work

attribute), 426resolve_task_id (workfront.versions.v40.Approval

attribute), 22resolve_task_id (workfront.versions.v40.Issue attribute),

64resolve_task_id (workfront.versions.v40.Work attribute),

150resolving_obj_code (work-

front.versions.unsupported.Approval attribute),183

resolving_obj_code (work-front.versions.unsupported.Issue attribute),

277resolving_obj_code (work-

front.versions.unsupported.Work attribute),426

resolving_obj_code (workfront.versions.v40.Approval at-tribute), 22

resolving_obj_code (workfront.versions.v40.Issueattribute), 64

resolving_obj_code (workfront.versions.v40.Workattribute), 150

resolving_obj_id (work-front.versions.unsupported.Approval attribute),183

resolving_obj_id (workfront.versions.unsupported.Issueattribute), 277

resolving_obj_id (workfront.versions.unsupported.Workattribute), 426

resolving_obj_id (workfront.versions.v40.Approval at-tribute), 22

resolving_obj_id (workfront.versions.v40.Issue at-tribute), 64

resolving_obj_id (workfront.versions.v40.Work at-tribute), 150

resource_allocations (work-front.versions.unsupported.Approval attribute),183

resource_allocations (work-front.versions.unsupported.Project attribute),330

resource_allocations (work-front.versions.unsupported.ResourcePoolattribute), 343

resource_allocations (workfront.versions.v40.Approvalattribute), 22

resource_allocations (workfront.versions.v40.Project at-tribute), 91

resource_allocations (work-front.versions.v40.ResourcePool attribute),98

resource_pool (workfront.versions.unsupported.Approvalattribute), 183

resource_pool (workfront.versions.unsupported.Projectattribute), 330

resource_pool (workfront.versions.unsupported.ResourceAllocationattribute), 343

resource_pool (workfront.versions.unsupported.User at-tribute), 406

resource_pool (workfront.versions.v40.Approval at-tribute), 22

resource_pool (workfront.versions.v40.Project attribute),91

resource_pool (workfront.versions.v40.ResourceAllocationattribute), 97

resource_pool (workfront.versions.v40.User attribute),

Index 565

Page 570: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

139resource_pool_id (work-

front.versions.unsupported.Approval attribute),183

resource_pool_id (work-front.versions.unsupported.Project attribute),330

resource_pool_id (work-front.versions.unsupported.ResourceAllocationattribute), 343

resource_pool_id (workfront.versions.unsupported.Userattribute), 406

resource_pool_id (workfront.versions.v40.Approval at-tribute), 22

resource_pool_id (workfront.versions.v40.Project at-tribute), 91

resource_pool_id (work-front.versions.v40.ResourceAllocation at-tribute), 97

resource_pool_id (workfront.versions.v40.User at-tribute), 139

resource_pools (workfront.versions.unsupported.Customerattribute), 225

resource_pools (workfront.versions.v40.Customerattribute), 41

resource_revenue (workfront.versions.unsupported.Hourattribute), 268

resource_revenue (workfront.versions.v40.Hour at-tribute), 57

resource_scope (workfront.versions.unsupported.Approvalattribute), 183

resource_scope (workfront.versions.unsupported.Task at-tribute), 369

resource_scope (workfront.versions.unsupported.Workattribute), 426

resource_scope (workfront.versions.v40.Approval at-tribute), 22

resource_scope (workfront.versions.v40.Task attribute),114

resource_scope (workfront.versions.v40.Work attribute),151

ResourceAllocation (class in work-front.versions.unsupported), 342

ResourceAllocation (class in workfront.versions.v40), 97ResourcePool (class in workfront.versions.unsupported),

343ResourcePool (class in workfront.versions.v40), 97retrieve_and_store_oauth2tokens() (work-

front.versions.unsupported.User method),406

retrieve_and_store_oauth_token() (work-front.versions.unsupported.User method),406

revenue_type (workfront.versions.unsupported.Approval

attribute), 183revenue_type (workfront.versions.unsupported.MasterTask

attribute), 293revenue_type (workfront.versions.unsupported.Task at-

tribute), 369revenue_type (workfront.versions.unsupported.TemplateTask

attribute), 385revenue_type (workfront.versions.unsupported.Work at-

tribute), 426revenue_type (workfront.versions.v40.Approval at-

tribute), 22revenue_type (workfront.versions.v40.Task attribute),

115revenue_type (workfront.versions.v40.TemplateTask at-

tribute), 126revenue_type (workfront.versions.v40.Work attribute),

151revert_lucid_security_migration() (work-

front.versions.unsupported.Customer method),226

review_actions (workfront.versions.unsupported.MetaRecordattribute), 295

review_users (workfront.versions.unsupported.Customerattribute), 226

review_users (workfront.versions.unsupported.LicenseOrderattribute), 290

review_users (workfront.versions.v40.Customer at-tribute), 42

Risk (class in workfront.versions.unsupported), 343Risk (class in workfront.versions.v40), 98risk (workfront.versions.unsupported.Approval attribute),

183risk (workfront.versions.unsupported.Project attribute),

330risk (workfront.versions.unsupported.Template attribute),

377risk (workfront.versions.v40.Approval attribute), 22risk (workfront.versions.v40.Project attribute), 91risk_performance_index (work-

front.versions.unsupported.Approval attribute),183

risk_performance_index (work-front.versions.unsupported.Project attribute),330

risk_performance_index (work-front.versions.v40.Approval attribute), 22

risk_performance_index (workfront.versions.v40.Projectattribute), 91

risk_type (workfront.versions.unsupported.Risk at-tribute), 344

risk_type (workfront.versions.v40.Risk attribute), 98risk_type_id (workfront.versions.unsupported.Risk at-

tribute), 344risk_type_id (workfront.versions.v40.Risk attribute), 98

566 Index

Page 571: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

risk_types (workfront.versions.unsupported.Customer at-tribute), 226

risk_types (workfront.versions.v40.Customer attribute),42

risks (workfront.versions.unsupported.Approval at-tribute), 184

risks (workfront.versions.unsupported.Project attribute),330

risks (workfront.versions.unsupported.Template at-tribute), 377

risks (workfront.versions.v40.Approval attribute), 22risks (workfront.versions.v40.Project attribute), 91risks (workfront.versions.v40.Template attribute), 120RiskType (class in workfront.versions.unsupported), 344RiskType (class in workfront.versions.v40), 99roi (workfront.versions.unsupported.Approval attribute),

184roi (workfront.versions.unsupported.Portfolio attribute),

316roi (workfront.versions.unsupported.Project attribute),

330roi (workfront.versions.v40.Approval attribute), 22roi (workfront.versions.v40.Portfolio attribute), 80roi (workfront.versions.v40.Project attribute), 91Role (class in workfront.versions.unsupported), 345Role (class in workfront.versions.v40), 99role (workfront.versions.unsupported.AnnouncementRecipient

attribute), 167role (workfront.versions.unsupported.Approval attribute),

184role (workfront.versions.unsupported.Assignment at-

tribute), 192role (workfront.versions.unsupported.AwaitingApproval

attribute), 198role (workfront.versions.unsupported.DocumentShare at-

tribute), 246role (workfront.versions.unsupported.Endorsement at-

tribute), 252role (workfront.versions.unsupported.Hour attribute), 268role (workfront.versions.unsupported.Issue attribute), 277role (workfront.versions.unsupported.MasterTask at-

tribute), 293role (workfront.versions.unsupported.ProjectUserRole at-

tribute), 333role (workfront.versions.unsupported.Rate attribute), 337role (workfront.versions.unsupported.ResourceAllocation

attribute), 343role (workfront.versions.unsupported.StepApprover at-

tribute), 358role (workfront.versions.unsupported.Task attribute), 369role (workfront.versions.unsupported.TeamMemberRole

attribute), 373role (workfront.versions.unsupported.TemplateAssignment

attribute), 379

role (workfront.versions.unsupported.TemplateTask at-tribute), 385

role (workfront.versions.unsupported.TemplateUserRoleattribute), 386

role (workfront.versions.unsupported.User attribute), 406role (workfront.versions.unsupported.UserResource at-

tribute), 415role (workfront.versions.unsupported.Work attribute),

426role (workfront.versions.v40.Approval attribute), 22role (workfront.versions.v40.Assignment attribute), 29role (workfront.versions.v40.Hour attribute), 57role (workfront.versions.v40.Issue attribute), 64role (workfront.versions.v40.ProjectUserRole attribute),

93role (workfront.versions.v40.Rate attribute), 96role (workfront.versions.v40.ResourceAllocation at-

tribute), 97role (workfront.versions.v40.StepApprover attribute),

105role (workfront.versions.v40.Task attribute), 115role (workfront.versions.v40.TemplateAssignment

attribute), 122role (workfront.versions.v40.TemplateTask attribute),

126role (workfront.versions.v40.TemplateUserRole at-

tribute), 127role (workfront.versions.v40.User attribute), 139role (workfront.versions.v40.Work attribute), 151role_id (workfront.versions.unsupported.AnnouncementRecipient

attribute), 167role_id (workfront.versions.unsupported.Approval

attribute), 184role_id (workfront.versions.unsupported.Assignment at-

tribute), 192role_id (workfront.versions.unsupported.AwaitingApproval

attribute), 198role_id (workfront.versions.unsupported.DocumentShare

attribute), 246role_id (workfront.versions.unsupported.Endorsement at-

tribute), 252role_id (workfront.versions.unsupported.Hour attribute),

268role_id (workfront.versions.unsupported.Issue attribute),

277role_id (workfront.versions.unsupported.MasterTask at-

tribute), 293role_id (workfront.versions.unsupported.ProjectUserRole

attribute), 333role_id (workfront.versions.unsupported.Rate attribute),

337role_id (workfront.versions.unsupported.ResourceAllocation

attribute), 343role_id (workfront.versions.unsupported.StepApprover

Index 567

Page 572: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

attribute), 358role_id (workfront.versions.unsupported.Task attribute),

369role_id (workfront.versions.unsupported.TeamMemberRole

attribute), 373role_id (workfront.versions.unsupported.TemplateAssignment

attribute), 379role_id (workfront.versions.unsupported.TemplateTask

attribute), 385role_id (workfront.versions.unsupported.TemplateUserRole

attribute), 386role_id (workfront.versions.unsupported.User attribute),

406role_id (workfront.versions.unsupported.Work attribute),

426role_id (workfront.versions.v40.Approval attribute), 23role_id (workfront.versions.v40.Assignment attribute), 29role_id (workfront.versions.v40.Hour attribute), 57role_id (workfront.versions.v40.Issue attribute), 64role_id (workfront.versions.v40.ProjectUserRole at-

tribute), 93role_id (workfront.versions.v40.Rate attribute), 96role_id (workfront.versions.v40.ResourceAllocation at-

tribute), 97role_id (workfront.versions.v40.StepApprover attribute),

105role_id (workfront.versions.v40.Task attribute), 115role_id (workfront.versions.v40.TemplateAssignment at-

tribute), 122role_id (workfront.versions.v40.TemplateTask attribute),

126role_id (workfront.versions.v40.TemplateUserRole at-

tribute), 127role_id (workfront.versions.v40.User attribute), 139role_id (workfront.versions.v40.Work attribute), 151role_ids (workfront.versions.unsupported.ScheduledReport

attribute), 352roles (workfront.versions.unsupported.Approval at-

tribute), 184roles (workfront.versions.unsupported.Customer at-

tribute), 226roles (workfront.versions.unsupported.Project attribute),

330roles (workfront.versions.unsupported.ResourcePool at-

tribute), 343roles (workfront.versions.unsupported.ScheduledReport

attribute), 353roles (workfront.versions.unsupported.Template at-

tribute), 377roles (workfront.versions.unsupported.User attribute),

406roles (workfront.versions.v40.Approval attribute), 23roles (workfront.versions.v40.Customer attribute), 42roles (workfront.versions.v40.Project attribute), 91

roles (workfront.versions.v40.ResourcePool attribute), 98roles (workfront.versions.v40.Template attribute), 121roles (workfront.versions.v40.User attribute), 139rotate_recent_menu() (work-

front.versions.unsupported.RecentMenuItemmethod), 338

routing_rules (workfront.versions.unsupported.Approvalattribute), 184

routing_rules (workfront.versions.unsupported.Project at-tribute), 330

routing_rules (workfront.versions.unsupported.Templateattribute), 378

routing_rules (workfront.versions.v40.Approval at-tribute), 23

routing_rules (workfront.versions.v40.Project attribute),91

routing_rules (workfront.versions.v40.Template at-tribute), 121

RoutingRule (class in workfront.versions.unsupported),346

RoutingRule (class in workfront.versions.v40), 100row_shared (workfront.versions.unsupported.CategoryParameter

attribute), 214row_shared (workfront.versions.v40.CategoryParameter

attribute), 36rule_type (workfront.versions.unsupported.CategoryCascadeRule

attribute), 212run_as_user (workfront.versions.unsupported.CalendarInfo

attribute), 207run_as_user (workfront.versions.unsupported.PortalSection

attribute), 311run_as_user (workfront.versions.unsupported.ScheduledReport

attribute), 353run_as_user_id (workfront.versions.unsupported.CalendarInfo

attribute), 207run_as_user_id (workfront.versions.unsupported.PortalSection

attribute), 311run_as_user_id (workfront.versions.unsupported.ScheduledReport

attribute), 353run_as_user_type_ahead (work-

front.versions.unsupported.ScheduledReportattribute), 353

running_jobs_count() (work-front.versions.unsupported.BackgroundJobmethod), 199

SS3Migration (class in workfront.versions.unsupported),

347sandbox_count (workfront.versions.unsupported.Customer

attribute), 226sandbox_count (workfront.versions.v40.Customer

attribute), 42

568 Index

Page 573: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

sandbox_refreshing (work-front.versions.unsupported.Customer attribute),226

sandbox_refreshing (workfront.versions.v40.Customerattribute), 42

SANDBOX_TEMPLATE (in module workfront.session),8

sandbox_type (workfront.versions.unsupported.SandboxMigrationattribute), 350

SandboxMigration (class in work-front.versions.unsupported), 349

saturday (workfront.versions.unsupported.Schedule at-tribute), 351

saturday (workfront.versions.v40.Schedule attribute), 102save() (workfront.meta.Object method), 9save_document_metadata() (work-

front.versions.unsupported.Document method),236

save_external_browse_location() (work-front.versions.unsupported.ExternalDocumentmethod), 261

save_project_as_template() (work-front.versions.unsupported.Project method),331

sched_time (workfront.versions.unsupported.ScheduledReportattribute), 353

Schedule (class in workfront.versions.unsupported), 350Schedule (class in workfront.versions.v40), 101schedule (workfront.versions.unsupported.Approval at-

tribute), 184schedule (workfront.versions.unsupported.NonWorkDay

attribute), 296schedule (workfront.versions.unsupported.Project at-

tribute), 331schedule (workfront.versions.unsupported.RecurrenceRule

attribute), 340schedule (workfront.versions.unsupported.ScheduledReport

attribute), 353schedule (workfront.versions.unsupported.Team at-

tribute), 372schedule (workfront.versions.unsupported.Template at-

tribute), 378schedule (workfront.versions.unsupported.User at-

tribute), 406schedule (workfront.versions.v40.Approval attribute), 23schedule (workfront.versions.v40.NonWorkDay at-

tribute), 72schedule (workfront.versions.v40.Project attribute), 91schedule (workfront.versions.v40.User attribute), 139schedule_date (workfront.versions.unsupported.SandboxMigration

attribute), 350schedule_day (workfront.versions.unsupported.NonWorkDay

attribute), 296schedule_day (workfront.versions.v40.NonWorkDay at-

tribute), 72schedule_id (workfront.versions.unsupported.Approval

attribute), 184schedule_id (workfront.versions.unsupported.NonWorkDay

attribute), 296schedule_id (workfront.versions.unsupported.Project at-

tribute), 331schedule_id (workfront.versions.unsupported.RecurrenceRule

attribute), 340schedule_id (workfront.versions.unsupported.Team at-

tribute), 372schedule_id (workfront.versions.unsupported.Template

attribute), 378schedule_id (workfront.versions.unsupported.User

attribute), 406schedule_id (workfront.versions.v40.Approval attribute),

23schedule_id (workfront.versions.v40.NonWorkDay at-

tribute), 72schedule_id (workfront.versions.v40.Project attribute), 91schedule_id (workfront.versions.v40.User attribute), 139schedule_migration() (work-

front.versions.unsupported.SandboxMigrationmethod), 350

schedule_mode (workfront.versions.unsupported.Approvalattribute), 184

schedule_mode (workfront.versions.unsupported.Projectattribute), 331

schedule_mode (workfront.versions.unsupported.Templateattribute), 378

schedule_mode (workfront.versions.v40.Approvalattribute), 23

schedule_mode (workfront.versions.v40.Project at-tribute), 91

schedule_mode (workfront.versions.v40.Templateattribute), 121

schedule_start (workfront.versions.unsupported.ScheduledReportattribute), 353

scheduled_date (workfront.versions.unsupported.NotificationRecordattribute), 302

scheduled_hours (work-front.versions.unsupported.ResourceAllocationattribute), 343

scheduled_hours (work-front.versions.v40.ResourceAllocation at-tribute), 97

scheduled_report (work-front.versions.unsupported.PortalSectionattribute), 311

scheduled_report_id (work-front.versions.unsupported.PortalSectionattribute), 311

scheduled_reports (work-front.versions.unsupported.PortalSection

Index 569

Page 574: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

attribute), 311ScheduledReport (class in work-

front.versions.unsupported), 352schedules (workfront.versions.unsupported.Customer at-

tribute), 226schedules (workfront.versions.v40.Customer attribute),

42scope (workfront.versions.unsupported.HourType at-

tribute), 269scope (workfront.versions.v40.HourType attribute), 58scope_expression (work-

front.versions.unsupported.AccessScopeattribute), 161

scope_obj_code (work-front.versions.unsupported.AccessScopeattribute), 161

scope_obj_code (work-front.versions.unsupported.AccessScopeActionattribute), 162

score (workfront.versions.unsupported.CustomerFeedbackattribute), 228

score_card (workfront.versions.unsupported.ScoreCardAnswerattribute), 355

score_card (workfront.versions.unsupported.ScoreCardQuestionattribute), 356

score_card (workfront.versions.v40.ScoreCardAnswer at-tribute), 104

score_card (workfront.versions.v40.ScoreCardQuestionattribute), 105

score_card_id (workfront.versions.unsupported.ScoreCardAnswerattribute), 355

score_card_id (workfront.versions.unsupported.ScoreCardQuestionattribute), 356

score_card_id (workfront.versions.v40.ScoreCardAnswerattribute), 104

score_card_id (workfront.versions.v40.ScoreCardQuestionattribute), 105

score_card_option (work-front.versions.unsupported.ScoreCardAnswerattribute), 355

score_card_option (work-front.versions.v40.ScoreCardAnswer attribute),104

score_card_option_id (work-front.versions.unsupported.ScoreCardAnswerattribute), 355

score_card_option_id (work-front.versions.v40.ScoreCardAnswer attribute),104

score_card_options (work-front.versions.unsupported.ScoreCardQuestionattribute), 356

score_card_options (work-front.versions.v40.ScoreCardQuestion at-

tribute), 105score_card_question (work-

front.versions.unsupported.ScoreCardAnswerattribute), 355

score_card_question (work-front.versions.unsupported.ScoreCardOptionattribute), 356

score_card_question (work-front.versions.v40.ScoreCardAnswer attribute),104

score_card_question (work-front.versions.v40.ScoreCardOption attribute),104

score_card_question_id (work-front.versions.unsupported.ScoreCardAnswerattribute), 355

score_card_question_id (work-front.versions.unsupported.ScoreCardOptionattribute), 356

score_card_question_id (work-front.versions.v40.ScoreCardAnswer attribute),104

score_card_question_id (work-front.versions.v40.ScoreCardOption attribute),104

score_card_questions (work-front.versions.unsupported.ScoreCard at-tribute), 354

score_card_questions (workfront.versions.v40.ScoreCardattribute), 103

score_cards (workfront.versions.unsupported.Customerattribute), 226

score_cards (workfront.versions.v40.Customer attribute),42

ScoreCard (class in workfront.versions.unsupported), 353ScoreCard (class in workfront.versions.v40), 102ScoreCardAnswer (class in work-

front.versions.unsupported), 355ScoreCardAnswer (class in workfront.versions.v40), 103ScoreCardOption (class in work-

front.versions.unsupported), 355ScoreCardOption (class in workfront.versions.v40), 104ScoreCardQuestion (class in work-

front.versions.unsupported), 356ScoreCardQuestion (class in workfront.versions.v40),

104script_expression (work-

front.versions.unsupported.AppEvent at-tribute), 168

scrolling (workfront.versions.unsupported.ExternalSectionattribute), 263

search() (workfront.Session method), 7search_attribute (work-

front.versions.unsupported.SSOOption at-

570 Index

Page 575: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

tribute), 348search_base (workfront.versions.unsupported.SSOOption

attribute), 348SearchEvent (class in workfront.versions.unsupported),

356secondary_actions (work-

front.versions.unsupported.AccessLevelPermissionsattribute), 157

secondary_actions (work-front.versions.unsupported.AccessRule at-tribute), 160

secondary_actions (work-front.versions.unsupported.AccessRulePreferenceattribute), 160

secondary_actions (workfront.versions.v40.AccessRuleattribute), 10

section_id (workfront.versions.unsupported.CustsSectionsattribute), 229

section_id (workfront.versions.unsupported.UsersSectionsattribute), 416

security_ancestors (work-front.versions.unsupported.Approval attribute),184

security_ancestors (work-front.versions.unsupported.CalendarInfoattribute), 207

security_ancestors (work-front.versions.unsupported.Document at-tribute), 236

security_ancestors (workfront.versions.unsupported.Issueattribute), 277

security_ancestors (work-front.versions.unsupported.PortalSectionattribute), 311

security_ancestors (work-front.versions.unsupported.Program attribute),319

security_ancestors (work-front.versions.unsupported.Project attribute),331

security_ancestors (workfront.versions.unsupported.Taskattribute), 369

security_ancestors (work-front.versions.unsupported.Work attribute),426

security_ancestors_disabled (work-front.versions.unsupported.Approval attribute),184

security_ancestors_disabled (work-front.versions.unsupported.CalendarInfoattribute), 207

security_ancestors_disabled (work-front.versions.unsupported.Document at-tribute), 236

security_ancestors_disabled (work-front.versions.unsupported.Issue attribute),277

security_ancestors_disabled (work-front.versions.unsupported.PortalSectionattribute), 311

security_ancestors_disabled (work-front.versions.unsupported.Program attribute),319

security_ancestors_disabled (work-front.versions.unsupported.Project attribute),331

security_ancestors_disabled (work-front.versions.unsupported.Task attribute),369

security_ancestors_disabled (work-front.versions.unsupported.Work attribute),427

security_level (workfront.versions.unsupported.CategoryParameterattribute), 214

security_level (workfront.versions.v40.CategoryParameterattribute), 36

security_model_type (work-front.versions.unsupported.AccessLevelattribute), 157

security_model_type (work-front.versions.unsupported.Customer attribute),226

security_model_type (workfront.versions.v40.Customerattribute), 42

security_obj_code (work-front.versions.unsupported.AccessRule at-tribute), 160

security_obj_code (work-front.versions.unsupported.AccessRulePreferenceattribute), 160

security_obj_code (workfront.versions.v40.AccessRuleattribute), 10

security_obj_id (workfront.versions.unsupported.AccessRuleattribute), 160

security_obj_id (workfront.versions.v40.AccessRule at-tribute), 10

security_root_id (work-front.versions.unsupported.Approval attribute),184

security_root_id (work-front.versions.unsupported.ApprovalProcessattribute), 188

security_root_id (work-front.versions.unsupported.Assignment at-tribute), 192

security_root_id (work-front.versions.unsupported.CalendarInfoattribute), 207

Index 571

Page 576: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

security_root_id (work-front.versions.unsupported.Document at-tribute), 237

security_root_id (work-front.versions.unsupported.DocumentFolderattribute), 241

security_root_id (work-front.versions.unsupported.DocumentRequestattribute), 245

security_root_id (work-front.versions.unsupported.ExchangeRateattribute), 256

security_root_id (work-front.versions.unsupported.Expense attribute),258

security_root_id (workfront.versions.unsupported.Hourattribute), 268

security_root_id (workfront.versions.unsupported.Issueattribute), 277

security_root_id (work-front.versions.unsupported.JournalEntryattribute), 284

security_root_id (workfront.versions.unsupported.Noteattribute), 300

security_root_id (work-front.versions.unsupported.PortalSectionattribute), 312

security_root_id (work-front.versions.unsupported.Program attribute),319

security_root_id (work-front.versions.unsupported.QueueDef at-tribute), 334

security_root_id (workfront.versions.unsupported.Rateattribute), 337

security_root_id (work-front.versions.unsupported.ResourceAllocationattribute), 343

security_root_id (workfront.versions.unsupported.Riskattribute), 344

security_root_id (work-front.versions.unsupported.RoutingRuleattribute), 346

security_root_id (work-front.versions.unsupported.ScoreCard at-tribute), 354

security_root_id (work-front.versions.unsupported.SharingSettingsattribute), 358

security_root_id (workfront.versions.unsupported.Taskattribute), 369

security_root_id (work-front.versions.unsupported.UIFilter attribute),392

security_root_id (work-front.versions.unsupported.UIGroupBy at-tribute), 394

security_root_id (work-front.versions.unsupported.UIView attribute),396

security_root_id (workfront.versions.unsupported.Workattribute), 427

security_root_id (work-front.versions.unsupported.WorkItem at-tribute), 430

security_root_id (workfront.versions.v40.Approval at-tribute), 23

security_root_id (work-front.versions.v40.ApprovalProcess attribute),26

security_root_id (workfront.versions.v40.Assignment at-tribute), 29

security_root_id (workfront.versions.v40.Document at-tribute), 46

security_root_id (work-front.versions.v40.DocumentFolder attribute),48

security_root_id (workfront.versions.v40.Expenseattribute), 52

security_root_id (workfront.versions.v40.Hour attribute),57

security_root_id (workfront.versions.v40.Issue attribute),64

security_root_id (workfront.versions.v40.JournalEntryattribute), 69

security_root_id (workfront.versions.v40.Note attribute),75

security_root_id (workfront.versions.v40.Programattribute), 82

security_root_id (workfront.versions.v40.QueueDef at-tribute), 94

security_root_id (workfront.versions.v40.Rate attribute),96

security_root_id (work-front.versions.v40.ResourceAllocation at-tribute), 97

security_root_id (workfront.versions.v40.Risk attribute),99

security_root_id (workfront.versions.v40.RoutingRuleattribute), 100

security_root_id (workfront.versions.v40.ScoreCard at-tribute), 103

security_root_id (workfront.versions.v40.Task attribute),115

security_root_id (workfront.versions.v40.UIFilter at-tribute), 130

security_root_id (workfront.versions.v40.UIGroupBy at-tribute), 131

572 Index

Page 577: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

security_root_id (workfront.versions.v40.UIView at-tribute), 133

security_root_id (workfront.versions.v40.Work attribute),151

security_root_id (workfront.versions.v40.WorkItem at-tribute), 153

security_root_obj_code (work-front.versions.unsupported.Approval attribute),184

security_root_obj_code (work-front.versions.unsupported.ApprovalProcessattribute), 188

security_root_obj_code (work-front.versions.unsupported.Assignment at-tribute), 192

security_root_obj_code (work-front.versions.unsupported.CalendarInfoattribute), 207

security_root_obj_code (work-front.versions.unsupported.Document at-tribute), 237

security_root_obj_code (work-front.versions.unsupported.DocumentFolderattribute), 241

security_root_obj_code (work-front.versions.unsupported.DocumentRequestattribute), 245

security_root_obj_code (work-front.versions.unsupported.ExchangeRateattribute), 256

security_root_obj_code (work-front.versions.unsupported.Expense attribute),258

security_root_obj_code (work-front.versions.unsupported.Hour attribute),268

security_root_obj_code (work-front.versions.unsupported.Issue attribute),278

security_root_obj_code (work-front.versions.unsupported.JournalEntryattribute), 284

security_root_obj_code (work-front.versions.unsupported.Note attribute),300

security_root_obj_code (work-front.versions.unsupported.PortalSectionattribute), 312

security_root_obj_code (work-front.versions.unsupported.Program attribute),319

security_root_obj_code (work-front.versions.unsupported.QueueDef at-tribute), 334

security_root_obj_code (work-front.versions.unsupported.Rate attribute),337

security_root_obj_code (work-front.versions.unsupported.ResourceAllocationattribute), 343

security_root_obj_code (work-front.versions.unsupported.Risk attribute),344

security_root_obj_code (work-front.versions.unsupported.RoutingRuleattribute), 346

security_root_obj_code (work-front.versions.unsupported.ScoreCard at-tribute), 354

security_root_obj_code (work-front.versions.unsupported.SharingSettingsattribute), 358

security_root_obj_code (work-front.versions.unsupported.Task attribute),369

security_root_obj_code (work-front.versions.unsupported.UIFilter attribute),392

security_root_obj_code (work-front.versions.unsupported.UIGroupBy at-tribute), 394

security_root_obj_code (work-front.versions.unsupported.UIView attribute),396

security_root_obj_code (work-front.versions.unsupported.Work attribute),427

security_root_obj_code (work-front.versions.unsupported.WorkItem at-tribute), 430

security_root_obj_code (work-front.versions.v40.Approval attribute), 23

security_root_obj_code (work-front.versions.v40.ApprovalProcess attribute),26

security_root_obj_code (work-front.versions.v40.Assignment attribute),29

security_root_obj_code (work-front.versions.v40.Document attribute), 46

security_root_obj_code (work-front.versions.v40.DocumentFolder attribute),48

security_root_obj_code (workfront.versions.v40.Expenseattribute), 52

security_root_obj_code (workfront.versions.v40.Hour at-tribute), 57

security_root_obj_code (workfront.versions.v40.Issue at-

Index 573

Page 578: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

tribute), 64security_root_obj_code (work-

front.versions.v40.JournalEntry attribute),69

security_root_obj_code (workfront.versions.v40.Note at-tribute), 75

security_root_obj_code (workfront.versions.v40.Programattribute), 82

security_root_obj_code (work-front.versions.v40.QueueDef attribute), 94

security_root_obj_code (workfront.versions.v40.Rate at-tribute), 96

security_root_obj_code (work-front.versions.v40.ResourceAllocation at-tribute), 97

security_root_obj_code (workfront.versions.v40.Risk at-tribute), 99

security_root_obj_code (work-front.versions.v40.RoutingRule attribute),100

security_root_obj_code (work-front.versions.v40.ScoreCard attribute),103

security_root_obj_code (workfront.versions.v40.Task at-tribute), 115

security_root_obj_code (workfront.versions.v40.UIFilterattribute), 130

security_root_obj_code (work-front.versions.v40.UIGroupBy attribute),132

security_root_obj_code (workfront.versions.v40.UIViewattribute), 133

security_root_obj_code (workfront.versions.v40.Work at-tribute), 151

security_root_obj_code (work-front.versions.v40.WorkItem attribute), 153

SecurityAncestor (class in work-front.versions.unsupported), 357

selected_on_portfolio_optimizer (work-front.versions.unsupported.Approval attribute),184

selected_on_portfolio_optimizer (work-front.versions.unsupported.Project attribute),331

selected_on_portfolio_optimizer (work-front.versions.v40.Approval attribute), 23

selected_on_portfolio_optimizer (work-front.versions.v40.Project attribute), 91

send_documents_to_external_provider() (work-front.versions.unsupported.Document method),237

send_draft (workfront.versions.unsupported.Announcementattribute), 165

send_folder_to_external_provider() (work-

front.versions.unsupported.DocumentFoldermethod), 241

send_invitation_email() (work-front.versions.unsupported.User method),406

send_invitation_email() (workfront.versions.v40.Usermethod), 140

send_now() (workfront.versions.unsupported.PortalSectionmethod), 312

send_report_delivery_now() (work-front.versions.unsupported.ScheduledReportmethod), 353

send_test_email() (work-front.versions.unsupported.Email method),249

seq_name (workfront.versions.unsupported.Sequence at-tribute), 357

seq_value (workfront.versions.unsupported.Sequence at-tribute), 357

Sequence (class in workfront.versions.unsupported), 357sequence (workfront.versions.unsupported.Milestone at-

tribute), 295sequence (workfront.versions.v40.Milestone attribute),

71sequence_number (work-

front.versions.unsupported.ApprovalStepattribute), 189

sequence_number (workfront.versions.v40.ApprovalStepattribute), 27

service_name (workfront.versions.unsupported.DocumentTaskStatusattribute), 247

Session (class in workfront), 6session_id (workfront.versions.unsupported.AuditLoginAsSession

attribute), 193set() (workfront.versions.unsupported.UserObjectPref

method), 413set_access_rule_preferences() (work-

front.versions.unsupported.AccessLevelmethod), 157

set_access_rule_preferences() (work-front.versions.unsupported.Template method),378

set_access_rule_preferences() (work-front.versions.unsupported.User method),406

set_budget_to_schedule() (work-front.versions.unsupported.Project method),331

set_budget_to_schedule() (work-front.versions.v40.Project method), 91

set_custom_enums() (work-front.versions.unsupported.CustomEnummethod), 216

set_custom_subject() (work-

574 Index

Page 579: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

front.versions.unsupported.EventHandlermethod), 255

set_exclusions() (work-front.versions.unsupported.Customer method),226

set_inactive_notifications_value() (work-front.versions.unsupported.UserPrefValuemethod), 414

set_is_custom_quarter_enabled() (work-front.versions.unsupported.Customer method),226

set_is_white_list_ipenabled() (work-front.versions.unsupported.Customer method),226

set_journal_fields_for_obj_code() (work-front.versions.unsupported.JournalFieldmethod), 285

set_lucid_migration_enabled() (work-front.versions.unsupported.Customer method),226

set_preference() (work-front.versions.unsupported.CustomerPreferencesmethod), 229

setup_google_drive_push_notifications() (work-front.versions.unsupported.Document method),237

severity (workfront.versions.unsupported.Approval at-tribute), 184

severity (workfront.versions.unsupported.Issue attribute),278

severity (workfront.versions.unsupported.Work attribute),427

severity (workfront.versions.v40.Approval attribute), 23severity (workfront.versions.v40.Issue attribute), 64severity (workfront.versions.v40.Work attribute), 151share_mode (workfront.versions.unsupported.QueueDef

attribute), 334shares (workfront.versions.unsupported.Document

attribute), 237shares (workfront.versions.unsupported.Endorsement at-

tribute), 252sharing_settings (work-

front.versions.unsupported.Approval attribute),184

sharing_settings (workfront.versions.unsupported.Projectattribute), 331

sharing_settings (work-front.versions.unsupported.Template attribute),378

SharingSettings (class in work-front.versions.unsupported), 357

should_create_issue (work-front.versions.unsupported.ApprovalPathattribute), 187

should_create_issue (work-front.versions.v40.ApprovalPath attribute),25

show_commit_date (work-front.versions.unsupported.Approval attribute),184

show_commit_date (work-front.versions.unsupported.Issue attribute),278

show_commit_date (work-front.versions.unsupported.Task attribute),369

show_commit_date (work-front.versions.unsupported.Work attribute),427

show_condition (work-front.versions.unsupported.Approval attribute),184

show_condition (workfront.versions.unsupported.Issueattribute), 278

show_condition (workfront.versions.unsupported.Projectattribute), 331

show_condition (workfront.versions.unsupported.Taskattribute), 369

show_condition (workfront.versions.unsupported.Workattribute), 427

show_external_thumbnails() (work-front.versions.unsupported.ExternalDocumentmethod), 261

show_prompts (workfront.versions.unsupported.PortalSectionattribute), 312

show_status (workfront.versions.unsupported.Approvalattribute), 184

show_status (workfront.versions.unsupported.Issue at-tribute), 278

show_status (workfront.versions.unsupported.Project at-tribute), 331

show_status (workfront.versions.unsupported.Taskattribute), 369

show_status (workfront.versions.unsupported.Work at-tribute), 427

signout_url (workfront.versions.unsupported.SSOOptionattribute), 348

size (workfront.versions.unsupported.ExternalDocumentattribute), 261

slack_date (workfront.versions.unsupported.Approval at-tribute), 184

slack_date (workfront.versions.unsupported.Task at-tribute), 369

slack_date (workfront.versions.unsupported.Work at-tribute), 427

slack_date (workfront.versions.v40.Approval attribute),23

slack_date (workfront.versions.v40.Task attribute), 115

Index 575

Page 580: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

slack_date (workfront.versions.v40.Work attribute), 151snooze_date (workfront.versions.unsupported.WorkItem

attribute), 430snooze_date (workfront.versions.v40.WorkItem at-

tribute), 153sort_by (workfront.versions.unsupported.PortalSection

attribute), 312sort_by2 (workfront.versions.unsupported.PortalSection

attribute), 312sort_by3 (workfront.versions.unsupported.PortalSection

attribute), 312sort_type (workfront.versions.unsupported.PortalSection

attribute), 312sort_type2 (workfront.versions.unsupported.PortalSection

attribute), 312sort_type3 (workfront.versions.unsupported.PortalSection

attribute), 312source_obj_code (work-

front.versions.unsupported.Approval attribute),184

source_obj_code (workfront.versions.unsupported.Issueattribute), 278

source_obj_code (workfront.versions.unsupported.Workattribute), 427

source_obj_code (workfront.versions.v40.Approval at-tribute), 23

source_obj_code (workfront.versions.v40.Issue at-tribute), 64

source_obj_code (workfront.versions.v40.Work at-tribute), 151

source_obj_id (workfront.versions.unsupported.Approvalattribute), 185

source_obj_id (workfront.versions.unsupported.Issue at-tribute), 278

source_obj_id (workfront.versions.unsupported.Work at-tribute), 427

source_obj_id (workfront.versions.v40.Approval at-tribute), 23

source_obj_id (workfront.versions.v40.Issue attribute),64

source_obj_id (workfront.versions.v40.Work attribute),151

source_task (workfront.versions.unsupported.Approvalattribute), 185

source_task (workfront.versions.unsupported.Issueattribute), 278

source_task (workfront.versions.unsupported.Work at-tribute), 427

source_task (workfront.versions.v40.Approval attribute),23

source_task (workfront.versions.v40.Issue attribute), 64source_task (workfront.versions.v40.Work attribute), 151source_task_id (workfront.versions.unsupported.Approval

attribute), 185

source_task_id (workfront.versions.unsupported.Issue at-tribute), 278

source_task_id (workfront.versions.unsupported.Work at-tribute), 427

source_task_id (workfront.versions.v40.Approval at-tribute), 23

source_task_id (workfront.versions.v40.Issue attribute),64

source_task_id (workfront.versions.v40.Work attribute),151

special_view (workfront.versions.unsupported.PortalSectionattribute), 312

spi (workfront.versions.unsupported.Approval attribute),185

spi (workfront.versions.unsupported.Baseline attribute),201

spi (workfront.versions.unsupported.BaselineTask at-tribute), 202

spi (workfront.versions.unsupported.Project attribute),331

spi (workfront.versions.unsupported.Task attribute), 369spi (workfront.versions.unsupported.Work attribute), 427spi (workfront.versions.v40.Approval attribute), 23spi (workfront.versions.v40.Baseline attribute), 32spi (workfront.versions.v40.BaselineTask attribute), 33spi (workfront.versions.v40.Project attribute), 91spi (workfront.versions.v40.Task attribute), 115spi (workfront.versions.v40.Work attribute), 151sponsor (workfront.versions.unsupported.Approval at-

tribute), 185sponsor (workfront.versions.unsupported.Project at-

tribute), 331sponsor (workfront.versions.unsupported.Template at-

tribute), 378sponsor (workfront.versions.v40.Approval attribute), 23sponsor (workfront.versions.v40.Project attribute), 91sponsor_id (workfront.versions.unsupported.Approval at-

tribute), 185sponsor_id (workfront.versions.unsupported.Project at-

tribute), 331sponsor_id (workfront.versions.unsupported.Template at-

tribute), 378sponsor_id (workfront.versions.v40.Approval attribute),

23sponsor_id (workfront.versions.v40.Project attribute), 92sso_access_only (workfront.versions.unsupported.User

attribute), 406sso_access_only (workfront.versions.v40.User attribute),

140sso_mapping_id (work-

front.versions.unsupported.SSOMappingRuleattribute), 348

sso_mappings (workfront.versions.unsupported.SSOOptionattribute), 349

576 Index

Page 581: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

sso_option (workfront.versions.unsupported.Customerattribute), 226

sso_option_id (workfront.versions.unsupported.SSOMappingattribute), 347

sso_type (workfront.versions.unsupported.Customer at-tribute), 226

sso_type (workfront.versions.v40.Customer attribute), 42sso_username (workfront.versions.unsupported.User at-

tribute), 406sso_username (workfront.versions.v40.User attribute),

140ssoenabled (workfront.versions.unsupported.SSOOption

attribute), 349SSOMapping (class in workfront.versions.unsupported),

347SSOMappingRule (class in work-

front.versions.unsupported), 347SSOOption (class in workfront.versions.unsupported),

348SSOUsername (class in workfront.versions.unsupported),

349start_date (workfront.versions.unsupported.AuditLoginAsSession

attribute), 193start_date (workfront.versions.unsupported.BackgroundJob

attribute), 199start_date (workfront.versions.unsupported.CalendarEvent

attribute), 205start_date (workfront.versions.unsupported.CalendarFeedEntry

attribute), 206start_date (workfront.versions.unsupported.CalendarSection

attribute), 209start_date (workfront.versions.unsupported.CustomerTimelineCalc

attribute), 229start_date (workfront.versions.unsupported.CustomQuarter

attribute), 219start_date (workfront.versions.unsupported.Iteration at-

tribute), 280start_date (workfront.versions.unsupported.RecurrenceRule

attribute), 340start_date (workfront.versions.unsupported.ReservedTime

attribute), 342start_date (workfront.versions.unsupported.SandboxMigration

attribute), 350start_date (workfront.versions.unsupported.ScheduledReport

attribute), 353start_date (workfront.versions.unsupported.Timesheet at-

tribute), 388start_date (workfront.versions.unsupported.UserDelegation

attribute), 409start_date (workfront.versions.unsupported.WhatsNew

attribute), 417start_date (workfront.versions.v40.BackgroundJob

attribute), 30start_date (workfront.versions.v40.Iteration attribute), 66

start_date (workfront.versions.v40.ReservedTime at-tribute), 96

start_date (workfront.versions.v40.Timesheet attribute),128

start_day (workfront.versions.unsupported.Template at-tribute), 378

start_day (workfront.versions.unsupported.TemplateTaskattribute), 385

start_day (workfront.versions.v40.Template attribute),121

start_day (workfront.versions.v40.TemplateTask at-tribute), 126

start_idx (workfront.versions.unsupported.NoteTag at-tribute), 301

start_idx (workfront.versions.v40.NoteTag attribute), 76start_kick_start_download() (work-

front.versions.unsupported.BackgroundJobmethod), 199

start_range (workfront.versions.unsupported.IPRange at-tribute), 270

state (workfront.versions.unsupported.Customer at-tribute), 226

state (workfront.versions.unsupported.Reseller attribute),341

state (workfront.versions.unsupported.User attribute),406

state (workfront.versions.v40.Customer attribute), 42state (workfront.versions.v40.User attribute), 140status (workfront.versions.unsupported.AccessRequest

attribute), 159status (workfront.versions.unsupported.Approval at-

tribute), 185status (workfront.versions.unsupported.ApproverStatus

attribute), 190status (workfront.versions.unsupported.Assignment at-

tribute), 192status (workfront.versions.unsupported.BackgroundJob

attribute), 200status (workfront.versions.unsupported.BillingRecord at-

tribute), 203status (workfront.versions.unsupported.CalendarFeedEntry

attribute), 206status (workfront.versions.unsupported.Customer at-

tribute), 226status (workfront.versions.unsupported.DocumentApproval

attribute), 239status (workfront.versions.unsupported.DocumentRequest

attribute), 245status (workfront.versions.unsupported.DocumentTaskStatus

attribute), 247status (workfront.versions.unsupported.EventSubscription

attribute), 255status (workfront.versions.unsupported.Hour attribute),

268

Index 577

Page 582: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

status (workfront.versions.unsupported.Issue attribute),278

status (workfront.versions.unsupported.Iteration at-tribute), 280

status (workfront.versions.unsupported.Project attribute),331

status (workfront.versions.unsupported.Risk attribute),344

status (workfront.versions.unsupported.S3Migration at-tribute), 347

status (workfront.versions.unsupported.SandboxMigrationattribute), 350

status (workfront.versions.unsupported.Task attribute),369

status (workfront.versions.unsupported.Timesheet at-tribute), 388

status (workfront.versions.unsupported.Work attribute),427

status (workfront.versions.v40.Approval attribute), 23status (workfront.versions.v40.ApproverStatus attribute),

28status (workfront.versions.v40.Assignment attribute), 29status (workfront.versions.v40.BackgroundJob attribute),

30status (workfront.versions.v40.BillingRecord attribute),

34status (workfront.versions.v40.Customer attribute), 42status (workfront.versions.v40.DocumentApproval

attribute), 47status (workfront.versions.v40.Hour attribute), 57status (workfront.versions.v40.Issue attribute), 64status (workfront.versions.v40.Iteration attribute), 66status (workfront.versions.v40.Project attribute), 92status (workfront.versions.v40.Risk attribute), 99status (workfront.versions.v40.Task attribute), 115status (workfront.versions.v40.Timesheet attribute), 128status (workfront.versions.v40.Work attribute), 151status_date (workfront.versions.unsupported.DocumentTaskStatus

attribute), 247status_equates_with (work-

front.versions.unsupported.Approval attribute),185

status_equates_with (work-front.versions.unsupported.Task attribute),369

status_equates_with (work-front.versions.unsupported.Work attribute),427

status_equates_with (workfront.versions.v40.Approvalattribute), 23

status_equates_with (workfront.versions.v40.Task at-tribute), 115

status_equates_with (workfront.versions.v40.Work at-tribute), 151

status_update (workfront.versions.unsupported.Approvalattribute), 185

status_update (workfront.versions.unsupported.Issue at-tribute), 278

status_update (workfront.versions.unsupported.Projectattribute), 331

status_update (workfront.versions.unsupported.Task at-tribute), 369

status_update (workfront.versions.unsupported.User at-tribute), 406

status_update (workfront.versions.unsupported.Work at-tribute), 427

status_update (workfront.versions.v40.Approval at-tribute), 23

status_update (workfront.versions.v40.Issue attribute), 64status_update (workfront.versions.v40.Project attribute),

92status_update (workfront.versions.v40.Task attribute),

115status_update (workfront.versions.v40.User attribute),

140status_update (workfront.versions.v40.Work attribute),

151step_approver (workfront.versions.unsupported.ApproverStatus

attribute), 190step_approver (workfront.versions.v40.ApproverStatus

attribute), 28step_approver_id (work-

front.versions.unsupported.ApproverStatusattribute), 190

step_approver_id (work-front.versions.v40.ApproverStatus attribute),28

step_approvers (workfront.versions.unsupported.ApprovalStepattribute), 189

step_approvers (workfront.versions.v40.ApprovalStep at-tribute), 27

StepApprover (class in workfront.versions.unsupported),358

StepApprover (class in workfront.versions.v40), 105style_sheet (workfront.versions.unsupported.Customer

attribute), 227style_sheet (workfront.versions.v40.Customer attribute),

42styled_message (workfront.versions.unsupported.Update

attribute), 398styled_message (workfront.versions.v40.Update at-

tribute), 134sub_message (workfront.versions.unsupported.Update at-

tribute), 398sub_message (workfront.versions.v40.Update attribute),

134sub_message_args (work-

front.versions.unsupported.Update attribute),

578 Index

Page 583: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

398sub_message_args (workfront.versions.v40.Update at-

tribute), 134sub_obj_code (workfront.versions.unsupported.CustomEnumOrder

attribute), 217sub_obj_code (workfront.versions.unsupported.Endorsement

attribute), 252sub_obj_code (workfront.versions.unsupported.JournalEntry

attribute), 284sub_obj_code (workfront.versions.unsupported.Update

attribute), 398sub_obj_code (workfront.versions.v40.JournalEntry at-

tribute), 69sub_obj_code (workfront.versions.v40.Update attribute),

134sub_obj_id (workfront.versions.unsupported.Endorsement

attribute), 252sub_obj_id (workfront.versions.unsupported.JournalEntry

attribute), 284sub_obj_id (workfront.versions.unsupported.Update at-

tribute), 398sub_obj_id (workfront.versions.v40.JournalEntry at-

tribute), 69sub_obj_id (workfront.versions.v40.Update attribute),

134sub_reference_object_name (work-

front.versions.unsupported.Endorsementattribute), 252

sub_reference_object_name (work-front.versions.unsupported.JournalEntryattribute), 284

subject (workfront.versions.unsupported.Announcementattribute), 165

subject (workfront.versions.unsupported.EmailTemplateattribute), 251

subject (workfront.versions.unsupported.Note attribute),300

subject (workfront.versions.v40.Note attribute), 75submit_npssurvey() (work-

front.versions.unsupported.User method),407

submitted_by (workfront.versions.unsupported.Approvalattribute), 185

submitted_by (workfront.versions.unsupported.ApprovalProcessAttachableattribute), 189

submitted_by (workfront.versions.unsupported.AwaitingApprovalattribute), 198

submitted_by (workfront.versions.unsupported.Issue at-tribute), 278

submitted_by (workfront.versions.unsupported.Projectattribute), 331

submitted_by (workfront.versions.unsupported.Task at-tribute), 369

submitted_by (workfront.versions.unsupported.Work at-

tribute), 427submitted_by (workfront.versions.v40.Approval at-

tribute), 24submitted_by (workfront.versions.v40.Issue attribute), 64submitted_by (workfront.versions.v40.Project attribute),

92submitted_by (workfront.versions.v40.Task attribute),

115submitted_by (workfront.versions.v40.Work attribute),

151submitted_by_id (work-

front.versions.unsupported.Approval attribute),185

submitted_by_id (work-front.versions.unsupported.ApprovalProcessAttachableattribute), 189

submitted_by_id (work-front.versions.unsupported.AwaitingApprovalattribute), 198

submitted_by_id (workfront.versions.unsupported.Issueattribute), 278

submitted_by_id (work-front.versions.unsupported.Project attribute),331

submitted_by_id (workfront.versions.unsupported.Taskattribute), 369

submitted_by_id (workfront.versions.unsupported.Workattribute), 427

submitted_by_id (workfront.versions.v40.Approval at-tribute), 24

submitted_by_id (workfront.versions.v40.Issue attribute),64

submitted_by_id (workfront.versions.v40.Project at-tribute), 92

submitted_by_id (workfront.versions.v40.Task attribute),115

submitted_by_id (workfront.versions.v40.Work at-tribute), 151

subscribers (workfront.versions.unsupported.Documentattribute), 237

subscribers (workfront.versions.v40.Document attribute),46

successor (workfront.versions.unsupported.Predecessorattribute), 317

successor (workfront.versions.unsupported.TemplatePredecessorattribute), 380

successor (workfront.versions.v40.Predecessor attribute),80

successor (workfront.versions.v40.TemplatePredecessorattribute), 122

successor_id (workfront.versions.unsupported.Predecessorattribute), 317

successor_id (workfront.versions.unsupported.TemplatePredecessorattribute), 380

Index 579

Page 584: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

successor_id (workfront.versions.v40.Predecessor at-tribute), 80

successor_id (workfront.versions.v40.TemplatePredecessorattribute), 122

successors (workfront.versions.unsupported.Approval at-tribute), 185

successors (workfront.versions.unsupported.Task at-tribute), 369

successors (workfront.versions.unsupported.TemplateTaskattribute), 385

successors (workfront.versions.unsupported.Work at-tribute), 427

successors (workfront.versions.v40.Approval attribute),24

successors (workfront.versions.v40.Task attribute), 115successors (workfront.versions.v40.TemplateTask at-

tribute), 126successors (workfront.versions.v40.Work attribute), 151suggest_exchange_rate() (work-

front.versions.unsupported.ExchangeRatemethod), 256

summary (workfront.versions.unsupported.Announcementattribute), 165

summary_completion_type (work-front.versions.unsupported.Approval attribute),185

summary_completion_type (work-front.versions.unsupported.Project attribute),332

summary_completion_type (work-front.versions.unsupported.Template attribute),378

summary_completion_type (work-front.versions.v40.Approval attribute), 24

summary_completion_type (work-front.versions.v40.Project attribute), 92

summary_completion_type (work-front.versions.v40.Template attribute), 121

sunday (workfront.versions.unsupported.Scheduleattribute), 351

sunday (workfront.versions.v40.Schedule attribute), 102

Ttabname (workfront.versions.unsupported.PortalTab at-

tribute), 314tabs (workfront.versions.unsupported.LayoutTemplatePage

attribute), 289tags (workfront.versions.unsupported.Note attribute), 300tags (workfront.versions.v40.Note attribute), 75target (workfront.versions.unsupported.Acknowledgement

attribute), 164target_external_section (work-

front.versions.unsupported.CustomMenuattribute), 218

target_external_section_id (work-front.versions.unsupported.CustomMenuattribute), 218

target_id (workfront.versions.unsupported.Acknowledgementattribute), 164

target_obj_code (work-front.versions.unsupported.CustomMenuattribute), 218

target_obj_id (workfront.versions.unsupported.CustomMenuattribute), 218

target_percent_complete (work-front.versions.unsupported.Iteration attribute),280

target_percent_complete (work-front.versions.v40.Iteration attribute), 66

target_portal_section (work-front.versions.unsupported.CustomMenuattribute), 218

target_portal_section_id (work-front.versions.unsupported.CustomMenuattribute), 218

target_portal_tab (work-front.versions.unsupported.CustomMenuattribute), 218

target_portal_tab_id (work-front.versions.unsupported.CustomMenuattribute), 218

target_status (workfront.versions.unsupported.ApprovalPathattribute), 187

target_status (workfront.versions.v40.ApprovalPath at-tribute), 25

target_status_label (work-front.versions.unsupported.ApprovalPathattribute), 187

target_status_label (work-front.versions.v40.ApprovalPath attribute),26

target_user (workfront.versions.unsupported.AuditLoginAsSessionattribute), 193

target_user_display (work-front.versions.unsupported.AuditLoginAsSessionattribute), 193

target_user_id (workfront.versions.unsupported.AuditLoginAsSessionattribute), 193

Task (class in workfront.versions.unsupported), 359Task (class in workfront.versions.v40), 106task (workfront.versions.unsupported.ApproverStatus at-

tribute), 190task (workfront.versions.unsupported.Assignment at-

tribute), 192task (workfront.versions.unsupported.AwaitingApproval

attribute), 198task (workfront.versions.unsupported.BaselineTask at-

tribute), 203

580 Index

Page 585: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

task (workfront.versions.unsupported.CalendarFeedEntryattribute), 206

task (workfront.versions.unsupported.Document at-tribute), 237

task (workfront.versions.unsupported.DocumentFolderattribute), 241

task (workfront.versions.unsupported.DocumentRequestattribute), 245

task (workfront.versions.unsupported.Endorsement at-tribute), 253

task (workfront.versions.unsupported.Expense attribute),258

task (workfront.versions.unsupported.Hour attribute), 268task (workfront.versions.unsupported.JournalEntry

attribute), 284task (workfront.versions.unsupported.Note attribute), 300task (workfront.versions.unsupported.NotificationRecord

attribute), 302task (workfront.versions.unsupported.ParameterValue at-

tribute), 306task (workfront.versions.unsupported.RecurrenceRule at-

tribute), 340task (workfront.versions.unsupported.ReservedTime at-

tribute), 342task (workfront.versions.unsupported.TimesheetTemplate

attribute), 391task (workfront.versions.unsupported.WatchListEntry at-

tribute), 416task (workfront.versions.unsupported.WorkItem at-

tribute), 430task (workfront.versions.v40.ApproverStatus attribute),

28task (workfront.versions.v40.Assignment attribute), 29task (workfront.versions.v40.BaselineTask attribute), 33task (workfront.versions.v40.Document attribute), 46task (workfront.versions.v40.DocumentFolder attribute),

48task (workfront.versions.v40.Expense attribute), 52task (workfront.versions.v40.Hour attribute), 57task (workfront.versions.v40.JournalEntry attribute), 69task (workfront.versions.v40.Note attribute), 75task (workfront.versions.v40.ReservedTime attribute), 96task (workfront.versions.v40.WorkItem attribute), 153task_assignment_core_action (work-

front.versions.unsupported.SharingSettingsattribute), 358

task_assignment_project_core_action (work-front.versions.unsupported.SharingSettingsattribute), 358

task_assignment_project_secondary_actions (work-front.versions.unsupported.SharingSettingsattribute), 358

task_assignment_secondary_actions (work-front.versions.unsupported.SharingSettings

attribute), 358task_constraint (workfront.versions.unsupported.Approval

attribute), 185task_constraint (workfront.versions.unsupported.Task at-

tribute), 369task_constraint (workfront.versions.unsupported.TemplateTask

attribute), 385task_constraint (workfront.versions.unsupported.Work

attribute), 427task_constraint (workfront.versions.v40.Approval at-

tribute), 24task_constraint (workfront.versions.v40.Task attribute),

115task_constraint (workfront.versions.v40.TemplateTask at-

tribute), 126task_constraint (workfront.versions.v40.Work attribute),

151task_count_limit (work-

front.versions.unsupported.Customer attribute),227

task_count_limit (workfront.versions.v40.Customer at-tribute), 42

task_id (workfront.versions.unsupported.ApproverStatusattribute), 190

task_id (workfront.versions.unsupported.Assignment at-tribute), 192

task_id (workfront.versions.unsupported.AwaitingApprovalattribute), 198

task_id (workfront.versions.unsupported.BaselineTask at-tribute), 203

task_id (workfront.versions.unsupported.CalendarFeedEntryattribute), 206

task_id (workfront.versions.unsupported.Document at-tribute), 237

task_id (workfront.versions.unsupported.DocumentFolderattribute), 241

task_id (workfront.versions.unsupported.DocumentRequestattribute), 245

task_id (workfront.versions.unsupported.Endorsement at-tribute), 253

task_id (workfront.versions.unsupported.Expense at-tribute), 258

task_id (workfront.versions.unsupported.Hour attribute),268

task_id (workfront.versions.unsupported.JournalEntry at-tribute), 284

task_id (workfront.versions.unsupported.Note attribute),300

task_id (workfront.versions.unsupported.NotificationRecordattribute), 302

task_id (workfront.versions.unsupported.ParameterValueattribute), 306

task_id (workfront.versions.unsupported.RecentUpdateattribute), 339

Index 581

Page 586: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

task_id (workfront.versions.unsupported.RecurrenceRuleattribute), 340

task_id (workfront.versions.unsupported.ReservedTimeattribute), 342

task_id (workfront.versions.unsupported.TimesheetTemplateattribute), 391

task_id (workfront.versions.unsupported.WatchListEntryattribute), 416

task_id (workfront.versions.unsupported.WorkItem at-tribute), 430

task_id (workfront.versions.v40.ApproverStatus at-tribute), 28

task_id (workfront.versions.v40.Assignment attribute),29

task_id (workfront.versions.v40.BaselineTask attribute),33

task_id (workfront.versions.v40.Document attribute), 46task_id (workfront.versions.v40.DocumentFolder at-

tribute), 48task_id (workfront.versions.v40.Expense attribute), 52task_id (workfront.versions.v40.Hour attribute), 57task_id (workfront.versions.v40.JournalEntry attribute),

69task_id (workfront.versions.v40.Note attribute), 75task_id (workfront.versions.v40.ReservedTime attribute),

96task_id (workfront.versions.v40.WorkItem attribute), 153task_ids (workfront.versions.unsupported.Iteration

attribute), 281task_ids (workfront.versions.v40.Iteration attribute), 66task_info (workfront.versions.unsupported.DocumentTaskStatus

attribute), 247task_name (workfront.versions.unsupported.RecentUpdate

attribute), 339task_number (workfront.versions.unsupported.Approval

attribute), 185task_number (workfront.versions.unsupported.Task at-

tribute), 370task_number (workfront.versions.unsupported.TemplateTask

attribute), 385task_number (workfront.versions.unsupported.Work at-

tribute), 427task_number (workfront.versions.v40.Approval at-

tribute), 24task_number (workfront.versions.v40.Task attribute), 115task_number (workfront.versions.v40.TemplateTask at-

tribute), 126task_number (workfront.versions.v40.Work attribute),

151task_number_predecessor_string (work-

front.versions.unsupported.Approval attribute),185

task_number_predecessor_string (work-front.versions.unsupported.Task attribute),

370task_number_predecessor_string (work-

front.versions.unsupported.TemplateTaskattribute), 385

task_number_predecessor_string (work-front.versions.unsupported.Work attribute),428

task_number_predecessor_string (work-front.versions.v40.Approval attribute), 24

task_number_predecessor_string (work-front.versions.v40.Task attribute), 115

task_number_predecessor_string (work-front.versions.v40.Work attribute), 152

task_statuses (workfront.versions.unsupported.Team at-tribute), 372

task_statuses (workfront.versions.v40.Team attribute),117

tasks (workfront.versions.unsupported.Approval at-tribute), 185

tasks (workfront.versions.unsupported.Project attribute),332

tasks (workfront.versions.v40.Approval attribute), 24tasks (workfront.versions.v40.Project attribute), 92Team (class in workfront.versions.unsupported), 371Team (class in workfront.versions.v40), 116team (workfront.versions.unsupported.AnnouncementRecipient

attribute), 167team (workfront.versions.unsupported.Approval at-

tribute), 185team (workfront.versions.unsupported.Assignment

attribute), 192team (workfront.versions.unsupported.AwaitingApproval

attribute), 198team (workfront.versions.unsupported.DocumentShare

attribute), 247team (workfront.versions.unsupported.EndorsementShare

attribute), 253team (workfront.versions.unsupported.Issue attribute),

278team (workfront.versions.unsupported.Iteration attribute),

281team (workfront.versions.unsupported.MasterTask

attribute), 293team (workfront.versions.unsupported.NoteTag attribute),

301team (workfront.versions.unsupported.Project attribute),

332team (workfront.versions.unsupported.StepApprover at-

tribute), 358team (workfront.versions.unsupported.Task attribute),

370team (workfront.versions.unsupported.TeamMember at-

tribute), 373team (workfront.versions.unsupported.TeamMemberRole

582 Index

Page 587: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

attribute), 373team (workfront.versions.unsupported.Template at-

tribute), 378team (workfront.versions.unsupported.TemplateAssignment

attribute), 379team (workfront.versions.unsupported.TemplateTask at-

tribute), 385team (workfront.versions.unsupported.Work attribute),

428team (workfront.versions.v40.Approval attribute), 24team (workfront.versions.v40.Assignment attribute), 29team (workfront.versions.v40.Issue attribute), 64team (workfront.versions.v40.Iteration attribute), 66team (workfront.versions.v40.NoteTag attribute), 76team (workfront.versions.v40.StepApprover attribute),

105team (workfront.versions.v40.Task attribute), 115team (workfront.versions.v40.TeamMember attribute),

118team (workfront.versions.v40.TemplateAssignment at-

tribute), 122team (workfront.versions.v40.TemplateTask attribute),

126team (workfront.versions.v40.Work attribute), 152team_actions (workfront.versions.unsupported.MetaRecord

attribute), 295team_assignment (work-

front.versions.unsupported.Approval attribute),185

team_assignment (workfront.versions.unsupported.Issueattribute), 278

team_assignment (work-front.versions.unsupported.MasterTask at-tribute), 293

team_assignment (workfront.versions.unsupported.Taskattribute), 370

team_assignment (work-front.versions.unsupported.TemplateTaskattribute), 385

team_assignment (workfront.versions.unsupported.Workattribute), 428

team_assignment (workfront.versions.v40.Approval at-tribute), 24

team_assignment (workfront.versions.v40.Issue at-tribute), 64

team_assignment (workfront.versions.v40.Task attribute),115

team_assignment (workfront.versions.v40.TemplateTaskattribute), 126

team_assignment (workfront.versions.v40.Work at-tribute), 152

team_id (workfront.versions.unsupported.AnnouncementRecipientattribute), 167

team_id (workfront.versions.unsupported.Approval at-

tribute), 185team_id (workfront.versions.unsupported.Assignment at-

tribute), 192team_id (workfront.versions.unsupported.AwaitingApproval

attribute), 198team_id (workfront.versions.unsupported.DocumentShare

attribute), 247team_id (workfront.versions.unsupported.EndorsementShare

attribute), 253team_id (workfront.versions.unsupported.Issue attribute),

278team_id (workfront.versions.unsupported.Iteration

attribute), 281team_id (workfront.versions.unsupported.MasterTask at-

tribute), 293team_id (workfront.versions.unsupported.NoteTag

attribute), 301team_id (workfront.versions.unsupported.Project at-

tribute), 332team_id (workfront.versions.unsupported.RecentUpdate

attribute), 340team_id (workfront.versions.unsupported.StepApprover

attribute), 358team_id (workfront.versions.unsupported.Task attribute),

370team_id (workfront.versions.unsupported.TeamMember

attribute), 373team_id (workfront.versions.unsupported.TeamMemberRole

attribute), 373team_id (workfront.versions.unsupported.Template at-

tribute), 378team_id (workfront.versions.unsupported.TemplateAssignment

attribute), 379team_id (workfront.versions.unsupported.TemplateTask

attribute), 385team_id (workfront.versions.unsupported.Work at-

tribute), 428team_id (workfront.versions.v40.Approval attribute), 24team_id (workfront.versions.v40.Assignment attribute),

29team_id (workfront.versions.v40.Issue attribute), 65team_id (workfront.versions.v40.Iteration attribute), 66team_id (workfront.versions.v40.NoteTag attribute), 76team_id (workfront.versions.v40.StepApprover attribute),

105team_id (workfront.versions.v40.Task attribute), 115team_id (workfront.versions.v40.TeamMember attribute),

118team_id (workfront.versions.v40.TemplateAssignment

attribute), 122team_id (workfront.versions.v40.TemplateTask attribute),

126team_id (workfront.versions.v40.Work attribute), 152team_ids (workfront.versions.unsupported.ScheduledReport

Index 583

Page 588: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

attribute), 353team_member_roles (work-

front.versions.unsupported.Team attribute),372

team_members (workfront.versions.unsupported.Teamattribute), 372

team_members (workfront.versions.v40.Team attribute),117

team_request_count() (work-front.versions.unsupported.Work method),428

team_requests_count() (work-front.versions.unsupported.Work method),428

team_requests_count() (workfront.versions.v40.Workmethod), 152

team_story_board_statuses (work-front.versions.unsupported.Team attribute),372

team_story_board_statuses (work-front.versions.v40.Team attribute), 117

team_type (workfront.versions.unsupported.Team at-tribute), 372

team_users (workfront.versions.unsupported.Customerattribute), 227

team_users (workfront.versions.unsupported.LicenseOrderattribute), 290

team_users (workfront.versions.v40.Customer attribute),42

TeamMember (class in workfront.versions.unsupported),372

TeamMember (class in workfront.versions.v40), 117TeamMemberRole (class in work-

front.versions.unsupported), 373teams (workfront.versions.unsupported.ScheduledReport

attribute), 353teams (workfront.versions.unsupported.User attribute),

407teams (workfront.versions.v40.User attribute), 140Template (class in workfront.versions.unsupported), 373Template (class in workfront.versions.v40), 118template (workfront.versions.unsupported.AccessRulePreference

attribute), 160template (workfront.versions.unsupported.Approval at-

tribute), 185template (workfront.versions.unsupported.Document at-

tribute), 237template (workfront.versions.unsupported.DocumentFolder

attribute), 242template (workfront.versions.unsupported.DocumentRequest

attribute), 245template (workfront.versions.unsupported.ExchangeRate

attribute), 256template (workfront.versions.unsupported.Expense at-

tribute), 258template (workfront.versions.unsupported.JournalEntry

attribute), 284template (workfront.versions.unsupported.Note at-

tribute), 300template (workfront.versions.unsupported.NotificationRecord

attribute), 302template (workfront.versions.unsupported.ParameterValue

attribute), 306template (workfront.versions.unsupported.Project at-

tribute), 332template (workfront.versions.unsupported.QueueDef at-

tribute), 334template (workfront.versions.unsupported.Rate attribute),

337template (workfront.versions.unsupported.Risk attribute),

344template (workfront.versions.unsupported.RoutingRule

attribute), 346template (workfront.versions.unsupported.ScoreCard at-

tribute), 354template (workfront.versions.unsupported.ScoreCardAnswer

attribute), 355template (workfront.versions.unsupported.SharingSettings

attribute), 358template (workfront.versions.unsupported.TemplateAssignment

attribute), 379template (workfront.versions.unsupported.TemplateTask

attribute), 385template (workfront.versions.unsupported.TemplateUser

attribute), 386template (workfront.versions.unsupported.TemplateUserRole

attribute), 386template (workfront.versions.v40.Approval attribute), 24template (workfront.versions.v40.Document attribute), 46template (workfront.versions.v40.DocumentFolder

attribute), 48template (workfront.versions.v40.ExchangeRate at-

tribute), 50template (workfront.versions.v40.Expense attribute), 52template (workfront.versions.v40.JournalEntry attribute),

69template (workfront.versions.v40.Note attribute), 75template (workfront.versions.v40.Project attribute), 92template (workfront.versions.v40.QueueDef attribute), 94template (workfront.versions.v40.Risk attribute), 99template (workfront.versions.v40.RoutingRule attribute),

101template (workfront.versions.v40.ScoreCard attribute),

103template (workfront.versions.v40.ScoreCardAnswer at-

tribute), 104template (workfront.versions.v40.TemplateAssignment

attribute), 122

584 Index

Page 589: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

template (workfront.versions.v40.TemplateTask at-tribute), 126

template (workfront.versions.v40.TemplateUser at-tribute), 127

template (workfront.versions.v40.TemplateUserRole at-tribute), 127

template_id (workfront.versions.unsupported.AccessRulePreferenceattribute), 160

template_id (workfront.versions.unsupported.Approvalattribute), 186

template_id (workfront.versions.unsupported.Documentattribute), 237

template_id (workfront.versions.unsupported.DocumentFolderattribute), 242

template_id (workfront.versions.unsupported.DocumentRequestattribute), 245

template_id (workfront.versions.unsupported.ExchangeRateattribute), 256

template_id (workfront.versions.unsupported.Expense at-tribute), 258

template_id (workfront.versions.unsupported.JournalEntryattribute), 284

template_id (workfront.versions.unsupported.Noteattribute), 300

template_id (workfront.versions.unsupported.NotificationRecordattribute), 302

template_id (workfront.versions.unsupported.ParameterValueattribute), 306

template_id (workfront.versions.unsupported.Project at-tribute), 332

template_id (workfront.versions.unsupported.QueueDefattribute), 335

template_id (workfront.versions.unsupported.Rateattribute), 337

template_id (workfront.versions.unsupported.Riskattribute), 344

template_id (workfront.versions.unsupported.RoutingRuleattribute), 347

template_id (workfront.versions.unsupported.ScoreCardattribute), 355

template_id (workfront.versions.unsupported.ScoreCardAnswerattribute), 355

template_id (workfront.versions.unsupported.SharingSettingsattribute), 358

template_id (workfront.versions.unsupported.TemplateAssignmentattribute), 379

template_id (workfront.versions.unsupported.TemplateTaskattribute), 385

template_id (workfront.versions.unsupported.TemplateUserattribute), 386

template_id (workfront.versions.unsupported.TemplateUserRoleattribute), 386

template_id (workfront.versions.v40.Approval attribute),24

template_id (workfront.versions.v40.Document at-tribute), 46

template_id (workfront.versions.v40.DocumentFolder at-tribute), 48

template_id (workfront.versions.v40.ExchangeRate at-tribute), 50

template_id (workfront.versions.v40.Expense attribute),52

template_id (workfront.versions.v40.JournalEntry at-tribute), 69

template_id (workfront.versions.v40.Note attribute), 75template_id (workfront.versions.v40.Project attribute), 92template_id (workfront.versions.v40.QueueDef at-

tribute), 94template_id (workfront.versions.v40.Risk attribute), 99template_id (workfront.versions.v40.RoutingRule at-

tribute), 101template_id (workfront.versions.v40.ScoreCard at-

tribute), 103template_id (workfront.versions.v40.ScoreCardAnswer

attribute), 104template_id (workfront.versions.v40.TemplateAssignment

attribute), 122template_id (workfront.versions.v40.TemplateTask at-

tribute), 126template_id (workfront.versions.v40.TemplateUser at-

tribute), 127template_id (workfront.versions.v40.TemplateUserRole

attribute), 127template_obj_code (work-

front.versions.unsupported.EmailTemplateattribute), 251

template_task (workfront.versions.unsupported.Approvalattribute), 186

template_task (workfront.versions.unsupported.Documentattribute), 237

template_task (workfront.versions.unsupported.DocumentFolderattribute), 242

template_task (workfront.versions.unsupported.DocumentRequestattribute), 245

template_task (workfront.versions.unsupported.Expenseattribute), 258

template_task (workfront.versions.unsupported.Note at-tribute), 300

template_task (workfront.versions.unsupported.NotificationRecordattribute), 302

template_task (workfront.versions.unsupported.ParameterValueattribute), 306

template_task (workfront.versions.unsupported.RecurrenceRuleattribute), 341

template_task (workfront.versions.unsupported.Task at-tribute), 370

template_task (workfront.versions.unsupported.TemplateAssignmentattribute), 379

Index 585

Page 590: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

template_task (workfront.versions.unsupported.Work at-tribute), 428

template_task (workfront.versions.v40.Approval at-tribute), 24

template_task (workfront.versions.v40.Document at-tribute), 46

template_task (workfront.versions.v40.DocumentFolderattribute), 48

template_task (workfront.versions.v40.Expense at-tribute), 52

template_task (workfront.versions.v40.Note attribute), 75template_task (workfront.versions.v40.Task attribute),

115template_task (workfront.versions.v40.TemplateAssignment

attribute), 122template_task (workfront.versions.v40.Work attribute),

152template_task_id (work-

front.versions.unsupported.Approval attribute),186

template_task_id (work-front.versions.unsupported.Document at-tribute), 237

template_task_id (work-front.versions.unsupported.DocumentFolderattribute), 242

template_task_id (work-front.versions.unsupported.DocumentRequestattribute), 245

template_task_id (work-front.versions.unsupported.Expense attribute),258

template_task_id (workfront.versions.unsupported.Noteattribute), 300

template_task_id (work-front.versions.unsupported.NotificationRecordattribute), 302

template_task_id (work-front.versions.unsupported.ParameterValueattribute), 306

template_task_id (work-front.versions.unsupported.RecurrenceRuleattribute), 341

template_task_id (workfront.versions.unsupported.Taskattribute), 370

template_task_id (work-front.versions.unsupported.TemplateAssignmentattribute), 379

template_task_id (workfront.versions.unsupported.Workattribute), 428

template_task_id (workfront.versions.v40.Approval at-tribute), 24

template_task_id (workfront.versions.v40.Document at-tribute), 46

template_task_id (work-front.versions.v40.DocumentFolder attribute),48

template_task_id (workfront.versions.v40.Expenseattribute), 52

template_task_id (workfront.versions.v40.Note attribute),75

template_task_id (workfront.versions.v40.Task attribute),115

template_task_id (work-front.versions.v40.TemplateAssignmentattribute), 122

template_task_id (workfront.versions.v40.Work at-tribute), 152

template_tasks (workfront.versions.unsupported.Templateattribute), 378

template_tasks (workfront.versions.v40.Template at-tribute), 121

template_user_roles (work-front.versions.unsupported.Template attribute),378

template_user_roles (workfront.versions.v40.Templateattribute), 121

template_users (workfront.versions.unsupported.Templateattribute), 378

template_users (workfront.versions.v40.Template at-tribute), 121

TemplateAssignment (class in work-front.versions.unsupported), 378

TemplateAssignment (class in workfront.versions.v40),121

TemplatePredecessor (class in work-front.versions.unsupported), 380

TemplatePredecessor (class in workfront.versions.v40),122

TemplateTask (class in workfront.versions.unsupported),380

TemplateTask (class in workfront.versions.v40), 123TemplateUser (class in workfront.versions.unsupported),

386TemplateUser (class in workfront.versions.v40), 127TemplateUserRole (class in work-

front.versions.unsupported), 386TemplateUserRole (class in workfront.versions.v40), 127test_pop_account_settings() (work-

front.versions.unsupported.Email method),250

text (workfront.versions.unsupported.MessageArgattribute), 294

text (workfront.versions.v40.MessageArg attribute), 71text_val (workfront.versions.unsupported.ParameterValue

attribute), 306thread_date (workfront.versions.unsupported.Note

attribute), 300

586 Index

Page 591: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

thread_date (workfront.versions.v40.Note attribute), 75thread_id (workfront.versions.unsupported.Note at-

tribute), 300thread_id (workfront.versions.unsupported.RecentUpdate

attribute), 340thread_id (workfront.versions.unsupported.Update

attribute), 398thread_id (workfront.versions.v40.Note attribute), 75thread_id (workfront.versions.v40.Update attribute), 134thumbnail_url (workfront.versions.unsupported.ExternalDocument

attribute), 261thursday (workfront.versions.unsupported.Schedule at-

tribute), 351thursday (workfront.versions.v40.Schedule attribute), 102time_zone (workfront.versions.unsupported.Customer at-

tribute), 227time_zone (workfront.versions.unsupported.Schedule at-

tribute), 351time_zone (workfront.versions.unsupported.User at-

tribute), 407time_zone (workfront.versions.v40.Customer attribute),

42time_zone (workfront.versions.v40.Schedule attribute),

102time_zone (workfront.versions.v40.User attribute), 140timed_not_obj_code (work-

front.versions.unsupported.TimedNotificationattribute), 387

timed_notification (work-front.versions.unsupported.NotificationRecordattribute), 302

timed_notification_id (work-front.versions.unsupported.NotificationRecordattribute), 302

timed_notifications (work-front.versions.unsupported.Customer attribute),227

timed_notifications() (work-front.versions.unsupported.Issue method),278

timed_notifications() (work-front.versions.unsupported.Task method),370

timed_notifications() (work-front.versions.unsupported.TemplateTaskmethod), 385

TimedNotification (class in work-front.versions.unsupported), 386

timeline_calculation_status (work-front.versions.unsupported.CustomerTimelineCalcattribute), 229

timeline_exception_info (work-front.versions.unsupported.Approval attribute),186

timeline_exception_info (work-front.versions.unsupported.Project attribute),332

Timesheet (class in workfront.versions.unsupported), 387Timesheet (class in workfront.versions.v40), 127timesheet (workfront.versions.unsupported.AwaitingApproval

attribute), 198timesheet (workfront.versions.unsupported.Hour at-

tribute), 268timesheet (workfront.versions.unsupported.JournalEntry

attribute), 284timesheet (workfront.versions.unsupported.Note at-

tribute), 300timesheet (workfront.versions.unsupported.NotificationRecord

attribute), 302timesheet (workfront.versions.v40.Hour attribute), 57timesheet (workfront.versions.v40.JournalEntry at-

tribute), 69timesheet (workfront.versions.v40.Note attribute), 75timesheet_config_map (work-

front.versions.unsupported.Customer attribute),227

timesheet_config_map_id (work-front.versions.unsupported.Customer attribute),227

timesheet_config_map_id (work-front.versions.v40.Customer attribute), 42

timesheet_id (workfront.versions.unsupported.AwaitingApprovalattribute), 198

timesheet_id (workfront.versions.unsupported.Hour at-tribute), 268

timesheet_id (workfront.versions.unsupported.JournalEntryattribute), 284

timesheet_id (workfront.versions.unsupported.Note at-tribute), 300

timesheet_id (workfront.versions.unsupported.NotificationRecordattribute), 303

timesheet_id (workfront.versions.v40.Hour attribute), 57timesheet_id (workfront.versions.v40.JournalEntry at-

tribute), 69timesheet_id (workfront.versions.v40.Note attribute), 75timesheet_profile (work-

front.versions.unsupported.NotificationRecordattribute), 303

timesheet_profile (work-front.versions.unsupported.Timesheet at-tribute), 388

timesheet_profile (workfront.versions.unsupported.Userattribute), 407

timesheet_profile_id (work-front.versions.unsupported.NotificationRecordattribute), 303

timesheet_profile_id (work-front.versions.unsupported.Timesheet at-

Index 587

Page 592: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

tribute), 389timesheet_profile_id (work-

front.versions.unsupported.User attribute),407

timesheet_profile_id (workfront.versions.v40.Timesheetattribute), 129

timesheet_profile_id (workfront.versions.v40.Userattribute), 140

timesheet_templates (work-front.versions.unsupported.User attribute),407

TimesheetProfile (class in work-front.versions.unsupported), 389

timesheetprofiles (work-front.versions.unsupported.HourType at-tribute), 269

TimesheetTemplate (class in work-front.versions.unsupported), 390

timing (workfront.versions.unsupported.TimedNotificationattribute), 387

title (workfront.versions.unsupported.User attribute), 407title (workfront.versions.unsupported.WhatsNew at-

tribute), 417title (workfront.versions.v40.User attribute), 140tmp_user_id (workfront.versions.unsupported.TemplateUser

attribute), 386tmp_user_id (workfront.versions.v40.TemplateUser at-

tribute), 127to_end_of_form (work-

front.versions.unsupported.CategoryCascadeRuleattribute), 212

to_user (workfront.versions.unsupported.UserDelegationattribute), 409

to_user_id (workfront.versions.unsupported.UserDelegationattribute), 409

token_type (workfront.versions.unsupported.AccessTokenattribute), 163

tool_bar (workfront.versions.unsupported.PortalSectionattribute), 312

top_doc_obj_code (work-front.versions.unsupported.Document at-tribute), 237

top_doc_obj_code (workfront.versions.v40.Document at-tribute), 46

top_name (workfront.versions.unsupported.Update at-tribute), 398

top_name (workfront.versions.v40.Update attribute), 134top_note_obj_code (work-

front.versions.unsupported.Note attribute),300

top_note_obj_code (workfront.versions.v40.Note at-tribute), 75

top_obj_code (workfront.versions.unsupported.Endorsementattribute), 253

top_obj_code (workfront.versions.unsupported.Expenseattribute), 258

top_obj_code (workfront.versions.unsupported.JournalEntryattribute), 284

top_obj_code (workfront.versions.unsupported.Updateattribute), 398

top_obj_code (workfront.versions.v40.Expense at-tribute), 52

top_obj_code (workfront.versions.v40.JournalEntry at-tribute), 69

top_obj_code (workfront.versions.v40.Update attribute),134

top_obj_id (workfront.versions.unsupported.Documentattribute), 237

top_obj_id (workfront.versions.unsupported.Endorsementattribute), 253

top_obj_id (workfront.versions.unsupported.Expense at-tribute), 258

top_obj_id (workfront.versions.unsupported.JournalEntryattribute), 284

top_obj_id (workfront.versions.unsupported.Note at-tribute), 300

top_obj_id (workfront.versions.unsupported.Update at-tribute), 398

top_obj_id (workfront.versions.v40.Document attribute),46

top_obj_id (workfront.versions.v40.Expense attribute),52

top_obj_id (workfront.versions.v40.JournalEntry at-tribute), 69

top_obj_id (workfront.versions.v40.Note attribute), 75top_obj_id (workfront.versions.v40.Update attribute),

134top_reference_obj_code (work-

front.versions.unsupported.Expense attribute),258

top_reference_obj_code (work-front.versions.v40.Expense attribute), 52

top_reference_obj_id (work-front.versions.unsupported.Expense attribute),258

top_reference_obj_id (workfront.versions.v40.Expenseattribute), 52

top_reference_object_name (work-front.versions.unsupported.Endorsementattribute), 253

top_reference_object_name (work-front.versions.unsupported.JournalEntryattribute), 284

top_reference_object_name (work-front.versions.unsupported.Note attribute),301

top_reference_object_name (work-front.versions.v40.Note attribute), 75

588 Index

Page 593: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

total_actual_cost (work-front.versions.unsupported.FinancialDataattribute), 265

total_actual_cost (workfront.versions.v40.FinancialDataattribute), 54

total_actual_hours (work-front.versions.unsupported.UserResourceattribute), 415

total_actual_revenue (work-front.versions.unsupported.FinancialDataattribute), 265

total_actual_revenue (work-front.versions.v40.FinancialData attribute),54

total_available_hours (work-front.versions.unsupported.UserResourceattribute), 415

total_estimate (workfront.versions.unsupported.Iterationattribute), 281

total_estimate (workfront.versions.v40.Iteration at-tribute), 66

total_hours (workfront.versions.unsupported.Approvalattribute), 186

total_hours (workfront.versions.unsupported.Project at-tribute), 332

total_hours (workfront.versions.unsupported.Timesheetattribute), 389

total_hours (workfront.versions.v40.Approval attribute),24

total_hours (workfront.versions.v40.Project attribute), 92total_hours (workfront.versions.v40.Timesheet attribute),

129total_minutes (workfront.versions.unsupported.UserAvailability

attribute), 409total_number_of_hours (work-

front.versions.unsupported.UserResourceattribute), 415

total_op_task_count (work-front.versions.unsupported.Approval attribute),186

total_op_task_count (work-front.versions.unsupported.Project attribute),332

total_op_task_count (workfront.versions.v40.Approvalattribute), 24

total_op_task_count (workfront.versions.v40.Project at-tribute), 92

total_planned_cost (work-front.versions.unsupported.FinancialDataattribute), 265

total_planned_cost (work-front.versions.v40.FinancialData attribute),54

total_planned_revenue (work-

front.versions.unsupported.FinancialDataattribute), 265

total_planned_revenue (work-front.versions.v40.FinancialData attribute),54

total_projected_hours (work-front.versions.unsupported.UserResourceattribute), 415

total_task_count (work-front.versions.unsupported.Approval attribute),186

total_task_count (workfront.versions.unsupported.Projectattribute), 332

total_task_count (workfront.versions.v40.Approval at-tribute), 24

total_task_count (workfront.versions.v40.Project at-tribute), 92

total_variance_cost (work-front.versions.unsupported.FinancialDataattribute), 265

total_variance_cost (work-front.versions.v40.FinancialData attribute),54

total_variance_revenue (work-front.versions.unsupported.FinancialDataattribute), 265

total_variance_revenue (work-front.versions.v40.FinancialData attribute),55

tracking_mode (workfront.versions.unsupported.Approvalattribute), 186

tracking_mode (workfront.versions.unsupported.MasterTaskattribute), 293

tracking_mode (workfront.versions.unsupported.Task at-tribute), 370

tracking_mode (workfront.versions.unsupported.TemplateTaskattribute), 385

tracking_mode (workfront.versions.unsupported.Work at-tribute), 428

tracking_mode (workfront.versions.v40.Approval at-tribute), 24

tracking_mode (workfront.versions.v40.Task attribute),116

tracking_mode (workfront.versions.v40.TemplateTask at-tribute), 126

tracking_mode (workfront.versions.v40.Work attribute),152

trial (workfront.versions.unsupported.Customer at-tribute), 227

trial (workfront.versions.v40.Customer attribute), 42trusted_domain (workfront.versions.unsupported.SSOOption

attribute), 349tuesday (workfront.versions.unsupported.Schedule

attribute), 352

Index 589

Page 594: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

tuesday (workfront.versions.v40.Schedule attribute), 102type (workfront.versions.unsupported.Announcement at-

tribute), 165type (workfront.versions.unsupported.AnnouncementOptOut

attribute), 167type (workfront.versions.unsupported.MessageArg

attribute), 294type (workfront.versions.unsupported.ScoreCardAnswer

attribute), 355type (workfront.versions.v40.MessageArg attribute), 71type (workfront.versions.v40.ScoreCardAnswer at-

tribute), 104

Uui_code (workfront.versions.unsupported.AccountRep at-

tribute), 163ui_config_map (workfront.versions.unsupported.Customer

attribute), 227ui_config_map_id (work-

front.versions.unsupported.Customer attribute),227

ui_config_map_id (workfront.versions.v40.Customer at-tribute), 42

ui_filters (workfront.versions.unsupported.AppGlobal at-tribute), 169

ui_filters (workfront.versions.unsupported.Customer at-tribute), 227

ui_filters (workfront.versions.unsupported.LayoutTemplateattribute), 288

ui_filters (workfront.versions.unsupported.PortalProfileattribute), 308

ui_filters (workfront.versions.unsupported.User at-tribute), 407

ui_filters (workfront.versions.v40.Customer attribute), 42ui_filters (workfront.versions.v40.LayoutTemplate

attribute), 70ui_filters (workfront.versions.v40.User attribute), 140ui_group_bys (workfront.versions.unsupported.AppGlobal

attribute), 169ui_group_bys (workfront.versions.unsupported.Customer

attribute), 227ui_group_bys (workfront.versions.unsupported.LayoutTemplate

attribute), 288ui_group_bys (workfront.versions.unsupported.PortalProfile

attribute), 308ui_group_bys (workfront.versions.unsupported.User at-

tribute), 407ui_group_bys (workfront.versions.v40.Customer at-

tribute), 42ui_group_bys (workfront.versions.v40.LayoutTemplate

attribute), 70ui_group_bys (workfront.versions.v40.User attribute),

140

ui_obj_code (workfront.versions.unsupported.CallableExpressionattribute), 209

ui_obj_code (workfront.versions.unsupported.PortalSectionattribute), 312

ui_obj_code (workfront.versions.unsupported.ScheduledReportattribute), 353

ui_obj_code (workfront.versions.unsupported.UIFilter at-tribute), 392

ui_obj_code (workfront.versions.unsupported.UIGroupByattribute), 394

ui_obj_code (workfront.versions.unsupported.UIView at-tribute), 396

ui_obj_code (workfront.versions.v40.UIFilter attribute),130

ui_obj_code (workfront.versions.v40.UIGroupBy at-tribute), 132

ui_obj_code (workfront.versions.v40.UIView attribute),133

ui_obj_id (workfront.versions.unsupported.ScheduledReportattribute), 353

ui_views (workfront.versions.unsupported.AppGlobal at-tribute), 169

ui_views (workfront.versions.unsupported.Customer at-tribute), 227

ui_views (workfront.versions.unsupported.LayoutTemplateattribute), 288

ui_views (workfront.versions.unsupported.PortalProfileattribute), 308

ui_views (workfront.versions.unsupported.User at-tribute), 407

ui_views (workfront.versions.v40.Customer attribute), 42ui_views (workfront.versions.v40.LayoutTemplate

attribute), 70ui_views (workfront.versions.v40.User attribute), 140UIFilter (class in workfront.versions.unsupported), 391UIFilter (class in workfront.versions.v40), 129UIGroupBy (class in workfront.versions.unsupported),

392UIGroupBy (class in workfront.versions.v40), 130UIView (class in workfront.versions.unsupported), 394UIView (class in workfront.versions.v40), 132uiview_type (workfront.versions.unsupported.UIView at-

tribute), 396uiview_type (workfront.versions.v40.UIView attribute),

133un_link_users() (workfront.versions.unsupported.UIFilter

method), 392un_link_users() (workfront.versions.unsupported.UIGroupBy

method), 394un_link_users() (workfront.versions.unsupported.UIView

method), 396unaccept_work() (workfront.versions.unsupported.Issue

method), 278unaccept_work() (workfront.versions.unsupported.Task

590 Index

Page 595: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

method), 370unaccept_work() (workfront.versions.v40.Issue method),

65unaccept_work() (workfront.versions.v40.Task method),

116unacknowledge() (work-

front.versions.unsupported.Acknowledgementmethod), 164

unacknowledge() (work-front.versions.unsupported.UserNote method),412

unacknowledged_announcement_count() (work-front.versions.unsupported.UserNote method),412

unacknowledged_count() (work-front.versions.unsupported.UserNote method),412

unapprove() (workfront.versions.unsupported.Hourmethod), 268

unassign() (workfront.versions.unsupported.Issuemethod), 278

unassign() (workfront.versions.unsupported.Taskmethod), 370

unassign() (workfront.versions.v40.Issue method), 65unassign() (workfront.versions.v40.Task method), 116unassign_categories() (work-

front.versions.unsupported.Category method),211

unassign_category() (work-front.versions.unsupported.Category method),211

unassign_occurrences() (work-front.versions.unsupported.Task method),370

unassign_occurrences() (workfront.versions.v40.Taskmethod), 116

unlike() (workfront.versions.unsupported.Endorsementmethod), 253

unlike() (workfront.versions.unsupported.JournalEntrymethod), 284

unlike() (workfront.versions.unsupported.Note method),301

unlike() (workfront.versions.v40.JournalEntry method),69

unlike() (workfront.versions.v40.Note method), 76unlink_customer() (work-

front.versions.unsupported.PortalSectionmethod), 312

unlink_documents() (work-front.versions.unsupported.Document method),237

unlink_folders() (work-front.versions.unsupported.DocumentFoldermethod), 242

unmark_deleted() (work-front.versions.unsupported.UserNote method),413

unpin_timesheet_object() (work-front.versions.unsupported.Timesheet method),389

Update (class in workfront.versions.unsupported), 396Update (class in workfront.versions.v40), 133update (workfront.versions.unsupported.RecentUpdate

attribute), 340update_actions (workfront.versions.unsupported.Update

attribute), 398update_actions (workfront.versions.v40.Update at-

tribute), 134update_calculated_parameter_values() (work-

front.versions.unsupported.Category method),211

update_calculated_values (work-front.versions.unsupported.CategoryParameterattribute), 214

update_currency() (work-front.versions.unsupported.Customer method),227

update_customer_base() (work-front.versions.unsupported.Customer method),227

update_endorsement (work-front.versions.unsupported.Update attribute),398

update_favorite_name() (work-front.versions.unsupported.Favorite method),263

update_id (workfront.versions.unsupported.RecentUpdateattribute), 340

update_journal_entry (work-front.versions.unsupported.Update attribute),398

update_journal_entry (workfront.versions.v40.Update at-tribute), 134

update_last_viewed_object() (work-front.versions.unsupported.Recent method),338

update_next_survey_on_date() (work-front.versions.unsupported.User method),407

update_note (workfront.versions.unsupported.Update at-tribute), 398

update_note (workfront.versions.v40.Update attribute),134

update_obj (workfront.versions.unsupported.Update at-tribute), 398

update_obj (workfront.versions.v40.Update attribute),134

update_obj_code (work-

Index 591

Page 596: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

front.versions.unsupported.Update attribute),398

update_obj_code (workfront.versions.v40.Update at-tribute), 135

update_obj_id (workfront.versions.unsupported.Updateattribute), 398

update_obj_id (workfront.versions.v40.Update attribute),135

update_proofing_billing_plan() (work-front.versions.unsupported.Customer method),227

update_type (workfront.versions.unsupported.Approvalattribute), 186

update_type (workfront.versions.unsupported.Project at-tribute), 332

update_type (workfront.versions.unsupported.Templateattribute), 378

update_type (workfront.versions.unsupported.Update at-tribute), 398

update_type (workfront.versions.v40.Approval attribute),24

update_type (workfront.versions.v40.Project attribute),92

update_type (workfront.versions.v40.Update attribute),135

updates (workfront.versions.unsupported.Approvalattribute), 186

updates (workfront.versions.unsupported.Issue attribute),278

updates (workfront.versions.unsupported.Project at-tribute), 332

updates (workfront.versions.unsupported.Task attribute),370

updates (workfront.versions.unsupported.Team attribute),372

updates (workfront.versions.unsupported.Templateattribute), 378

updates (workfront.versions.unsupported.User attribute),407

updates (workfront.versions.unsupported.Work attribute),428

updates (workfront.versions.v40.Approval attribute), 24updates (workfront.versions.v40.Issue attribute), 65updates (workfront.versions.v40.Project attribute), 92updates (workfront.versions.v40.Task attribute), 116updates (workfront.versions.v40.Team attribute), 117updates (workfront.versions.v40.User attribute), 140updates (workfront.versions.v40.Work attribute), 152upgrade_build (workfront.versions.unsupported.AppInfo

attribute), 169upgrade_progress() (work-

front.versions.unsupported.Authenticationmethod), 195

upgrade_step (workfront.versions.unsupported.AppInfo

attribute), 169upload_attachments() (work-

front.versions.unsupported.AnnouncementAttachmentmethod), 166

upload_documents() (work-front.versions.unsupported.Document method),237

upload_saml2metadata() (work-front.versions.unsupported.SSOOptionmethod), 349

upload_ssocertificate() (work-front.versions.unsupported.SSOOptionmethod), 349

url (workfront.versions.unsupported.Approval attribute),186

url (workfront.versions.unsupported.ExternalSection at-tribute), 263

url (workfront.versions.unsupported.Issue attribute), 279url (workfront.versions.unsupported.Iteration attribute),

281url (workfront.versions.unsupported.MasterTask at-

tribute), 293url (workfront.versions.unsupported.Project attribute),

332url (workfront.versions.unsupported.Task attribute), 370url (workfront.versions.unsupported.Template attribute),

378url (workfront.versions.unsupported.TemplateTask

attribute), 385url (workfront.versions.unsupported.Work attribute), 428url (workfront.versions.v40.Approval attribute), 25url (workfront.versions.v40.Issue attribute), 65url (workfront.versions.v40.Iteration attribute), 66url (workfront.versions.v40.Project attribute), 92url (workfront.versions.v40.Task attribute), 116url (workfront.versions.v40.TemplateTask attribute), 126url (workfront.versions.v40.Work attribute), 152url_ (workfront.versions.unsupported.Approval attribute),

186url_ (workfront.versions.unsupported.Work attribute),

428url_ (workfront.versions.v40.Approval attribute), 25url_ (workfront.versions.v40.Work attribute), 152usage_report_attempts (work-

front.versions.unsupported.Customer attribute),227

usage_report_attempts (work-front.versions.v40.Customer attribute), 43

use_end_date (workfront.versions.unsupported.RecurrenceRuleattribute), 341

use_external_document_storage (work-front.versions.unsupported.Customer attribute),228

use_external_document_storage (work-

592 Index

Page 597: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

front.versions.v40.Customer attribute), 43User (class in workfront.versions.unsupported), 399User (class in workfront.versions.v40), 135user (workfront.versions.unsupported.AccessRulePreference

attribute), 160user (workfront.versions.unsupported.AccessToken at-

tribute), 163user (workfront.versions.unsupported.AnnouncementOptOut

attribute), 167user (workfront.versions.unsupported.AnnouncementRecipient

attribute), 167user (workfront.versions.unsupported.AuditLoginAsSession

attribute), 193user (workfront.versions.unsupported.AwaitingApproval

attribute), 198user (workfront.versions.unsupported.CalendarInfo at-

tribute), 207user (workfront.versions.unsupported.Document at-

tribute), 238user (workfront.versions.unsupported.DocumentFolder

attribute), 242user (workfront.versions.unsupported.DocumentRequest

attribute), 245user (workfront.versions.unsupported.DocumentShare at-

tribute), 247user (workfront.versions.unsupported.EndorsementShare

attribute), 254user (workfront.versions.unsupported.Favorite attribute),

263user (workfront.versions.unsupported.JournalEntry at-

tribute), 284user (workfront.versions.unsupported.MobileDevice at-

tribute), 296user (workfront.versions.unsupported.NonWorkDay at-

tribute), 297user (workfront.versions.unsupported.Note attribute), 301user (workfront.versions.unsupported.NoteTag attribute),

301user (workfront.versions.unsupported.ParameterValue at-

tribute), 306user (workfront.versions.unsupported.PortalTab at-

tribute), 314user (workfront.versions.unsupported.ProjectUser at-

tribute), 333user (workfront.versions.unsupported.ProjectUserRole

attribute), 333user (workfront.versions.unsupported.Recent attribute),

338user (workfront.versions.unsupported.ReservedTime at-

tribute), 342user (workfront.versions.unsupported.SandboxMigration

attribute), 350user (workfront.versions.unsupported.StepApprover at-

tribute), 359

user (workfront.versions.unsupported.TeamMember at-tribute), 373

user (workfront.versions.unsupported.TeamMemberRoleattribute), 373

user (workfront.versions.unsupported.TemplateUser at-tribute), 386

user (workfront.versions.unsupported.TemplateUserRoleattribute), 386

user (workfront.versions.unsupported.Timesheet at-tribute), 389

user (workfront.versions.unsupported.TimesheetTemplateattribute), 391

user (workfront.versions.unsupported.UserActivity at-tribute), 408

user (workfront.versions.unsupported.UserAvailabilityattribute), 409

user (workfront.versions.unsupported.UserGroupsattribute), 410

user (workfront.versions.unsupported.UserNote at-tribute), 413

user (workfront.versions.unsupported.UserObjectPref at-tribute), 413

user (workfront.versions.unsupported.UserPrefValue at-tribute), 414

user (workfront.versions.unsupported.UserResource at-tribute), 415

user (workfront.versions.unsupported.WatchListEntry at-tribute), 416

user (workfront.versions.unsupported.WorkItem at-tribute), 430

user (workfront.versions.v40.Document attribute), 46user (workfront.versions.v40.DocumentFolder attribute),

48user (workfront.versions.v40.Favorite attribute), 53user (workfront.versions.v40.JournalEntry attribute), 69user (workfront.versions.v40.NonWorkDay attribute), 72user (workfront.versions.v40.Note attribute), 76user (workfront.versions.v40.NoteTag attribute), 76user (workfront.versions.v40.ProjectUser attribute), 93user (workfront.versions.v40.ProjectUserRole attribute),

93user (workfront.versions.v40.ReservedTime attribute), 96user (workfront.versions.v40.StepApprover attribute),

105user (workfront.versions.v40.TeamMember attribute),

118user (workfront.versions.v40.TemplateUser attribute),

127user (workfront.versions.v40.TemplateUserRole at-

tribute), 127user (workfront.versions.v40.Timesheet attribute), 129user (workfront.versions.v40.UserActivity attribute), 141user (workfront.versions.v40.UserNote attribute), 142user (workfront.versions.v40.UserPrefValue attribute),

Index 593

Page 598: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

142user (workfront.versions.v40.WorkItem attribute), 154user_activities (workfront.versions.unsupported.User at-

tribute), 407user_activities (workfront.versions.v40.User attribute),

140user_display (workfront.versions.unsupported.AuditLoginAsSession

attribute), 193user_first_name (work-

front.versions.unsupported.AnnouncementOptOutattribute), 167

user_groups (workfront.versions.unsupported.Group at-tribute), 266

user_groups (workfront.versions.unsupported.Userattribute), 407

user_guid (workfront.versions.unsupported.CustomerFeedbackattribute), 228

user_home_team (work-front.versions.unsupported.UserResourceattribute), 415

user_id (workfront.versions.unsupported.AccessRulePreferenceattribute), 160

user_id (workfront.versions.unsupported.AccessTokenattribute), 163

user_id (workfront.versions.unsupported.AnnouncementOptOutattribute), 167

user_id (workfront.versions.unsupported.AnnouncementRecipientattribute), 168

user_id (workfront.versions.unsupported.AuditLoginAsSessionattribute), 193

user_id (workfront.versions.unsupported.AwaitingApprovalattribute), 198

user_id (workfront.versions.unsupported.CalendarInfoattribute), 207

user_id (workfront.versions.unsupported.Document at-tribute), 238

user_id (workfront.versions.unsupported.DocumentFolderattribute), 242

user_id (workfront.versions.unsupported.DocumentRequestattribute), 245

user_id (workfront.versions.unsupported.DocumentShareattribute), 247

user_id (workfront.versions.unsupported.DocumentTaskStatusattribute), 247

user_id (workfront.versions.unsupported.EndorsementShareattribute), 254

user_id (workfront.versions.unsupported.Favorite at-tribute), 263

user_id (workfront.versions.unsupported.JournalEntry at-tribute), 284

user_id (workfront.versions.unsupported.NonWorkDayattribute), 297

user_id (workfront.versions.unsupported.Note attribute),301

user_id (workfront.versions.unsupported.NoteTag at-tribute), 301

user_id (workfront.versions.unsupported.ParameterValueattribute), 307

user_id (workfront.versions.unsupported.PortalTab at-tribute), 314

user_id (workfront.versions.unsupported.ProjectUser at-tribute), 333

user_id (workfront.versions.unsupported.ProjectUserRoleattribute), 333

user_id (workfront.versions.unsupported.Recent at-tribute), 338

user_id (workfront.versions.unsupported.RecentUpdateattribute), 340

user_id (workfront.versions.unsupported.ReservedTimeattribute), 342

user_id (workfront.versions.unsupported.SandboxMigrationattribute), 350

user_id (workfront.versions.unsupported.SSOUsernameattribute), 349

user_id (workfront.versions.unsupported.StepApproverattribute), 359

user_id (workfront.versions.unsupported.TeamMemberattribute), 373

user_id (workfront.versions.unsupported.TeamMemberRoleattribute), 373

user_id (workfront.versions.unsupported.TemplateUserattribute), 386

user_id (workfront.versions.unsupported.TemplateUserRoleattribute), 386

user_id (workfront.versions.unsupported.Timesheet at-tribute), 389

user_id (workfront.versions.unsupported.TimesheetTemplateattribute), 391

user_id (workfront.versions.unsupported.UserActivity at-tribute), 408

user_id (workfront.versions.unsupported.UserAvailabilityattribute), 409

user_id (workfront.versions.unsupported.UserGroups at-tribute), 410

user_id (workfront.versions.unsupported.UserNoteattribute), 413

user_id (workfront.versions.unsupported.UserObjectPrefattribute), 413

user_id (workfront.versions.unsupported.UserPrefValueattribute), 414

user_id (workfront.versions.unsupported.UsersSectionsattribute), 416

user_id (workfront.versions.unsupported.WatchListEntryattribute), 416

user_id (workfront.versions.unsupported.WorkItem at-tribute), 430

user_id (workfront.versions.v40.Document attribute), 46user_id (workfront.versions.v40.DocumentFolder at-

594 Index

Page 599: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

tribute), 48user_id (workfront.versions.v40.Favorite attribute), 53user_id (workfront.versions.v40.JournalEntry attribute),

69user_id (workfront.versions.v40.NonWorkDay attribute),

72user_id (workfront.versions.v40.Note attribute), 76user_id (workfront.versions.v40.NoteTag attribute), 76user_id (workfront.versions.v40.ProjectUser attribute),

93user_id (workfront.versions.v40.ProjectUserRole at-

tribute), 93user_id (workfront.versions.v40.ReservedTime attribute),

97user_id (workfront.versions.v40.StepApprover attribute),

105user_id (workfront.versions.v40.TeamMember attribute),

118user_id (workfront.versions.v40.TemplateUser attribute),

127user_id (workfront.versions.v40.TemplateUserRole at-

tribute), 127user_id (workfront.versions.v40.Timesheet attribute), 129user_id (workfront.versions.v40.UserActivity attribute),

141user_id (workfront.versions.v40.UserNote attribute), 142user_id (workfront.versions.v40.UserPrefValue attribute),

142user_id (workfront.versions.v40.WorkItem attribute), 154user_ids (workfront.versions.unsupported.ScheduledReport

attribute), 353user_invite_config_map (work-

front.versions.unsupported.Customer attribute),228

user_invite_config_map_id (work-front.versions.unsupported.Customer attribute),228

user_invite_config_map_id (work-front.versions.v40.Customer attribute), 43

user_last_name (workfront.versions.unsupported.AnnouncementOptOutattribute), 167

user_notable_id (work-front.versions.unsupported.UserNote attribute),413

user_notable_obj_code (work-front.versions.unsupported.UserNote attribute),413

user_notes (workfront.versions.v40.User attribute), 140user_pref_values (workfront.versions.unsupported.User

attribute), 407user_pref_values (workfront.versions.v40.User attribute),

140user_primary_role (work-

front.versions.unsupported.UserResource

attribute), 415UserActivity (class in workfront.versions.unsupported),

408UserActivity (class in workfront.versions.v40), 140UserAvailability (class in work-

front.versions.unsupported), 408UserDelegation (class in work-

front.versions.unsupported), 409UserGroups (class in workfront.versions.unsupported),

409username (workfront.versions.unsupported.AccountRep

attribute), 163username (workfront.versions.unsupported.User at-

tribute), 407username (workfront.versions.v40.User attribute), 140UserNote (class in workfront.versions.unsupported), 410UserNote (class in workfront.versions.v40), 141UserObjectPref (class in work-

front.versions.unsupported), 413UserPrefValue (class in workfront.versions.unsupported),

414UserPrefValue (class in workfront.versions.v40), 142UserResource (class in workfront.versions.unsupported),

414users (workfront.versions.unsupported.HourType at-

tribute), 269users (workfront.versions.unsupported.ResourcePool at-

tribute), 343users (workfront.versions.unsupported.ScheduledReport

attribute), 353users (workfront.versions.unsupported.Team attribute),

372users (workfront.versions.unsupported.UIFilter attribute),

392users (workfront.versions.v40.HourType attribute), 58users (workfront.versions.v40.ResourcePool attribute), 98users (workfront.versions.v40.Team attribute), 117users (workfront.versions.v40.UIFilter attribute), 130UsersSections (class in workfront.versions.unsupported),

415

Vvalidate_callable_expression() (work-

front.versions.unsupported.CallableExpressionmethod), 209

validate_custom_expression() (work-front.versions.unsupported.Category method),211

validate_re_captcha() (work-front.versions.unsupported.User method),407

value (workfront.versions.unsupported.AccessToken at-tribute), 163

Index 595

Page 600: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

value (workfront.versions.unsupported.CategoryCascadeRuleMatchattribute), 213

value (workfront.versions.unsupported.CustomEnum at-tribute), 217

value (workfront.versions.unsupported.CustomerPreferencesattribute), 229

value (workfront.versions.unsupported.ParameterOptionattribute), 305

value (workfront.versions.unsupported.Preference at-tribute), 317

value (workfront.versions.unsupported.ScoreCardOptionattribute), 356

value (workfront.versions.unsupported.UserActivity at-tribute), 408

value (workfront.versions.unsupported.UserObjectPrefattribute), 413

value (workfront.versions.unsupported.UserPrefValue at-tribute), 414

value (workfront.versions.v40.CustomEnum attribute),38

value (workfront.versions.v40.CustomerPreferences at-tribute), 43

value (workfront.versions.v40.ParameterOption at-tribute), 78

value (workfront.versions.v40.ScoreCardOption at-tribute), 104

value (workfront.versions.v40.UserActivity attribute),141

value (workfront.versions.v40.UserPrefValue attribute),142

value_as_int (workfront.versions.unsupported.CustomEnumattribute), 217

value_as_int (workfront.versions.v40.CustomEnum at-tribute), 38

value_as_string (workfront.versions.unsupported.CustomEnumattribute), 217

value_as_string (workfront.versions.v40.CustomEnumattribute), 38

variance_expense_cost (work-front.versions.unsupported.FinancialDataattribute), 265

variance_expense_cost (work-front.versions.v40.FinancialData attribute),55

variance_labor_cost (work-front.versions.unsupported.FinancialDataattribute), 265

variance_labor_cost (work-front.versions.v40.FinancialData attribute),55

variance_labor_cost_hours (work-front.versions.unsupported.FinancialDataattribute), 265

variance_labor_cost_hours (work-

front.versions.v40.FinancialData attribute),55

variance_labor_revenue (work-front.versions.unsupported.FinancialDataattribute), 265

variance_labor_revenue (work-front.versions.v40.FinancialData attribute),55

version (workfront.versions.unsupported.Approvalattribute), 186

version (workfront.versions.unsupported.DocumentVersionattribute), 249

version (workfront.versions.unsupported.Issue attribute),279

version (workfront.versions.unsupported.Project at-tribute), 332

version (workfront.versions.unsupported.Task attribute),370

version (workfront.versions.unsupported.Templateattribute), 378

version (workfront.versions.unsupported.Work attribute),428

version (workfront.versions.v40.Approval attribute), 25version (workfront.versions.v40.DocumentVersion

attribute), 49version (workfront.versions.v40.Project attribute), 92version (workfront.versions.v40.Template attribute), 121versions (workfront.versions.unsupported.Document at-

tribute), 238versions (workfront.versions.v40.Document attribute), 46view (workfront.versions.unsupported.ExternalSection

attribute), 263view (workfront.versions.unsupported.PortalSection at-

tribute), 312view_control (workfront.versions.unsupported.PortalSection

attribute), 312view_id (workfront.versions.unsupported.ExternalSection

attribute), 263view_id (workfront.versions.unsupported.PortalSection

attribute), 312view_security_level (work-

front.versions.unsupported.CategoryParameterattribute), 214

view_security_level (work-front.versions.v40.CategoryParameter at-tribute), 36

virus_scan (workfront.versions.unsupported.DocumentVersionattribute), 249

virus_scan_timestamp (work-front.versions.unsupported.DocumentVersionattribute), 249

visible_op_task_fields (work-front.versions.unsupported.QueueDef at-tribute), 335

596 Index

Page 601: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

visible_op_task_fields (work-front.versions.v40.QueueDef attribute), 94

Wwatch_list (workfront.versions.unsupported.User at-

tribute), 407watchable_obj_code (work-

front.versions.unsupported.WatchListEntryattribute), 416

watchable_obj_id (work-front.versions.unsupported.WatchListEntryattribute), 416

WatchListEntry (class in work-front.versions.unsupported), 416

wbs (workfront.versions.unsupported.Approval attribute),186

wbs (workfront.versions.unsupported.Task attribute), 370wbs (workfront.versions.unsupported.Work attribute),

428wbs (workfront.versions.v40.Approval attribute), 25wbs (workfront.versions.v40.Task attribute), 116wbs (workfront.versions.v40.Work attribute), 152web_davprofile (workfront.versions.unsupported.User at-

tribute), 407web_davprofile (workfront.versions.v40.User attribute),

140web_hook_expiration_date (work-

front.versions.unsupported.DocumentProviderattribute), 243

wednesday (workfront.versions.unsupported.Schedule at-tribute), 352

wednesday (workfront.versions.v40.Schedule attribute),102

weight (workfront.versions.unsupported.ScoreCardQuestionattribute), 356

weight (workfront.versions.v40.ScoreCardQuestion at-tribute), 105

welcome_email_addresses (work-front.versions.v40.Customer attribute), 43

whats_new_types (work-front.versions.unsupported.WhatsNew at-tribute), 417

WhatsNew (class in workfront.versions.unsupported),416

who_accessed_user() (work-front.versions.unsupported.AuditLoginAsSessionmethod), 194

width (workfront.versions.unsupported.PortalSection at-tribute), 312

wild_card (workfront.versions.unsupported.StepApproverattribute), 359

wild_card (workfront.versions.v40.StepApprover at-tribute), 106

wildcard_user (workfront.versions.unsupported.ApproverStatusattribute), 191

wildcard_user (workfront.versions.v40.ApproverStatusattribute), 28

wildcard_user_id (work-front.versions.unsupported.ApproverStatusattribute), 191

wildcard_user_id (work-front.versions.v40.ApproverStatus attribute),28

window (workfront.versions.unsupported.CustomMenuattribute), 218

Work (class in workfront.versions.unsupported), 417Work (class in workfront.versions.v40), 142work (workfront.versions.unsupported.Approval at-

tribute), 186work (workfront.versions.unsupported.Assignment at-

tribute), 192work (workfront.versions.unsupported.Task attribute),

370work (workfront.versions.unsupported.TemplateAssignment

attribute), 379work (workfront.versions.unsupported.TemplateTask at-

tribute), 385work (workfront.versions.unsupported.Work attribute),

428work (workfront.versions.v40.Approval attribute), 25work (workfront.versions.v40.Assignment attribute), 29work (workfront.versions.v40.Task attribute), 116work (workfront.versions.v40.TemplateTask attribute),

127work (workfront.versions.v40.Work attribute), 152work_item (workfront.versions.unsupported.Approval at-

tribute), 186work_item (workfront.versions.unsupported.Assignment

attribute), 192work_item (workfront.versions.unsupported.Issue at-

tribute), 279work_item (workfront.versions.unsupported.Task at-

tribute), 370work_item (workfront.versions.unsupported.Work

attribute), 428work_item (workfront.versions.v40.Approval attribute),

25work_item (workfront.versions.v40.Assignment at-

tribute), 29work_item (workfront.versions.v40.Issue attribute), 65work_item (workfront.versions.v40.Task attribute), 116work_item (workfront.versions.v40.Work attribute), 152work_items (workfront.versions.unsupported.User

attribute), 408work_items (workfront.versions.v40.User attribute), 140work_required (workfront.versions.unsupported.Approval

attribute), 186

Index 597

Page 602: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

work_required (workfront.versions.unsupported.Assignmentattribute), 192

work_required (workfront.versions.unsupported.Baselineattribute), 201

work_required (workfront.versions.unsupported.BaselineTaskattribute), 203

work_required (workfront.versions.unsupported.Issue at-tribute), 279

work_required (workfront.versions.unsupported.MasterTaskattribute), 293

work_required (workfront.versions.unsupported.Projectattribute), 332

work_required (workfront.versions.unsupported.Task at-tribute), 370

work_required (workfront.versions.unsupported.Templateattribute), 378

work_required (workfront.versions.unsupported.TemplateAssignmentattribute), 380

work_required (workfront.versions.unsupported.TemplateTaskattribute), 385

work_required (workfront.versions.unsupported.Work at-tribute), 428

work_required (workfront.versions.v40.Approval at-tribute), 25

work_required (workfront.versions.v40.Assignment at-tribute), 29

work_required (workfront.versions.v40.Baseline at-tribute), 32

work_required (workfront.versions.v40.BaselineTask at-tribute), 33

work_required (workfront.versions.v40.Issue attribute),65

work_required (workfront.versions.v40.Project attribute),92

work_required (workfront.versions.v40.Task attribute),116

work_required (workfront.versions.v40.Template at-tribute), 121

work_required (workfront.versions.v40.TemplateAssignmentattribute), 122

work_required (workfront.versions.v40.TemplateTask at-tribute), 127

work_required (workfront.versions.v40.Work attribute),152

work_required_expression (work-front.versions.unsupported.Approval attribute),186

work_required_expression (work-front.versions.unsupported.Issue attribute),279

work_required_expression (work-front.versions.unsupported.Project attribute),332

work_required_expression (work-

front.versions.unsupported.Task attribute),371

work_required_expression (work-front.versions.unsupported.TemplateTaskattribute), 385

work_required_expression (work-front.versions.unsupported.Work attribute),428

work_required_expression (work-front.versions.v40.Approval attribute), 25

work_required_expression (workfront.versions.v40.Issueattribute), 65

work_required_expression (work-front.versions.v40.Project attribute), 92

work_required_expression (workfront.versions.v40.Taskattribute), 116

work_required_expression (workfront.versions.v40.Workattribute), 152

work_unit (workfront.versions.unsupported.Approval at-tribute), 186

work_unit (workfront.versions.unsupported.Assignmentattribute), 192

work_unit (workfront.versions.unsupported.Task at-tribute), 371

work_unit (workfront.versions.unsupported.TemplateAssignmentattribute), 380

work_unit (workfront.versions.unsupported.TemplateTaskattribute), 386

work_unit (workfront.versions.unsupported.Work at-tribute), 428

work_unit (workfront.versions.v40.Approval attribute),25

work_unit (workfront.versions.v40.Assignment at-tribute), 29

work_unit (workfront.versions.v40.Task attribute), 116work_unit (workfront.versions.v40.TemplateAssignment

attribute), 122work_unit (workfront.versions.v40.TemplateTask at-

tribute), 127work_unit (workfront.versions.v40.Work attribute), 152workfront.meta (module), 8workfront.session (module), 8workfront.versions.unsupported (module), 154workfront.versions.v40 (module), 9WorkfrontAPIError, 8working_days (workfront.versions.unsupported.UserResource

attribute), 415WorkItem (class in workfront.versions.unsupported), 428WorkItem (class in workfront.versions.v40), 152

Zzip_announcement_attachments() (work-

front.versions.unsupported.Announcementmethod), 165

598 Index

Page 603: python-workfront Documentation

python-workfront Documentation, Release 0.7.0

zip_document_versions() (work-front.versions.unsupported.Document method),238

zip_documents() (work-front.versions.unsupported.Document method),238

zip_documents_versions() (work-front.versions.unsupported.Document method),238

Index 599