When I attempt to extract the links out from a cell, I get "null" for cells that do not have links and something like this for the ones that do:
{"sheetId": null, "rowId": null, "columnId": null, "sheetName": null, "status": null}
This is the same regardless of if the cell links out to a single destination or multiple ones.
I retrieve a row and then run through each cell in the row.
The entire cell's JSON looks like this (with column ID masked)
{"columnId": XXXXXX, "strict": true, "formula": null, "displayValue": "Yellow", "conditionalFormat": null, "linksOutToCells": {"sheetId": null, "rowId": null, "columnId": null, "sheetName": null, "status": null}, "value": "Yellow", "columnType": null, "linkInFromCell": null, "format": null, "hyperlink": null}
Is there another way to retrieve the outgoing link information?
I'm using Python and SDK 2.0.10
Craig
linksOutToCells should be deserialized as a list. This change will be made in a soon to be released pip. If you need to pick this up before the updated pip, here is a link to the github commit: