I'm trying to use the row attribute created_by accessing it with the Python SDK and it keeps throwing an error. I'm not sure if I'm missing something.
Every time I try to use it I get the error:
File "C:\Python27\lib\site-packages\smartsheet\models\row.py", line 166, in __getattr__ raise AttributeError(key)
AttributeError: created_by
It also doesn't return anything when I run created_at, but at least it doesn't throw an error.
Anyone else have this problem, or at least can point me to what I'm doing wrong?
It happens ever time I call it. Here is a simple example
smartsheet = smartsheet.Smartsheet(SMARTSHEET_ACCESS_TOKEN)
sheet = smartsheet.Sheets.get_sheet(IT_TRACKER_ID)
rows = sheet.rows
columns = sheet.columns
print rows[1].created_by