How can all of the fields be displayed for 'Project' using the workfront-api
in Python? The examples below return the default fields, but fields=*
and fields=All
return syntax errors.
Examples using the Workfront
examples in api.py
and test.py
that work:
results = client.search(ObjCode.PROJECT,{'groupID':user.homeGroupID})
results = client.search(ObjCode.PROJECT,{'groupID':user.homeGroupID},fields=None)