Viewing sign offs in the Reporting API
The Signoff history for a record can usually be seen in the properties panel for that record, for example the Completion and Approval of an Audit:
From the record’s perspective (Audit in this case), it is possible to view the current status just by looking at the field signoffstate.name, but it is also possible to look at the series of SignOffs (including time and person) by linking through to the completion/approval and createdby, e.g.:
https://server.domain.com/PentanaPRD/API/query/audit? select=completion.createdtime,completion.createdby.name,approval.createdtime,approval.createdby.name&where=name%20like%20"My%20Test%20Audit"
Returns:
[{'id': 40, 'completion': {'id': 680, 'createdtime': '9/5/2022 12:24:19 PM', 'createdby': {'id': 12, 'name': 'Stephen Jupp'}}, 'approval': {'id': 681, 'createdtime': '9/5/2022 12:45:00 PM', 'createdby': {'id': 12, 'name': 'Stephen Jupp'}}}]